diff --git a/Content.Client/Alerts/ClientAlertsSystem.cs b/Content.Client/Alerts/ClientAlertsSystem.cs index 359c8957f9..525ef1f018 100644 --- a/Content.Client/Alerts/ClientAlertsSystem.cs +++ b/Content.Client/Alerts/ClientAlertsSystem.cs @@ -93,6 +93,6 @@ public sealed class ClientAlertsSystem : AlertsSystem public void AlertClicked(ProtoId alertType) { - RaiseNetworkEvent(new ClickAlertEvent(alertType)); + RaisePredictiveEvent(new ClickAlertEvent(alertType)); } } diff --git a/Content.Client/Atmos/EntitySystems/GasMinerSystem.cs b/Content.Client/Atmos/EntitySystems/GasMinerSystem.cs new file mode 100644 index 0000000000..aec138eed8 --- /dev/null +++ b/Content.Client/Atmos/EntitySystems/GasMinerSystem.cs @@ -0,0 +1,10 @@ +using Content.Shared.Atmos.EntitySystems; +using JetBrains.Annotations; + +namespace Content.Client.Atmos.EntitySystems; + +[UsedImplicitly] +public sealed class GasMinerSystem : SharedGasMinerSystem +{ + +} diff --git a/Content.Client/Chat/UI/SpeechBubble.cs b/Content.Client/Chat/UI/SpeechBubble.cs index 68c937a788..adb61d10e6 100644 --- a/Content.Client/Chat/UI/SpeechBubble.cs +++ b/Content.Client/Chat/UI/SpeechBubble.cs @@ -16,6 +16,7 @@ namespace Content.Client.Chat.UI [Dependency] private readonly IEyeManager _eyeManager = default!; [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] protected readonly IConfigurationManager ConfigManager = default!; + private readonly SharedTransformSystem _transformSystem; public enum SpeechType : byte { @@ -83,6 +84,7 @@ namespace Content.Client.Chat.UI { IoCManager.InjectDependencies(this); _senderEntity = senderEntity; + _transformSystem = _entityManager.System(); // Use text clipping so new messages don't overlap old ones being pushed up. RectClipContent = true; @@ -140,7 +142,7 @@ namespace Content.Client.Chat.UI } var offset = (-_eyeManager.CurrentEye.Rotation).ToWorldVec() * -EntityVerticalOffset; - var worldPos = xform.WorldPosition + offset; + var worldPos = _transformSystem.GetWorldPosition(xform) + offset; var lowerCenter = _eyeManager.WorldToScreen(worldPos) / UIScale; var screenPos = lowerCenter - new Vector2(ContentSize.X / 2, ContentSize.Y + _verticalOffsetAchieved); diff --git a/Content.Client/Commands/MappingClientSideSetupCommand.cs b/Content.Client/Commands/MappingClientSideSetupCommand.cs index eb2d13c954..3255e85e18 100644 --- a/Content.Client/Commands/MappingClientSideSetupCommand.cs +++ b/Content.Client/Commands/MappingClientSideSetupCommand.cs @@ -1,3 +1,4 @@ +using Content.Client.Actions; using Content.Client.Mapping; using Content.Client.Markers; using JetBrains.Annotations; @@ -25,7 +26,7 @@ internal sealed class MappingClientSideSetupCommand : LocalizedCommands _entitySystemManager.GetEntitySystem().MarkersVisible = true; _lightManager.Enabled = false; shell.ExecuteCommand("showsubfloorforever"); - _stateManager.RequestStateChange(); + _entitySystemManager.GetEntitySystem().LoadActionAssignments("/mapping_actions.yml", false); } } } diff --git a/Content.Client/Explosion/ExplosionOverlay.cs b/Content.Client/Explosion/ExplosionOverlay.cs index 653f63e0f9..a005d0317b 100644 --- a/Content.Client/Explosion/ExplosionOverlay.cs +++ b/Content.Client/Explosion/ExplosionOverlay.cs @@ -16,6 +16,7 @@ public sealed class ExplosionOverlay : Overlay [Dependency] private readonly IRobustRandom _robustRandom = default!; [Dependency] private readonly IEntityManager _entMan = default!; [Dependency] private readonly IPrototypeManager _proto = default!; + private readonly SharedTransformSystem _transformSystem; private SharedAppearanceSystem _appearance; public override OverlaySpace Space => OverlaySpace.WorldSpaceBelowFOV; @@ -26,6 +27,7 @@ public sealed class ExplosionOverlay : Overlay { IoCManager.InjectDependencies(this); _shader = _proto.Index("unshaded").Instance(); + _transformSystem = _entMan.System(); _appearance = appearanceSystem; } @@ -68,7 +70,7 @@ public sealed class ExplosionOverlay : Overlay continue; var xform = xforms.GetComponent(gridId); - var (_, _, worldMatrix, invWorldMatrix) = xform.GetWorldPositionRotationMatrixWithInv(xforms); + var (_, _, worldMatrix, invWorldMatrix) = _transformSystem.GetWorldPositionRotationMatrixWithInv(xform, xforms); gridBounds = invWorldMatrix.TransformBox(worldBounds).Enlarged(grid.TileSize * 2); drawHandle.SetTransform(worldMatrix); diff --git a/Content.Client/Fluids/PuddleOverlay.cs b/Content.Client/Fluids/PuddleOverlay.cs index a8c1d35510..caa5a92580 100644 --- a/Content.Client/Fluids/PuddleOverlay.cs +++ b/Content.Client/Fluids/PuddleOverlay.cs @@ -14,6 +14,7 @@ public sealed class PuddleOverlay : Overlay [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly IEntitySystemManager _entitySystemManager = default!; private readonly PuddleDebugOverlaySystem _debugOverlaySystem; + private readonly SharedTransformSystem _transformSystem; private readonly Color _heavyPuddle = new(0, 255, 255, 50); private readonly Color _mediumPuddle = new(0, 150, 255, 50); @@ -29,6 +30,7 @@ public sealed class PuddleOverlay : Overlay _debugOverlaySystem = _entitySystemManager.GetEntitySystem(); var cache = IoCManager.Resolve(); _font = new VectorFont(cache.GetResource("/Fonts/NotoSans/NotoSans-Regular.ttf"), 8); + _transformSystem = _entityManager.System(); } protected override void Draw(in OverlayDrawArgs args) @@ -56,7 +58,7 @@ public sealed class PuddleOverlay : Overlay continue; var gridXform = xformQuery.GetComponent(gridId); - var (_, _, worldMatrix, invWorldMatrix) = gridXform.GetWorldPositionRotationMatrixWithInv(xformQuery); + var (_, _, worldMatrix, invWorldMatrix) = _transformSystem.GetWorldPositionRotationMatrixWithInv(gridXform, xformQuery); gridBounds = invWorldMatrix.TransformBox(args.WorldBounds).Enlarged(mapGrid.TileSize * 2); drawHandle.SetTransform(worldMatrix); @@ -89,7 +91,7 @@ public sealed class PuddleOverlay : Overlay continue; var gridXform = xformQuery.GetComponent(gridId); - var (_, _, matrix, invMatrix) = gridXform.GetWorldPositionRotationMatrixWithInv(xformQuery); + var (_, _, matrix, invMatrix) = _transformSystem.GetWorldPositionRotationMatrixWithInv(gridXform, xformQuery); var gridBounds = invMatrix.TransformBox(args.WorldBounds).Enlarged(mapGrid.TileSize * 2); foreach (var debugOverlayData in _debugOverlaySystem.GetData(gridId)) diff --git a/Content.Client/Interaction/DragDropSystem.cs b/Content.Client/Interaction/DragDropSystem.cs index d249766bbc..4145999579 100644 --- a/Content.Client/Interaction/DragDropSystem.cs +++ b/Content.Client/Interaction/DragDropSystem.cs @@ -42,6 +42,7 @@ public sealed class DragDropSystem : SharedDragDropSystem [Dependency] private readonly ActionBlockerSystem _actionBlockerSystem = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; // how often to recheck possible targets (prevents calling expensive // check logic each update) @@ -89,7 +90,7 @@ public sealed class DragDropSystem : SharedDragDropSystem /// private bool _isReplaying; - private float _deadzone; + public float Deadzone; private DragState _state = DragState.NotDragging; @@ -121,7 +122,7 @@ public sealed class DragDropSystem : SharedDragDropSystem private void SetDeadZone(float deadZone) { - _deadzone = deadZone; + Deadzone = deadZone; } public override void Shutdown() @@ -211,7 +212,7 @@ public sealed class DragDropSystem : SharedDragDropSystem _draggedEntity = entity; _state = DragState.MouseDown; - _mouseDownScreenPos = _inputManager.MouseScreenPosition; + _mouseDownScreenPos = args.ScreenCoordinates; _mouseDownTime = 0; // don't want anything else to process the click, @@ -239,8 +240,13 @@ public sealed class DragDropSystem : SharedDragDropSystem if (TryComp(_draggedEntity, out var draggedSprite)) { + var screenPos = _inputManager.MouseScreenPosition; + // No _draggedEntity in null window (Happens in tests) + if (!screenPos.IsValid) + return; + // pop up drag shadow under mouse - var mousePos = _eyeManager.PixelToMap(_inputManager.MouseScreenPosition); + var mousePos = _eyeManager.PixelToMap(screenPos); _dragShadow = EntityManager.SpawnEntity("dragshadow", mousePos); var dragSprite = Comp(_dragShadow.Value); dragSprite.CopyFrom(draggedSprite); @@ -517,6 +523,9 @@ public sealed class DragDropSystem : SharedDragDropSystem if (dropEv2.Handled) return dropEv2.CanDrop; + if (dropEv.Handled && dropEv.CanDrop) + return true; + return null; } @@ -530,7 +539,7 @@ public sealed class DragDropSystem : SharedDragDropSystem case DragState.MouseDown: { var screenPos = _inputManager.MouseScreenPosition; - if ((_mouseDownScreenPos!.Value.Position - screenPos.Position).Length() > _deadzone) + if ((_mouseDownScreenPos!.Value.Position - screenPos.Position).Length() > Deadzone) { StartDrag(); } @@ -551,7 +560,7 @@ public sealed class DragDropSystem : SharedDragDropSystem if (Exists(_dragShadow)) { var mousePos = _eyeManager.PixelToMap(_inputManager.MouseScreenPosition); - Transform(_dragShadow.Value).WorldPosition = mousePos.Position; + _transformSystem.SetWorldPosition(_dragShadow.Value, mousePos.Position); } } } diff --git a/Content.Client/Maps/GridDraggingSystem.cs b/Content.Client/Maps/GridDraggingSystem.cs index 5e9250f0ce..5bbf5ff500 100644 --- a/Content.Client/Maps/GridDraggingSystem.cs +++ b/Content.Client/Maps/GridDraggingSystem.cs @@ -18,6 +18,7 @@ public sealed class GridDraggingSystem : SharedGridDraggingSystem [Dependency] private readonly IInputManager _inputManager = default!; [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly InputSystem _inputSystem = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; public bool Enabled { get; set; } @@ -62,11 +63,11 @@ public sealed class GridDraggingSystem : SharedGridDraggingSystem if (_dragging == null) return; if (_lastMousePosition != null && TryComp(_dragging.Value, out TransformComponent? xform) && - TryComp(_dragging.Value, out var body) && + TryComp(_dragging.Value, out _) && xform.MapID == _lastMousePosition.Value.MapId) { var tickTime = _gameTiming.TickPeriod; - var distance = _lastMousePosition.Value.Position - xform.WorldPosition; + var distance = _lastMousePosition.Value.Position - _transformSystem.GetWorldPosition(xform); RaiseNetworkEvent(new GridDragVelocityRequest() { Grid = GetNetEntity(_dragging.Value), diff --git a/Content.Client/NPC/HTN/HTNOverlay.cs b/Content.Client/NPC/HTN/HTNOverlay.cs index ad173f3b29..2cb02f1086 100644 --- a/Content.Client/NPC/HTN/HTNOverlay.cs +++ b/Content.Client/NPC/HTN/HTNOverlay.cs @@ -9,6 +9,7 @@ public sealed class HTNOverlay : Overlay { private readonly IEntityManager _entManager = default!; private readonly Font _font = default!; + private readonly SharedTransformSystem _transformSystem; public override OverlaySpace Space => OverlaySpace.ScreenSpace; @@ -16,6 +17,7 @@ public sealed class HTNOverlay : Overlay { _entManager = entManager; _font = new VectorFont(resourceCache.GetResource("/Fonts/NotoSans/NotoSans-Regular.ttf"), 10); + _transformSystem = _entManager.System(); } protected override void Draw(in OverlayDrawArgs args) @@ -30,7 +32,7 @@ public sealed class HTNOverlay : Overlay if (string.IsNullOrEmpty(comp.DebugText) || xform.MapID != args.MapId) continue; - var worldPos = xform.WorldPosition; + var worldPos = _transformSystem.GetWorldPosition(xform); if (!args.WorldAABB.Contains(worldPos)) continue; diff --git a/Content.Client/NPC/NPCSteeringSystem.cs b/Content.Client/NPC/NPCSteeringSystem.cs index bb2145bce0..eda3d74cf7 100644 --- a/Content.Client/NPC/NPCSteeringSystem.cs +++ b/Content.Client/NPC/NPCSteeringSystem.cs @@ -81,10 +81,12 @@ public sealed class NPCSteeringOverlay : Overlay public override OverlaySpace Space => OverlaySpace.WorldSpace; private readonly IEntityManager _entManager; + private readonly SharedTransformSystem _transformSystem; public NPCSteeringOverlay(IEntityManager entManager) { _entManager = entManager; + _transformSystem = _entManager.System(); } protected override void Draw(in OverlayDrawArgs args) @@ -96,7 +98,7 @@ public sealed class NPCSteeringOverlay : Overlay continue; } - var (worldPos, worldRot) = xform.GetWorldPositionRotation(); + var (worldPos, worldRot) = _transformSystem.GetWorldPositionRotation(xform); if (!args.WorldAABB.Contains(worldPos)) continue; diff --git a/Content.Client/NetworkConfigurator/NetworkConfiguratorLinkOverlay.cs b/Content.Client/NetworkConfigurator/NetworkConfiguratorLinkOverlay.cs index 4fcdada868..19da5aa959 100644 --- a/Content.Client/NetworkConfigurator/NetworkConfiguratorLinkOverlay.cs +++ b/Content.Client/NetworkConfigurator/NetworkConfiguratorLinkOverlay.cs @@ -12,6 +12,7 @@ public sealed class NetworkConfiguratorLinkOverlay : Overlay [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly IRobustRandom _random = default!; private readonly DeviceListSystem _deviceListSystem; + private readonly SharedTransformSystem _transformSystem; public Dictionary Colors = new(); public EntityUid? Action; @@ -23,6 +24,7 @@ public sealed class NetworkConfiguratorLinkOverlay : Overlay IoCManager.InjectDependencies(this); _deviceListSystem = _entityManager.System(); + _transformSystem = _entityManager.System(); } protected override void Draw(in OverlayDrawArgs args) @@ -66,7 +68,7 @@ public sealed class NetworkConfiguratorLinkOverlay : Overlay continue; } - args.WorldHandle.DrawLine(sourceTransform.WorldPosition, linkTransform.WorldPosition, Colors[uid]); + args.WorldHandle.DrawLine(_transformSystem.GetWorldPosition(sourceTransform), _transformSystem.GetWorldPosition(linkTransform), Colors[uid]); } } } diff --git a/Content.Client/NodeContainer/NodeVisualizationOverlay.cs b/Content.Client/NodeContainer/NodeVisualizationOverlay.cs index 4e8a4a10ca..b0bdf8ed87 100644 --- a/Content.Client/NodeContainer/NodeVisualizationOverlay.cs +++ b/Content.Client/NodeContainer/NodeVisualizationOverlay.cs @@ -20,6 +20,7 @@ namespace Content.Client.NodeContainer private readonly IMapManager _mapManager; private readonly IInputManager _inputManager; private readonly IEntityManager _entityManager; + private readonly SharedTransformSystem _transformSystem; private readonly Dictionary<(int, int), NodeRenderData> _nodeIndex = new(); private readonly Dictionary>> _gridIndex = new (); @@ -46,6 +47,7 @@ namespace Content.Client.NodeContainer _mapManager = mapManager; _inputManager = inputManager; _entityManager = entityManager; + _transformSystem = _entityManager.System(); _font = cache.GetFont("/Fonts/NotoSans/NotoSans-Regular.ttf", 12); } @@ -146,7 +148,7 @@ namespace Content.Client.NodeContainer foreach (var (gridId, gridDict) in _gridIndex) { var grid = _entityManager.GetComponent(gridId); - var (_, _, worldMatrix, invMatrix) = _entityManager.GetComponent(gridId).GetWorldPositionRotationMatrixWithInv(); + var (_, _, worldMatrix, invMatrix) = _transformSystem.GetWorldPositionRotationMatrixWithInv(gridId); var lCursorBox = invMatrix.TransformBox(cursorBox); foreach (var (pos, list) in gridDict) diff --git a/Content.Client/Outline/TargetOutlineSystem.cs b/Content.Client/Outline/TargetOutlineSystem.cs index df57578b1f..c69987fe77 100644 --- a/Content.Client/Outline/TargetOutlineSystem.cs +++ b/Content.Client/Outline/TargetOutlineSystem.cs @@ -23,6 +23,7 @@ public sealed class TargetOutlineSystem : EntitySystem [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; private bool _enabled = false; @@ -165,8 +166,8 @@ public sealed class TargetOutlineSystem : EntitySystem valid = _interactionSystem.InRangeUnobstructed(player, entity, Range); else if (Range >= 0) { - var origin = Transform(player).WorldPosition; - var target = Transform(entity).WorldPosition; + var origin = _transformSystem.GetWorldPosition(player); + var target = _transformSystem.GetWorldPosition(entity); valid = (origin - target).LengthSquared() <= Range; } diff --git a/Content.Client/Stealth/StealthSystem.cs b/Content.Client/Stealth/StealthSystem.cs index 0b94e41f6b..adb25e1ef6 100644 --- a/Content.Client/Stealth/StealthSystem.cs +++ b/Content.Client/Stealth/StealthSystem.cs @@ -11,6 +11,7 @@ namespace Content.Client.Stealth; public sealed class StealthSystem : SharedStealthSystem { [Dependency] private readonly IPrototypeManager _protoMan = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; private ShaderInstance _shader = default!; @@ -81,7 +82,7 @@ public sealed class StealthSystem : SharedStealthSystem if (!parent.IsValid()) return; // should never happen, but lets not kill the client. var parentXform = Transform(parent); - var reference = args.Viewport.WorldToLocal(parentXform.WorldPosition); + var reference = args.Viewport.WorldToLocal(_transformSystem.GetWorldPosition(parentXform)); reference.X = -reference.X; var visibility = GetVisibility(uid, component); diff --git a/Content.Client/Tabletop/TabletopSystem.cs b/Content.Client/Tabletop/TabletopSystem.cs index 0b55a1839c..034d3e4f02 100644 --- a/Content.Client/Tabletop/TabletopSystem.cs +++ b/Content.Client/Tabletop/TabletopSystem.cs @@ -27,6 +27,7 @@ namespace Content.Client.Tabletop [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly AppearanceSystem _appearance = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; // Time in seconds to wait until sending the location of a dragged entity to the server again private const float Delay = 1f / 10; // 10 Hz @@ -100,7 +101,7 @@ namespace Content.Client.Tabletop if (clampedCoords.Equals(MapCoordinates.Nullspace)) return; // Move the entity locally every update - EntityManager.GetComponent(_draggedEntity.Value).WorldPosition = clampedCoords.Position; + _transformSystem.SetWorldPosition(_draggedEntity.Value, clampedCoords.Position); // Increment total time passed _timePassed += frameTime; diff --git a/Content.Client/UserInterface/Systems/Viewport/ViewportUIController.cs b/Content.Client/UserInterface/Systems/Viewport/ViewportUIController.cs index 59747b1b0f..613f71e79b 100644 --- a/Content.Client/UserInterface/Systems/Viewport/ViewportUIController.cs +++ b/Content.Client/UserInterface/Systems/Viewport/ViewportUIController.cs @@ -15,7 +15,6 @@ public sealed class ViewportUIController : UIController [Dependency] private readonly IPlayerManager _playerMan = default!; [Dependency] private readonly IEntityManager _entMan = default!; [Dependency] private readonly IConfigurationManager _configurationManager = default!; - public static readonly Vector2i ViewportSize = (EyeManager.PixelsPerMeter * 21, EyeManager.PixelsPerMeter * 15); public const int ViewportHeight = 15; private MainViewport? Viewport => UIManager.ActiveScreen?.GetWidget(); diff --git a/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs b/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs index 6b2ed6e062..73f0783a4c 100644 --- a/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs +++ b/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs @@ -236,7 +236,7 @@ public sealed partial class MeleeWeaponSystem private void UpdateEffects() { var query = EntityQueryEnumerator(); - while (query.MoveNext(out var arcComponent, out var xform)) + while (query.MoveNext(out var uid, out var arcComponent, out var xform)) { if (arcComponent.User == null) continue; @@ -249,7 +249,7 @@ public sealed partial class MeleeWeaponSystem targetPos += entRotation.RotateVec(arcComponent.Offset); } - TransformSystem.SetWorldPosition(xform, targetPos); + TransformSystem.SetWorldPosition(uid, targetPos); } } diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs index 0f2c314ed0..d431c440a2 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs @@ -1207,11 +1207,12 @@ public abstract partial class InteractionTest BoundKeyFunction key, BoundKeyState state, NetCoordinates? coordinates = null, - NetEntity? cursorEntity = null) + NetEntity? cursorEntity = null, + ScreenCoordinates? screenCoordinates = null) { var coords = coordinates ?? TargetCoords; var target = cursorEntity ?? Target ?? default; - ScreenCoordinates screen = default; + var screen = screenCoordinates ?? default; var funcId = InputManager.NetworkBindMap.KeyFunctionID(key); var message = new ClientFullInputCmdMessage(CTiming.CurTick, CTiming.TickFraction, funcId) diff --git a/Content.IntegrationTests/Tests/Strip/StrippableTest.cs b/Content.IntegrationTests/Tests/Strip/StrippableTest.cs new file mode 100644 index 0000000000..f65bab1f81 --- /dev/null +++ b/Content.IntegrationTests/Tests/Strip/StrippableTest.cs @@ -0,0 +1,46 @@ +using Content.Client.Interaction; +using Content.IntegrationTests.Tests.Interaction; +using Robust.Shared.GameObjects; +using Robust.Shared.Input; +using Robust.Shared.Map; + +namespace Content.IntegrationTests.Tests.Strip; + +public sealed class StrippableTest : InteractionTest +{ + protected override string PlayerPrototype => "MobHuman"; + + [Test] + public async Task DragDropOpensStrip() + { + // Spawn one tile away + TargetCoords = SEntMan.GetNetCoordinates(new EntityCoordinates(MapData.MapUid, 1, 0)); + await SpawnTarget("MobHuman"); + + var userInterface = Comp(Target); + Assert.That(userInterface.Actors.Count == 0); + + // screenCoordinates diff needs to be larger than DragDropSystem._deadzone + var screenX = CEntMan.System().Deadzone + 1f; + + // Start drag + await SetKey(EngineKeyFunctions.Use, + BoundKeyState.Down, + TargetCoords, + Target, + screenCoordinates: new ScreenCoordinates(screenX, 0f, WindowId.Main)); + + await RunTicks(5); + + // End drag + await SetKey(EngineKeyFunctions.Use, + BoundKeyState.Up, + PlayerCoords, + Player, + screenCoordinates: new ScreenCoordinates(0f, 0f, WindowId.Main)); + + await RunTicks(5); + + Assert.That(userInterface.Actors.Count > 0); + } +} diff --git a/Content.Server/Abilities/Mime/MimePowersSystem.cs b/Content.Server/Abilities/Mime/MimePowersSystem.cs index f3bf6e703f..85230faab0 100644 --- a/Content.Server/Abilities/Mime/MimePowersSystem.cs +++ b/Content.Server/Abilities/Mime/MimePowersSystem.cs @@ -1,4 +1,5 @@ using Content.Server.Popups; +using Content.Shared.Abilities.Mime; using Content.Shared.Actions; using Content.Shared.Actions.Events; using Content.Shared.Alert; @@ -29,6 +30,9 @@ namespace Content.Server.Abilities.Mime base.Initialize(); SubscribeLocalEvent(OnComponentInit); SubscribeLocalEvent(OnInvisibleWall); + + SubscribeLocalEvent(OnBreakVowAlert); + SubscribeLocalEvent(OnRetakeVowAlert); } public override void Update(float frameTime) @@ -99,6 +103,22 @@ namespace Content.Server.Abilities.Mime args.Handled = true; } + private void OnBreakVowAlert(Entity ent, ref BreakVowAlertEvent args) + { + if (args.Handled) + return; + BreakVow(ent, ent); + args.Handled = true; + } + + private void OnRetakeVowAlert(Entity ent, ref RetakeVowAlertEvent args) + { + if (args.Handled) + return; + RetakeVow(ent, ent); + args.Handled = true; + } + /// /// Break this mime's vow to not speak. /// diff --git a/Content.Server/Administration/Logs/AdminLogManager.Cache.cs b/Content.Server/Administration/Logs/AdminLogManager.Cache.cs index c194527d82..250d0f7aa3 100644 --- a/Content.Server/Administration/Logs/AdminLogManager.Cache.cs +++ b/Content.Server/Administration/Logs/AdminLogManager.Cache.cs @@ -16,6 +16,7 @@ public sealed partial class AdminLogManager // TODO ADMIN LOGS make this thread safe or remove thread safety from the main partial class private readonly Dictionary> _roundsLogCache = new(MaxRoundsCached); + private readonly Queue _roundsLogCacheQueue = new(); private static readonly Gauge CacheRoundCount = Metrics.CreateGauge( "admin_logs_cache_round_count", @@ -28,19 +29,21 @@ public sealed partial class AdminLogManager // TODO ADMIN LOGS cache previous {MaxRoundsCached} rounds on startup public void CacheNewRound() { - List list; - var oldestRound = _currentRoundId - MaxRoundsCached; + List? list = null; - if (_roundsLogCache.Remove(oldestRound, out var oldestList)) + _roundsLogCacheQueue.Enqueue(_currentRoundId); + if (_roundsLogCacheQueue.Count > MaxRoundsCached) { - list = oldestList; - list.Clear(); - } - else - { - list = new List(LogListInitialSize); + var oldestRound = _roundsLogCacheQueue.Dequeue(); + if (_roundsLogCache.Remove(oldestRound, out var oldestList)) + { + list = oldestList; + list.Clear(); + } } + list ??= new List(LogListInitialSize); + _roundsLogCache.Add(_currentRoundId, list); CacheRoundCount.Set(_roundsLogCache.Count); } diff --git a/Content.Server/Alert/Click/BreakVow.cs b/Content.Server/Alert/Click/BreakVow.cs deleted file mode 100644 index 400dabbb01..0000000000 --- a/Content.Server/Alert/Click/BreakVow.cs +++ /dev/null @@ -1,22 +0,0 @@ -using Content.Shared.Alert; -using Content.Server.Abilities.Mime; - -namespace Content.Server.Alert.Click -{ - /// - /// Break your mime vows - /// - [DataDefinition] - public sealed partial class BreakVow : IAlertClick - { - public void AlertClicked(EntityUid player) - { - var entManager = IoCManager.Resolve(); - - if (entManager.TryGetComponent(player, out MimePowersComponent? mimePowers)) - { - entManager.System().BreakVow(player, mimePowers); - } - } - } -} diff --git a/Content.Server/Alert/Click/RemoveCuffs.cs b/Content.Server/Alert/Click/RemoveCuffs.cs deleted file mode 100644 index b55484283a..0000000000 --- a/Content.Server/Alert/Click/RemoveCuffs.cs +++ /dev/null @@ -1,21 +0,0 @@ -using Content.Server.Cuffs; -using Content.Shared.Alert; -using JetBrains.Annotations; - -namespace Content.Server.Alert.Click -{ - /// - /// Try to remove handcuffs from yourself - /// - [UsedImplicitly] - [DataDefinition] - public sealed partial class RemoveCuffs : IAlertClick - { - public void AlertClicked(EntityUid player) - { - var entityManager = IoCManager.Resolve(); - var cuffableSys = entityManager.System(); - cuffableSys.TryUncuff(player, player); - } - } -} diff --git a/Content.Server/Alert/Click/RemoveEnsnare.cs b/Content.Server/Alert/Click/RemoveEnsnare.cs deleted file mode 100644 index c33f4ae341..0000000000 --- a/Content.Server/Alert/Click/RemoveEnsnare.cs +++ /dev/null @@ -1,28 +0,0 @@ -using Content.Server.Ensnaring; -using Content.Shared.Alert; -using Content.Shared.Ensnaring.Components; -using JetBrains.Annotations; - -namespace Content.Server.Alert.Click; -[UsedImplicitly] -[DataDefinition] -public sealed partial class RemoveEnsnare : IAlertClick -{ - public void AlertClicked(EntityUid player) - { - var entManager = IoCManager.Resolve(); - if (entManager.TryGetComponent(player, out EnsnareableComponent? ensnareableComponent)) - { - foreach (var ensnare in ensnareableComponent.Container.ContainedEntities) - { - if (!entManager.TryGetComponent(ensnare, out EnsnaringComponent? ensnaringComponent)) - return; - - entManager.EntitySysManager.GetEntitySystem().TryFree(player, player, ensnare, ensnaringComponent); - - // Only one snare at a time. - break; - } - } - } -} diff --git a/Content.Server/Alert/Click/ResistFire.cs b/Content.Server/Alert/Click/ResistFire.cs deleted file mode 100644 index 9ae49c3f45..0000000000 --- a/Content.Server/Alert/Click/ResistFire.cs +++ /dev/null @@ -1,25 +0,0 @@ -using Content.Server.Atmos.Components; -using Content.Server.Atmos.EntitySystems; -using Content.Shared.Alert; -using JetBrains.Annotations; - -namespace Content.Server.Alert.Click -{ - /// - /// Resist fire - /// - [UsedImplicitly] - [DataDefinition] - public sealed partial class ResistFire : IAlertClick - { - public void AlertClicked(EntityUid player) - { - var entManager = IoCManager.Resolve(); - - if (entManager.TryGetComponent(player, out FlammableComponent? flammable)) - { - entManager.System().Resist(player, flammable); - } - } - } -} diff --git a/Content.Server/Alert/Click/RetakeVow.cs b/Content.Server/Alert/Click/RetakeVow.cs deleted file mode 100644 index 1b7a15ea74..0000000000 --- a/Content.Server/Alert/Click/RetakeVow.cs +++ /dev/null @@ -1,22 +0,0 @@ -using Content.Shared.Alert; -using Content.Server.Abilities.Mime; - -namespace Content.Server.Alert.Click -{ - /// - /// Retake your mime vows - /// - [DataDefinition] - public sealed partial class RetakeVow : IAlertClick - { - public void AlertClicked(EntityUid player) - { - var entManager = IoCManager.Resolve(); - - if (entManager.TryGetComponent(player, out MimePowersComponent? mimePowers)) - { - entManager.System().RetakeVow(player, mimePowers); - } - } - } -} diff --git a/Content.Server/Alert/Click/StopBeingPulled.cs b/Content.Server/Alert/Click/StopBeingPulled.cs deleted file mode 100644 index b02da38ecf..0000000000 --- a/Content.Server/Alert/Click/StopBeingPulled.cs +++ /dev/null @@ -1,29 +0,0 @@ -using Content.Shared.ActionBlocker; -using Content.Shared.Alert; -using Content.Shared.Movement.Pulling.Components; -using Content.Shared.Movement.Pulling.Systems; -using JetBrains.Annotations; - -namespace Content.Server.Alert.Click -{ - /// - /// Stop pulling something - /// - [UsedImplicitly] - [DataDefinition] - public sealed partial class StopBeingPulled : IAlertClick - { - public void AlertClicked(EntityUid player) - { - var entityManager = IoCManager.Resolve(); - - if (!entityManager.System().CanInteract(player, null)) - return; - - if (entityManager.TryGetComponent(player, out PullableComponent? playerPullable)) - { - entityManager.System().TryStopPull(player, playerPullable, user: player); - } - } - } -} diff --git a/Content.Server/Alert/Click/StopPiloting.cs b/Content.Server/Alert/Click/StopPiloting.cs deleted file mode 100644 index cd4e333c0a..0000000000 --- a/Content.Server/Alert/Click/StopPiloting.cs +++ /dev/null @@ -1,26 +0,0 @@ -using Content.Server.Shuttles.Systems; -using Content.Shared.Alert; -using Content.Shared.Shuttles.Components; -using JetBrains.Annotations; - -namespace Content.Server.Alert.Click -{ - /// - /// Stop piloting shuttle - /// - [UsedImplicitly] - [DataDefinition] - public sealed partial class StopPiloting : IAlertClick - { - public void AlertClicked(EntityUid player) - { - var entManager = IoCManager.Resolve(); - - if (entManager.TryGetComponent(player, out PilotComponent? pilotComponent) - && pilotComponent.Console != null) - { - entManager.System().RemovePilot(player, pilotComponent); - } - } - } -} diff --git a/Content.Server/Alert/Click/StopPulling.cs b/Content.Server/Alert/Click/StopPulling.cs deleted file mode 100644 index 76f9569429..0000000000 --- a/Content.Server/Alert/Click/StopPulling.cs +++ /dev/null @@ -1,27 +0,0 @@ -using Content.Shared.Alert; -using Content.Shared.Movement.Pulling.Components; -using Content.Shared.Movement.Pulling.Systems; -using JetBrains.Annotations; - -namespace Content.Server.Alert.Click -{ - /// - /// Stop pulling something - /// - [UsedImplicitly] - [DataDefinition] - public sealed partial class StopPulling : IAlertClick - { - public void AlertClicked(EntityUid player) - { - var entManager = IoCManager.Resolve(); - var ps = entManager.System(); - - if (entManager.TryGetComponent(player, out PullerComponent? puller) && - entManager.TryGetComponent(puller.Pulling, out PullableComponent? pullableComp)) - { - ps.TryStopPull(puller.Pulling.Value, pullableComp, user: player); - } - } - } -} diff --git a/Content.Server/Alert/Click/ToggleInternals.cs b/Content.Server/Alert/Click/ToggleInternals.cs deleted file mode 100644 index 523db04df3..0000000000 --- a/Content.Server/Alert/Click/ToggleInternals.cs +++ /dev/null @@ -1,19 +0,0 @@ -using Content.Server.Body.Systems; -using Content.Shared.Alert; -using JetBrains.Annotations; - -namespace Content.Server.Alert.Click; - -/// -/// Attempts to toggle the internals for a particular entity -/// -[UsedImplicitly] -[DataDefinition] -public sealed partial class ToggleInternals : IAlertClick -{ - public void AlertClicked(EntityUid player) - { - var internalsSystem = IoCManager.Resolve().GetEntitySystem(); - internalsSystem.ToggleInternals(player, player, false); - } -} diff --git a/Content.Server/Alert/Click/Unbuckle.cs b/Content.Server/Alert/Click/Unbuckle.cs deleted file mode 100644 index 3e53955d8c..0000000000 --- a/Content.Server/Alert/Click/Unbuckle.cs +++ /dev/null @@ -1,19 +0,0 @@ -using Content.Shared.Alert; -using Content.Shared.Buckle; -using JetBrains.Annotations; - -namespace Content.Server.Alert.Click -{ - /// - /// Unbuckles if player is currently buckled. - /// - [UsedImplicitly] - [DataDefinition] - public sealed partial class Unbuckle : IAlertClick - { - public void AlertClicked(EntityUid player) - { - IoCManager.Resolve().System().TryUnbuckle(player, player); - } - } -} diff --git a/Content.Server/Antag/AntagSelectionSystem.cs b/Content.Server/Antag/AntagSelectionSystem.cs index 496fcbb550..270b39b3a2 100644 --- a/Content.Server/Antag/AntagSelectionSystem.cs +++ b/Content.Server/Antag/AntagSelectionSystem.cs @@ -13,11 +13,15 @@ using Content.Server.Roles.Jobs; using Content.Server.Shuttles.Components; using Content.Server.Station.Systems; using Content.Shared.Antag; +using Content.Shared.Clothing; using Content.Shared.GameTicking; using Content.Shared.GameTicking.Components; using Content.Shared.Ghost; using Content.Shared.Humanoid; +using Content.Shared.Mind; using Content.Shared.Players; +using Content.Shared.Preferences.Loadouts; +using Content.Shared.Roles; using Content.Shared.Whitelist; using Robust.Server.Audio; using Robust.Server.GameObjects; @@ -25,6 +29,7 @@ using Robust.Server.Player; using Robust.Shared.Enums; using Robust.Shared.Map; using Robust.Shared.Player; +using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Utility; @@ -35,10 +40,13 @@ public sealed partial class AntagSelectionSystem : GameRuleSystem>? gear = new(); + if (def.StartingGear is not null) + gear.Add(def.StartingGear.Value); + + _loadout.Equip(player, gear, def.RoleLoadout); if (session != null) { - var curMind = _mind.CreateMind(session.UserId, Name(antagEnt.Value)); - _mind.SetUserId(curMind, session.UserId); - - _mind.TransferTo(curMind, antagEnt, ghostCheckOverride: true); - _role.MindAddRoles(curMind, def.MindComponents, null, true); - ent.Comp.SelectedMinds.Add((curMind, Name(player))); + var curMind = session.GetMind(); + + if (curMind == null || + !TryComp(curMind.Value, out var mindComp) || + mindComp.OwnedEntity != antagEnt) + { + curMind = _mind.CreateMind(session.UserId, Name(antagEnt.Value)); + _mind.SetUserId(curMind.Value, session.UserId); + } + _mind.TransferTo(curMind.Value, antagEnt, ghostCheckOverride: true); + _role.MindAddRoles(curMind.Value, def.MindComponents, null, true); + ent.Comp.SelectedMinds.Add((curMind.Value, Name(player))); SendBriefing(session, def.Briefing); } @@ -447,7 +467,7 @@ public sealed partial class AntagSelectionSystem : GameRuleSystem ent, ref ObjectivesTextGetInfoEvent args) { - if (ent.Comp.AgentName is not {} name) + if (ent.Comp.AgentName is not { } name) return; args.Minds = ent.Comp.SelectedMinds; diff --git a/Content.Server/Antag/Components/AntagSelectionComponent.cs b/Content.Server/Antag/Components/AntagSelectionComponent.cs index 1ab16e8aec..0e5a0afc9b 100644 --- a/Content.Server/Antag/Components/AntagSelectionComponent.cs +++ b/Content.Server/Antag/Components/AntagSelectionComponent.cs @@ -1,6 +1,7 @@ using Content.Server.Administration.Systems; using Content.Shared.Antag; using Content.Shared.Destructible.Thresholds; +using Content.Shared.Preferences.Loadouts; using Content.Shared.Roles; using Content.Shared.Storage; using Content.Shared.Whitelist; @@ -154,6 +155,12 @@ public partial struct AntagSelectionDefinition() [DataField] public ProtoId? StartingGear; + /// + /// A list of role loadouts, from which a randomly selected one will be equipped. + /// + [DataField] + public List>? RoleLoadout; + /// /// A briefing shown to the player. /// diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.HighPressureDelta.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.HighPressureDelta.cs index 2e41e45d3f..b96dd0ac48 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.HighPressureDelta.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.HighPressureDelta.cs @@ -237,7 +237,7 @@ namespace Content.Server.Atmos.EntitySystems // TODO: Technically these directions won't be correct but uhh I'm just here for optimisations buddy not to fix my old bugs. if (throwTarget != EntityCoordinates.Invalid) { - var pos = ((throwTarget.ToMap(EntityManager, _transformSystem).Position - xform.WorldPosition).Normalized() + dirVec).Normalized(); + var pos = ((_transformSystem.ToMapCoordinates(throwTarget).Position - _transformSystem.GetWorldPosition(xform)).Normalized() + dirVec).Normalized(); _physics.ApplyLinearImpulse(uid, pos * moveForce, body: physics); } else diff --git a/Content.Server/Atmos/EntitySystems/FlammableSystem.cs b/Content.Server/Atmos/EntitySystems/FlammableSystem.cs index 4c60a88331..fc25157249 100644 --- a/Content.Server/Atmos/EntitySystems/FlammableSystem.cs +++ b/Content.Server/Atmos/EntitySystems/FlammableSystem.cs @@ -73,6 +73,7 @@ namespace Content.Server.Atmos.EntitySystems SubscribeLocalEvent(OnIsHot); SubscribeLocalEvent(OnTileFire); SubscribeLocalEvent(OnRejuvenate); + SubscribeLocalEvent(OnResistFireAlert); SubscribeLocalEvent(IgniteOnCollide); SubscribeLocalEvent(OnIgniteLand); @@ -251,6 +252,15 @@ namespace Content.Server.Atmos.EntitySystems Extinguish(uid, component); } + private void OnResistFireAlert(Entity ent, ref ResistFireAlertEvent args) + { + if (args.Handled) + return; + + Resist(ent, ent); + args.Handled = true; + } + public void UpdateAppearance(EntityUid uid, FlammableComponent? flammable = null, AppearanceComponent? appearance = null) { if (!Resolve(uid, ref flammable, ref appearance)) diff --git a/Content.Server/Atmos/EntitySystems/GasMinerSystem.cs b/Content.Server/Atmos/EntitySystems/GasMinerSystem.cs new file mode 100644 index 0000000000..f7a3b9eed8 --- /dev/null +++ b/Content.Server/Atmos/EntitySystems/GasMinerSystem.cs @@ -0,0 +1,90 @@ +using System.Diagnostics.CodeAnalysis; +using Content.Server.Atmos.Piping.Components; +using Content.Shared.Atmos; +using Content.Shared.Atmos.Components; +using Content.Shared.Atmos.EntitySystems; +using JetBrains.Annotations; +using Robust.Server.GameObjects; + +namespace Content.Server.Atmos.EntitySystems; + +[UsedImplicitly] +public sealed class GasMinerSystem : SharedGasMinerSystem +{ + [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; + [Dependency] private readonly TransformSystem _transformSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMinerUpdated); + } + + private void OnMinerUpdated(Entity ent, ref AtmosDeviceUpdateEvent args) + { + var miner = ent.Comp; + var oldState = miner.MinerState; + float toSpawn; + + if (!GetValidEnvironment(ent, out var environment) || !Transform(ent).Anchored) + { + miner.MinerState = GasMinerState.Disabled; + } + // SpawnAmount is declared in mol/s so to get the amount of gas we hope to mine, we have to multiply this by + // how long we have been waiting to spawn it and further cap the number according to the miner's state. + else if ((toSpawn = CapSpawnAmount(ent, miner.SpawnAmount * args.dt, environment)) == 0) + { + miner.MinerState = GasMinerState.Idle; + } + else + { + miner.MinerState = GasMinerState.Working; + + // Time to mine some gas. + var merger = new GasMixture(1) { Temperature = miner.SpawnTemperature }; + merger.SetMoles(miner.SpawnGas, toSpawn); + _atmosphereSystem.Merge(environment, merger); + } + + if (miner.MinerState != oldState) + { + Dirty(ent); + } + } + + private bool GetValidEnvironment(Entity ent, [NotNullWhen(true)] out GasMixture? environment) + { + var (uid, miner) = ent; + var transform = Transform(uid); + var position = _transformSystem.GetGridOrMapTilePosition(uid, transform); + + // Treat space as an invalid environment + if (_atmosphereSystem.IsTileSpace(transform.GridUid, transform.MapUid, position)) + { + environment = null; + return false; + } + + environment = _atmosphereSystem.GetContainingMixture((uid, transform), true, true); + return environment != null; + } + + private float CapSpawnAmount(Entity ent, float toSpawnTarget, GasMixture environment) + { + var (uid, miner) = ent; + + // How many moles could we theoretically spawn. Cap by pressure and amount. + var allowableMoles = Math.Min( + (miner.MaxExternalPressure - environment.Pressure) * environment.Volume / (miner.SpawnTemperature * Atmospherics.R), + miner.MaxExternalAmount - environment.TotalMoles); + + var toSpawnReal = Math.Clamp(allowableMoles, 0f, toSpawnTarget); + + if (toSpawnReal < Atmospherics.GasMinMoles) { + return 0f; + } + + return toSpawnReal; + } +} diff --git a/Content.Server/Atmos/Piping/Other/Components/GasMinerComponent.cs b/Content.Server/Atmos/Piping/Other/Components/GasMinerComponent.cs deleted file mode 100644 index 1775ec5dad..0000000000 --- a/Content.Server/Atmos/Piping/Other/Components/GasMinerComponent.cs +++ /dev/null @@ -1,43 +0,0 @@ -using Content.Shared.Atmos; - -namespace Content.Server.Atmos.Piping.Other.Components -{ - [RegisterComponent] - public sealed partial class GasMinerComponent : Component - { - [ViewVariables(VVAccess.ReadWrite)] - public bool Enabled { get; set; } = true; - - [ViewVariables(VVAccess.ReadOnly)] - public bool Idle { get; set; } = false; - - /// - /// If the number of moles in the external environment exceeds this number, no gas will be mined. - /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("maxExternalAmount")] - public float MaxExternalAmount { get; set; } = float.PositiveInfinity; - - /// - /// If the pressure (in kPA) of the external environment exceeds this number, no gas will be mined. - /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("maxExternalPressure")] - public float MaxExternalPressure { get; set; } = Atmospherics.GasMinerDefaultMaxExternalPressure; - - [ViewVariables(VVAccess.ReadWrite)] - [DataField("spawnGas")] - public Gas? SpawnGas { get; set; } = null; - - [ViewVariables(VVAccess.ReadWrite)] - [DataField("spawnTemperature")] - public float SpawnTemperature { get; set; } = Atmospherics.T20C; - - /// - /// Number of moles created per second when the miner is working. - /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("spawnAmount")] - public float SpawnAmount { get; set; } = Atmospherics.MolesCellStandard * 20f; - } -} diff --git a/Content.Server/Atmos/Piping/Other/EntitySystems/GasMinerSystem.cs b/Content.Server/Atmos/Piping/Other/EntitySystems/GasMinerSystem.cs deleted file mode 100644 index dd46fb6b4c..0000000000 --- a/Content.Server/Atmos/Piping/Other/EntitySystems/GasMinerSystem.cs +++ /dev/null @@ -1,84 +0,0 @@ -using System.Diagnostics.CodeAnalysis; -using Content.Server.Atmos.EntitySystems; -using Content.Server.Atmos.Piping.Components; -using Content.Server.Atmos.Piping.Other.Components; -using Content.Shared.Atmos; -using JetBrains.Annotations; -using Robust.Server.GameObjects; - -namespace Content.Server.Atmos.Piping.Other.EntitySystems -{ - [UsedImplicitly] - public sealed class GasMinerSystem : EntitySystem - { - [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; - [Dependency] private readonly TransformSystem _transformSystem = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnMinerUpdated); - } - - private void OnMinerUpdated(Entity ent, ref AtmosDeviceUpdateEvent args) - { - var miner = ent.Comp; - - if (!GetValidEnvironment(ent, out var environment)) - { - miner.Idle = true; - return; - } - - // SpawnAmount is declared in mol/s so to get the amount of gas we hope to mine, we have to multiply this by - // how long we have been waiting to spawn it and further cap the number according to the miner's state. - var toSpawn = CapSpawnAmount(ent, miner.SpawnAmount * args.dt, environment); - miner.Idle = toSpawn == 0; - if (miner.Idle || !miner.Enabled || !miner.SpawnGas.HasValue) - return; - - // Time to mine some gas. - - var merger = new GasMixture(1) { Temperature = miner.SpawnTemperature }; - merger.SetMoles(miner.SpawnGas.Value, toSpawn); - - _atmosphereSystem.Merge(environment, merger); - } - - private bool GetValidEnvironment(Entity ent, [NotNullWhen(true)] out GasMixture? environment) - { - var (uid, miner) = ent; - var transform = Transform(uid); - var position = _transformSystem.GetGridOrMapTilePosition(uid, transform); - - // Treat space as an invalid environment - if (_atmosphereSystem.IsTileSpace(transform.GridUid, transform.MapUid, position)) - { - environment = null; - return false; - } - - environment = _atmosphereSystem.GetContainingMixture((uid, transform), true, true); - return environment != null; - } - - private float CapSpawnAmount(Entity ent, float toSpawnTarget, GasMixture environment) - { - var (uid, miner) = ent; - - // How many moles could we theoretically spawn. Cap by pressure and amount. - var allowableMoles = Math.Min( - (miner.MaxExternalPressure - environment.Pressure) * environment.Volume / (miner.SpawnTemperature * Atmospherics.R), - miner.MaxExternalAmount - environment.TotalMoles); - - var toSpawnReal = Math.Clamp(allowableMoles, 0f, toSpawnTarget); - - if (toSpawnReal < Atmospherics.GasMinMoles) { - return 0f; - } - - return toSpawnReal; - } - } -} diff --git a/Content.Server/Body/Components/InternalsComponent.cs b/Content.Server/Body/Components/InternalsComponent.cs index ef908f9655..a7edab4a6b 100644 --- a/Content.Server/Body/Components/InternalsComponent.cs +++ b/Content.Server/Body/Components/InternalsComponent.cs @@ -25,4 +25,5 @@ namespace Content.Server.Body.Components [DataField] public ProtoId InternalsAlert = "Internals"; } + } diff --git a/Content.Server/Body/Systems/InternalsSystem.cs b/Content.Server/Body/Systems/InternalsSystem.cs index e352b0a58a..7e86cb6f07 100644 --- a/Content.Server/Body/Systems/InternalsSystem.cs +++ b/Content.Server/Body/Systems/InternalsSystem.cs @@ -38,6 +38,7 @@ public sealed class InternalsSystem : EntitySystem SubscribeLocalEvent(OnInternalsShutdown); SubscribeLocalEvent>(OnGetInteractionVerbs); SubscribeLocalEvent(OnDoAfter); + SubscribeLocalEvent(OnToggleInternalsAlert); SubscribeLocalEvent(OnStartingGear); } @@ -161,6 +162,14 @@ public sealed class InternalsSystem : EntitySystem args.Handled = true; } + private void OnToggleInternalsAlert(Entity ent, ref ToggleInternalsAlertEvent args) + { + if (args.Handled) + return; + ToggleInternals(ent, ent, false, internals: ent.Comp); + args.Handled = true; + } + private void OnInternalsStartup(Entity ent, ref ComponentStartup args) { _alerts.ShowAlert(ent, ent.Comp.InternalsAlert, GetSeverity(ent)); diff --git a/Content.Server/Chemistry/EntitySystems/VaporSystem.cs b/Content.Server/Chemistry/EntitySystems/VaporSystem.cs index 8e12670ca6..dbb8572299 100644 --- a/Content.Server/Chemistry/EntitySystems/VaporSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/VaporSystem.cs @@ -28,6 +28,7 @@ namespace Content.Server.Chemistry.EntitySystems [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly ThrowingSystem _throwing = default!; [Dependency] private readonly ReactiveSystem _reactive = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; private const float ReactTime = 0.125f; @@ -69,7 +70,7 @@ namespace Content.Server.Chemistry.EntitySystems _throwing.TryThrow(vapor, dir, speed, user: user); - var distance = (target.Position - vaporXform.WorldPosition).Length(); + var distance = (target.Position - _transformSystem.GetWorldPosition(vaporXform)).Length(); var time = (distance / physics.LinearVelocity.Length()); despawn.Lifetime = MathF.Min(aliveTime, time); } diff --git a/Content.Server/Commands/CommandUtils.cs b/Content.Server/Commands/CommandUtils.cs index 172f3324e3..30ea41b7c9 100644 --- a/Content.Server/Commands/CommandUtils.cs +++ b/Content.Server/Commands/CommandUtils.cs @@ -1,4 +1,4 @@ -using System.Diagnostics.CodeAnalysis; +using System.Diagnostics.CodeAnalysis; using System.Globalization; using Robust.Server.Player; using Robust.Shared.Console; @@ -55,13 +55,15 @@ namespace Content.Server.Commands { var entMan = IoCManager.Resolve(); var transform = entMan.GetComponent(ent); + var transformSystem = entMan.System(); + var worldPosition = transformSystem.GetWorldPosition(transform); // gross, is there a better way to do this? ruleString = ruleString.Replace("$ID", ent.ToString()); ruleString = ruleString.Replace("$WX", - transform.WorldPosition.X.ToString(CultureInfo.InvariantCulture)); + worldPosition.X.ToString(CultureInfo.InvariantCulture)); ruleString = ruleString.Replace("$WY", - transform.WorldPosition.Y.ToString(CultureInfo.InvariantCulture)); + worldPosition.Y.ToString(CultureInfo.InvariantCulture)); ruleString = ruleString.Replace("$LX", transform.LocalPosition.X.ToString(CultureInfo.InvariantCulture)); ruleString = ruleString.Replace("$LY", @@ -73,12 +75,13 @@ namespace Content.Server.Commands if (player.AttachedEntity is {Valid: true} p) { var pTransform = entMan.GetComponent(p); + var pWorldPosition = transformSystem.GetWorldPosition(pTransform); ruleString = ruleString.Replace("$PID", ent.ToString()); ruleString = ruleString.Replace("$PWX", - pTransform.WorldPosition.X.ToString(CultureInfo.InvariantCulture)); + pWorldPosition.X.ToString(CultureInfo.InvariantCulture)); ruleString = ruleString.Replace("$PWY", - pTransform.WorldPosition.Y.ToString(CultureInfo.InvariantCulture)); + pWorldPosition.Y.ToString(CultureInfo.InvariantCulture)); ruleString = ruleString.Replace("$PLX", pTransform.LocalPosition.X.ToString(CultureInfo.InvariantCulture)); ruleString = ruleString.Replace("$PLY", diff --git a/Content.Server/DeviceNetwork/Systems/WirelessNetworkSystem.cs b/Content.Server/DeviceNetwork/Systems/WirelessNetworkSystem.cs index b27ef52eca..1741afd4ce 100644 --- a/Content.Server/DeviceNetwork/Systems/WirelessNetworkSystem.cs +++ b/Content.Server/DeviceNetwork/Systems/WirelessNetworkSystem.cs @@ -6,6 +6,8 @@ namespace Content.Server.DeviceNetwork.Systems [UsedImplicitly] public sealed class WirelessNetworkSystem : EntitySystem { + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; + public override void Initialize() { base.Initialize(); @@ -25,7 +27,7 @@ namespace Content.Server.DeviceNetwork.Systems return; if (xform.MapID != args.SenderTransform.MapID - || (ownPosition - xform.WorldPosition).Length() > sendingComponent.Range) + || (ownPosition - _transformSystem.GetWorldPosition(xform)).Length() > sendingComponent.Range) { args.Cancel(); } diff --git a/Content.Server/Dragon/DragonSystem.cs b/Content.Server/Dragon/DragonSystem.cs index 29875c60ca..42610a0323 100644 --- a/Content.Server/Dragon/DragonSystem.cs +++ b/Content.Server/Dragon/DragonSystem.cs @@ -156,7 +156,7 @@ public sealed partial class DragonSystem : EntitySystem } // cant put a rift on solars - foreach (var tile in grid.GetTilesIntersecting(new Circle(xform.WorldPosition, RiftTileRadius), false)) + foreach (var tile in grid.GetTilesIntersecting(new Circle(_transform.GetWorldPosition(xform), RiftTileRadius), false)) { if (!tile.IsSpace(_tileDef)) continue; diff --git a/Content.Server/Ensnaring/EnsnareableSystem.Ensnaring.cs b/Content.Server/Ensnaring/EnsnareableSystem.Ensnaring.cs index 51d3242ce4..c9dec3782f 100644 --- a/Content.Server/Ensnaring/EnsnareableSystem.Ensnaring.cs +++ b/Content.Server/Ensnaring/EnsnareableSystem.Ensnaring.cs @@ -28,6 +28,7 @@ public sealed partial class EnsnareableSystem SubscribeLocalEvent(OnStepTrigger); SubscribeLocalEvent(OnThrowHit); SubscribeLocalEvent(OnAttemptPacifiedThrow); + SubscribeLocalEvent(OnRemoveEnsnareAlert); } private void OnAttemptPacifiedThrow(Entity ent, ref AttemptPacifiedThrowEvent args) @@ -35,6 +36,24 @@ public sealed partial class EnsnareableSystem args.Cancel("pacified-cannot-throw-snare"); } + private void OnRemoveEnsnareAlert(Entity ent, ref RemoveEnsnareAlertEvent args) + { + if (args.Handled) + return; + + foreach (var ensnare in ent.Comp.Container.ContainedEntities) + { + if (!TryComp(ensnare, out var ensnaringComponent)) + return; + + TryFree(ent, ent, ensnare, ensnaringComponent); + + args.Handled = true; + // Only one snare at a time. + break; + } + } + private void OnComponentRemove(EntityUid uid, EnsnaringComponent component, ComponentRemove args) { if (!TryComp(component.Ensnared, out var ensnared)) diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs index d88945bc19..75bb606441 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs @@ -105,7 +105,7 @@ public sealed partial class ExplosionSystem : SharedExplosionSystem var xforms = EntityManager.GetEntityQuery(); var xform = xforms.GetComponent(gridToTransform); - var (_, gridWorldRotation, gridWorldMatrix, invGridWorldMatrid) = xform.GetWorldPositionRotationMatrixWithInv(xforms); + var (_, gridWorldRotation, gridWorldMatrix, invGridWorldMatrid) = _transformSystem.GetWorldPositionRotationMatrixWithInv(xform, xforms); var localEpicentre = (Vector2i) Vector2.Transform(epicentre.Position, invGridWorldMatrid); var matrix = offsetMatrix * gridWorldMatrix * targetMatrix; diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs index 1eeed949cc..6de516ec0f 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs @@ -406,7 +406,7 @@ public sealed partial class ExplosionSystem : SharedExplosionSystem if (player.AttachedEntity is not EntityUid uid) continue; - var playerPos = Transform(player.AttachedEntity!.Value).WorldPosition; + var playerPos = _transformSystem.GetWorldPosition(player.AttachedEntity!.Value); var delta = epicenter.Position - playerPos; if (delta.EqualsApprox(Vector2.Zero)) diff --git a/Content.Server/Explosion/EntitySystems/TwoStageTriggerSystem.cs b/Content.Server/Explosion/EntitySystems/TwoStageTriggerSystem.cs index 4e95eabff0..89950edf8c 100644 --- a/Content.Server/Explosion/EntitySystems/TwoStageTriggerSystem.cs +++ b/Content.Server/Explosion/EntitySystems/TwoStageTriggerSystem.cs @@ -30,13 +30,12 @@ public sealed class TwoStageTriggerSystem : EntitySystem { foreach (var (name, entry) in component.SecondStageComponents) { - var comp = (Component) _factory.GetComponent(name); - var temp = (object) comp; + var comp = (Component)_factory.GetComponent(name); + var temp = (object)comp; if (EntityManager.TryGetComponent(uid, entry.Component.GetType(), out var c)) RemComp(uid, c); - comp.Owner = uid; _serializationManager.CopyTo(entry.Component, ref temp); EntityManager.AddComponent(uid, comp); } diff --git a/Content.Server/GameTicking/Rules/Components/GenericAntagRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/GenericAntagRuleComponent.cs deleted file mode 100644 index 8d212ebaa3..0000000000 --- a/Content.Server/GameTicking/Rules/Components/GenericAntagRuleComponent.cs +++ /dev/null @@ -1,30 +0,0 @@ -using Content.Server.GameTicking.Rules; -using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; - -namespace Content.Server.GameTicking.Rules.Components; - -/// -/// Gamerule for simple antagonists that have fixed objectives. -/// -[RegisterComponent, Access(typeof(GenericAntagRuleSystem))] -public sealed partial class GenericAntagRuleComponent : Component -{ - /// - /// All antag minds that are using this rule. - /// - [DataField] - public List Minds = new(); - - /// - /// Locale id for the name of the antag used by the roundend summary. - /// - [DataField(required: true), ViewVariables(VVAccess.ReadWrite)] - public string AgentName = string.Empty; - - /// - /// List of objective entity prototypes to add to the antag when a mind is added. - /// - [DataField(required: true)] - public List Objectives = new(); -} diff --git a/Content.Server/GameTicking/Rules/GenericAntagRuleSystem.cs b/Content.Server/GameTicking/Rules/GenericAntagRuleSystem.cs deleted file mode 100644 index 0367aa1460..0000000000 --- a/Content.Server/GameTicking/Rules/GenericAntagRuleSystem.cs +++ /dev/null @@ -1,56 +0,0 @@ -using Content.Server.GameTicking.Rules.Components; -using Content.Server.Objectives; -using Content.Shared.Mind; -using System.Diagnostics.CodeAnalysis; -using System.Linq; - -namespace Content.Server.GameTicking.Rules; - -/// -/// Handles round end text for simple antags. -/// Adding objectives is handled in its own system. -/// -public sealed class GenericAntagRuleSystem : GameRuleSystem -{ - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnObjectivesTextGetInfo); - } - - /// - /// Start a simple antag's game rule. - /// If it is invalid the rule is deleted and null is returned. - /// - public bool StartRule(string rule, EntityUid mindId, [NotNullWhen(true)] out EntityUid? ruleId, [NotNullWhen(true)] out GenericAntagRuleComponent? comp) - { - ruleId = GameTicker.AddGameRule(rule); - if (!TryComp(ruleId, out comp)) - { - Log.Error($"Simple antag rule prototype {rule} is invalid, deleting it."); - Del(ruleId); - ruleId = null; - return false; - } - - if (!GameTicker.StartGameRule(ruleId.Value)) - { - Log.Error($"Simple antag rule prototype {rule} failed to start, deleting it."); - Del(ruleId); - ruleId = null; - comp = null; - return false; - } - - comp.Minds.Add(mindId); - return true; - } - - private void OnObjectivesTextGetInfo(EntityUid uid, GenericAntagRuleComponent comp, ref ObjectivesTextGetInfoEvent args) - { - // just temporary until this is deleted - args.Minds = comp.Minds.Select(mindId => (mindId, Comp(mindId).CharacterName ?? "?")).ToList(); - args.AgentName = Loc.GetString(comp.AgentName); - } -} diff --git a/Content.Server/GenericAntag/GenericAntagComponent.cs b/Content.Server/GenericAntag/GenericAntagComponent.cs deleted file mode 100644 index b8ed9cf6ef..0000000000 --- a/Content.Server/GenericAntag/GenericAntagComponent.cs +++ /dev/null @@ -1,30 +0,0 @@ -using Content.Server.GameTicking.Rules.Components; -using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; - -namespace Content.Server.GenericAntag; - -/// -/// Added to a mob to make it a generic antagonist where all its objectives are fixed. -/// This is unlike say traitor where it gets objectives picked randomly using difficulty. -/// -/// -/// A GenericAntag is not necessarily an antagonist, that depends on the roles you do or do not add after. -/// -[RegisterComponent, Access(typeof(GenericAntagSystem))] -public sealed partial class GenericAntagComponent : Component -{ - /// - /// Gamerule to start when a mind is added. - /// This must have or it will not work. - /// - [DataField(required: true), ViewVariables(VVAccess.ReadWrite)] - public EntProtoId Rule = string.Empty; - - /// - /// The rule that's been spawned. - /// Used to prevent spawning multiple rules. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public EntityUid? RuleEntity; -} diff --git a/Content.Server/GenericAntag/GenericAntagSystem.cs b/Content.Server/GenericAntag/GenericAntagSystem.cs deleted file mode 100644 index 6b1774159c..0000000000 --- a/Content.Server/GenericAntag/GenericAntagSystem.cs +++ /dev/null @@ -1,67 +0,0 @@ -using Content.Server.GameTicking.Rules; -using Content.Shared.Mind; -using Content.Shared.Mind.Components; - -namespace Content.Server.GenericAntag; - -/// -/// Handles adding objectives to s. -/// Roundend summary is handled by . -/// -public sealed class GenericAntagSystem : EntitySystem -{ - [Dependency] private readonly SharedMindSystem _mind = default!; - [Dependency] private readonly GenericAntagRuleSystem _genericAntagRule = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnMindAdded); - } - - private void OnMindAdded(EntityUid uid, GenericAntagComponent comp, MindAddedMessage args) - { - if (!TryComp(uid, out var mindContainer) || mindContainer.Mind == null) - return; - - var mindId = mindContainer.Mind.Value; - MakeAntag(uid, mindId, comp); - } - - /// - /// Turns a player into this antagonist. - /// Does the same thing that having a mind added does, use for antag ctrl. - /// - public void MakeAntag(EntityUid uid, EntityUid mindId, GenericAntagComponent? comp = null, MindComponent? mind = null) - { - if (!Resolve(uid, ref comp) || !Resolve(mindId, ref mind)) - return; - - // only add the rule once - if (comp.RuleEntity != null) - return; - - // start the rule - if (!_genericAntagRule.StartRule(comp.Rule, mindId, out comp.RuleEntity, out var rule)) - return; - - // let other systems know the antag was created so they can add briefing, roles, etc. - // its important that this is before objectives are added since they may depend on roles added here - var ev = new GenericAntagCreatedEvent(mindId, mind); - RaiseLocalEvent(uid, ref ev); - - // add the objectives from the rule - foreach (var id in rule.Objectives) - { - _mind.TryAddObjective(mindId, mind, id); - } - } -} - -/// -/// Event raised on a player's entity after its simple antag rule is started. -/// Use this to add a briefing, roles, etc. -/// -[ByRefEvent] -public record struct GenericAntagCreatedEvent(EntityUid MindId, MindComponent Mind); diff --git a/Content.Server/Hands/Systems/HandsSystem.cs b/Content.Server/Hands/Systems/HandsSystem.cs index 12c2a396de..903fd1ff3f 100644 --- a/Content.Server/Hands/Systems/HandsSystem.cs +++ b/Content.Server/Hands/Systems/HandsSystem.cs @@ -201,7 +201,7 @@ namespace Content.Server.Hands.Systems throwEnt = splitStack.Value; } - var direction = coordinates.ToMapPos(EntityManager, _transformSystem) - Transform(player).WorldPosition; + var direction = _transformSystem.ToMapCoordinates(coordinates).Position - _transformSystem.GetWorldPosition(player); if (direction == Vector2.Zero) return true; diff --git a/Content.Server/Humanoid/Systems/RandomHumanoidSystem.cs b/Content.Server/Humanoid/Systems/RandomHumanoidSystem.cs index 872df8eae8..fc0e47b033 100644 --- a/Content.Server/Humanoid/Systems/RandomHumanoidSystem.cs +++ b/Content.Server/Humanoid/Systems/RandomHumanoidSystem.cs @@ -50,8 +50,7 @@ public sealed class RandomHumanoidSystem : EntitySystem { foreach (var entry in prototype.Components.Values) { - var comp = (Component) _serialization.CreateCopy(entry.Component, notNullableOverride: true); - comp.Owner = humanoid; // This .owner must survive for now. + var comp = (Component)_serialization.CreateCopy(entry.Component, notNullableOverride: true); EntityManager.RemoveComponent(humanoid, comp.GetType()); EntityManager.AddComponent(humanoid, comp); } diff --git a/Content.Server/Jobs/AddComponentSpecial.cs b/Content.Server/Jobs/AddComponentSpecial.cs index c57d734354..6489068d1f 100644 --- a/Content.Server/Jobs/AddComponentSpecial.cs +++ b/Content.Server/Jobs/AddComponentSpecial.cs @@ -23,12 +23,11 @@ namespace Content.Server.Jobs foreach (var (name, data) in Components) { var component = (Component) factory.GetComponent(name); - component.Owner = mob; - var temp = (object) component; + var temp = (object)component; serializationManager.CopyTo(data.Component, ref temp); entityManager.RemoveComponent(mob, temp!.GetType()); - entityManager.AddComponent(mob, (Component) temp); + entityManager.AddComponent(mob, (Component)temp); } } } diff --git a/Content.Server/Maps/GridDraggingSystem.cs b/Content.Server/Maps/GridDraggingSystem.cs index 76b2e29dea..cf71e012f4 100644 --- a/Content.Server/Maps/GridDraggingSystem.cs +++ b/Content.Server/Maps/GridDraggingSystem.cs @@ -12,6 +12,7 @@ public sealed class GridDraggingSystem : SharedGridDraggingSystem { [Dependency] private readonly IConGroupController _admin = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; private readonly HashSet _draggers = new(); @@ -76,8 +77,6 @@ public sealed class GridDraggingSystem : SharedGridDraggingSystem return; } - var gridXform = Transform(grid); - - gridXform.WorldPosition = msg.WorldPosition; + _transformSystem.SetWorldPosition(grid, msg.WorldPosition); } } diff --git a/Content.Server/Mech/Equipment/EntitySystems/MechGrabberSystem.cs b/Content.Server/Mech/Equipment/EntitySystems/MechGrabberSystem.cs index c5c44056b9..aa28a8063c 100644 --- a/Content.Server/Mech/Equipment/EntitySystems/MechGrabberSystem.cs +++ b/Content.Server/Mech/Equipment/EntitySystems/MechGrabberSystem.cs @@ -1,4 +1,4 @@ -using System.Linq; +using System.Linq; using Content.Server.Interaction; using Content.Server.Mech.Equipment.Components; using Content.Server.Mech.Systems; @@ -85,7 +85,7 @@ public sealed class MechGrabberSystem : EntitySystem var (mechPos, mechRot) = _transform.GetWorldPositionRotation(mechxform); var offset = mechPos + mechRot.RotateVec(component.DepositOffset); - _transform.SetWorldPositionRotation(xform, offset, Angle.Zero); + _transform.SetWorldPositionRotation(toRemove, offset, Angle.Zero); _mech.UpdateUserInterface(mech); } diff --git a/Content.Server/Movement/StressTestMovementSystem.cs b/Content.Server/Movement/StressTestMovementSystem.cs index 81ea6840e3..51916204da 100644 --- a/Content.Server/Movement/StressTestMovementSystem.cs +++ b/Content.Server/Movement/StressTestMovementSystem.cs @@ -39,7 +39,7 @@ public sealed class StressTestMovementSystem : EntitySystem var x = MathF.Sin(stressTest.Progress * MathHelper.TwoPi); var y = MathF.Cos(stressTest.Progress * MathHelper.TwoPi); - _transform.SetWorldPosition(transform, stressTest.Origin + new Vector2(x, y) * 5); + _transform.SetWorldPosition((uid, transform), stressTest.Origin + new Vector2(x, y) * 5); } } } diff --git a/Content.Server/Pointing/EntitySystems/RoguePointingSystem.cs b/Content.Server/Pointing/EntitySystems/RoguePointingSystem.cs index be3ceb3b08..bdd652f38f 100644 --- a/Content.Server/Pointing/EntitySystems/RoguePointingSystem.cs +++ b/Content.Server/Pointing/EntitySystems/RoguePointingSystem.cs @@ -12,6 +12,7 @@ namespace Content.Server.Pointing.EntitySystems [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ExplosionSystem _explosion = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; private EntityUid? RandomNearbyPlayer(EntityUid uid, RoguePointingArrowComponent? component = null, TransformComponent? transform = null) { @@ -66,27 +67,28 @@ namespace Content.Server.Pointing.EntitySystems } component.TurningDelay -= frameTime; + var (transformPos, transformRot) = _transformSystem.GetWorldPositionRotation(transform); if (component.TurningDelay > 0) { - var difference = Comp(chasing).WorldPosition - transform.WorldPosition; + var difference = _transformSystem.GetWorldPosition(chasing) - transformPos; var angle = difference.ToAngle(); var adjusted = angle.Degrees + 90; var newAngle = Angle.FromDegrees(adjusted); - transform.WorldRotation = newAngle; + _transformSystem.SetWorldRotation(transform, newAngle); UpdateAppearance(uid, component, transform); continue; } - transform.WorldRotation += Angle.FromDegrees(20); + _transformSystem.SetWorldRotation(transform, transformRot + Angle.FromDegrees(20)); UpdateAppearance(uid, component, transform); - var toChased = Comp(chasing).WorldPosition - transform.WorldPosition; + var toChased = _transformSystem.GetWorldPosition(chasing) - transformPos; - transform.WorldPosition += toChased * frameTime * component.ChasingSpeed; + _transformSystem.SetWorldPosition((uid, transform), transformPos + (toChased * frameTime * component.ChasingSpeed)); component.ChasingTime -= frameTime; diff --git a/Content.Server/Respawn/SpecialRespawnSystem.cs b/Content.Server/Respawn/SpecialRespawnSystem.cs index bdaa4a40bc..cbda98f263 100644 --- a/Content.Server/Respawn/SpecialRespawnSystem.cs +++ b/Content.Server/Respawn/SpecialRespawnSystem.cs @@ -1,4 +1,4 @@ -using Content.Server.Administration.Logs; +using Content.Server.Administration.Logs; using Content.Server.Atmos.EntitySystems; using Content.Server.Chat.Managers; using Content.Server.GameTicking; @@ -157,7 +157,7 @@ public sealed class SpecialRespawnSystem : SharedSpecialRespawnSystem var tile = tileRef.GridIndices; var found = false; - var (gridPos, _, gridMatrix) = xform.GetWorldPositionRotationMatrix(); + var (gridPos, _, gridMatrix) = _transform.GetWorldPositionRotationMatrix(xform); var gridBounds = gridMatrix.TransformBox(grid.LocalAABB); //Obviously don't put anything ridiculous in here diff --git a/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs b/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs index c889d59f15..f972865509 100644 --- a/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs +++ b/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs @@ -42,6 +42,7 @@ public sealed partial class RevenantSystem [Dependency] private readonly GhostSystem _ghost = default!; [Dependency] private readonly TileSystem _tile = default!; [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; private void InitializeAbilities() { @@ -227,7 +228,7 @@ public sealed partial class RevenantSystem var xform = Transform(uid); if (!TryComp(xform.GridUid, out var map)) return; - var tiles = map.GetTilesIntersecting(Box2.CenteredAround(xform.WorldPosition, + var tiles = map.GetTilesIntersecting(Box2.CenteredAround(_transformSystem.GetWorldPosition(xform), new Vector2(component.DefileRadius * 2, component.DefileRadius))).ToArray(); _random.Shuffle(tiles); diff --git a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs index 7a19fd13b2..00a913aad8 100644 --- a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs +++ b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs @@ -71,6 +71,7 @@ public sealed partial class ShuttleConsoleSystem : SharedShuttleConsoleSystem SubscribeLocalEvent(OnUndock); SubscribeLocalEvent(OnGetState); + SubscribeLocalEvent(OnStopPilotingAlert); SubscribeLocalEvent(OnFtlDestStartup); SubscribeLocalEvent(OnFtlDestShutdown); @@ -196,6 +197,14 @@ public sealed partial class ShuttleConsoleSystem : SharedShuttleConsoleSystem args.State = new PilotComponentState(GetNetEntity(component.Console)); } + private void OnStopPilotingAlert(Entity ent, ref StopPilotingAlertEvent args) + { + if (ent.Comp.Console != null) + { + RemovePilot(ent, ent); + } + } + /// /// Returns the position and angle of all dockingcomponents. /// diff --git a/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs b/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs index e575b0403b..ca32beb8db 100644 --- a/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs +++ b/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs @@ -22,6 +22,7 @@ public sealed class ContainmentFieldGeneratorSystem : EntitySystem [Dependency] private readonly PhysicsSystem _physics = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly SharedPointLightSystem _light = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; [Dependency] private readonly TagSystem _tags = default!; public override void Initialize() @@ -116,7 +117,7 @@ public sealed class ContainmentFieldGeneratorSystem : EntitySystem private void OnUnanchorAttempt(EntityUid uid, ContainmentFieldGeneratorComponent component, UnanchorAttemptEvent args) { - if (component.Enabled) + if (component.Enabled || component.IsConnected) { _popupSystem.PopupEntity(Loc.GetString("comp-containment-anchor-warning"), args.User, args.User, PopupType.LargeCaution); args.Cancel(); @@ -234,7 +235,7 @@ public sealed class ContainmentFieldGeneratorSystem : EntitySystem if (!gen1XForm.Anchored) return false; - var genWorldPosRot = gen1XForm.GetWorldPositionRotation(); + var genWorldPosRot = _transformSystem.GetWorldPositionRotation(gen1XForm); var dirRad = dir.ToAngle() + genWorldPosRot.WorldRotation; //needs to be like this for the raycast to work properly var ray = new CollisionRay(genWorldPosRot.WorldPosition, dirRad.ToVec(), component.CollisionMask); diff --git a/Content.Server/Singularity/EntitySystems/ContainmentFieldSystem.cs b/Content.Server/Singularity/EntitySystems/ContainmentFieldSystem.cs index 0af4954519..d3a32f5006 100644 --- a/Content.Server/Singularity/EntitySystems/ContainmentFieldSystem.cs +++ b/Content.Server/Singularity/EntitySystems/ContainmentFieldSystem.cs @@ -1,4 +1,4 @@ -using Content.Server.Popups; +using Content.Server.Popups; using Content.Server.Shuttles.Components; using Content.Server.Singularity.Events; using Content.Shared.Popups; @@ -13,6 +13,7 @@ public sealed class ContainmentFieldSystem : EntitySystem { [Dependency] private readonly ThrowingSystem _throwing = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; public override void Initialize() { @@ -34,8 +35,8 @@ public sealed class ContainmentFieldSystem : EntitySystem if (TryComp(otherBody, out var physics) && physics.Mass <= component.MaxMass && physics.Hard) { - var fieldDir = Transform(uid).WorldPosition; - var playerDir = Transform(otherBody).WorldPosition; + var fieldDir = _transformSystem.GetWorldPosition(uid); + var playerDir = _transformSystem.GetWorldPosition(otherBody); _throwing.TryThrow(otherBody, playerDir-fieldDir, baseThrowSpeed: component.ThrowForce); } diff --git a/Content.Server/Singularity/EntitySystems/RadiationCollectorSystem.cs b/Content.Server/Singularity/EntitySystems/RadiationCollectorSystem.cs index 9107ff2e32..c262988c86 100644 --- a/Content.Server/Singularity/EntitySystems/RadiationCollectorSystem.cs +++ b/Content.Server/Singularity/EntitySystems/RadiationCollectorSystem.cs @@ -137,13 +137,22 @@ public sealed class RadiationCollectorSystem : EntitySystem private void OnExamined(EntityUid uid, RadiationCollectorComponent component, ExaminedEvent args) { - if (!TryGetLoadedGasTank(uid, out var gasTank)) + using (args.PushGroup(nameof(RadiationCollectorComponent))) { - args.PushMarkup(Loc.GetString("power-radiation-collector-gas-tank-missing")); - return; - } + args.PushMarkup(Loc.GetString("power-radiation-collector-enabled", ("state", component.Enabled))); - args.PushMarkup(Loc.GetString("power-radiation-collector-gas-tank-present")); + if (!TryGetLoadedGasTank(uid, out var gasTank)) + { + args.PushMarkup(Loc.GetString("power-radiation-collector-gas-tank-missing")); + } + else + { + _appearance.TryGetData(uid, RadiationCollectorVisuals.PressureState, out var state); + + args.PushMarkup(Loc.GetString("power-radiation-collector-gas-tank-present", + ("fullness", state))); + } + } } private void OnAnalyzed(EntityUid uid, RadiationCollectorComponent component, GasAnalyzerScanEvent args) diff --git a/Content.Server/Solar/EntitySystems/PowerSolarSystem.cs b/Content.Server/Solar/EntitySystems/PowerSolarSystem.cs index 6a8fc68d97..4f1cdb0eb0 100644 --- a/Content.Server/Solar/EntitySystems/PowerSolarSystem.cs +++ b/Content.Server/Solar/EntitySystems/PowerSolarSystem.cs @@ -18,6 +18,7 @@ namespace Content.Server.Solar.EntitySystems { [Dependency] private readonly IRobustRandom _robustRandom = default!; [Dependency] private readonly SharedPhysicsSystem _physicsSystem = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; /// /// Maximum panel angular velocity range - used to stop people rotating panels fast enough that the lag prevention becomes noticable @@ -112,7 +113,7 @@ namespace Content.Server.Solar.EntitySystems while (query.MoveNext(out var uid, out var panel, out var xform)) { TotalPanelPower += panel.MaxSupply * panel.Coverage; - xform.WorldRotation = TargetPanelRotation; + _transformSystem.SetWorldRotation(xform, TargetPanelRotation); _updateQueue.Enqueue((uid, panel)); } } @@ -135,7 +136,7 @@ namespace Content.Server.Solar.EntitySystems // directly downwards (abs(theta) = pi) = coverage -1 // as TowardsSun + = CCW, // panelRelativeToSun should - = CW - var panelRelativeToSun = xform.WorldRotation - TowardsSun; + var panelRelativeToSun = _transformSystem.GetWorldRotation(xform) - TowardsSun; // essentially, given cos = X & sin = Y & Y is 'downwards', // then for the first 90 degrees of rotation in either direction, // this plots the lower-right quadrant of a circle. @@ -153,7 +154,7 @@ namespace Content.Server.Solar.EntitySystems if (coverage > 0) { // Determine if the solar panel is occluded, and zero out coverage if so. - var ray = new CollisionRay(xform.WorldPosition, TowardsSun.ToWorldVec(), (int) CollisionGroup.Opaque); + var ray = new CollisionRay(_transformSystem.GetWorldPosition(xform), TowardsSun.ToWorldVec(), (int) CollisionGroup.Opaque); var rayCastResults = _physicsSystem.IntersectRayWithPredicate( xform.MapID, ray, diff --git a/Content.Server/Speech/AccentSystem.cs b/Content.Server/Speech/AccentSystem.cs index 13f174c01e..7e29f02cae 100644 --- a/Content.Server/Speech/AccentSystem.cs +++ b/Content.Server/Speech/AccentSystem.cs @@ -6,7 +6,7 @@ namespace Content.Server.Speech { public sealed class AccentSystem : EntitySystem { - public static readonly Regex SentenceRegex = new(@"(?<=[\.!\?])", RegexOptions.Compiled); + public static readonly Regex SentenceRegex = new(@"(?<=[\.!\?‽])(?![\.!\?‽])", RegexOptions.Compiled); public override void Initialize() { diff --git a/Content.Server/Speech/Components/FrenchAccentComponent.cs b/Content.Server/Speech/Components/FrenchAccentComponent.cs index f696c35ea0..dfe584e267 100644 --- a/Content.Server/Speech/Components/FrenchAccentComponent.cs +++ b/Content.Server/Speech/Components/FrenchAccentComponent.cs @@ -7,5 +7,4 @@ namespace Content.Server.Speech.Components; /// [RegisterComponent] [Access(typeof(FrenchAccentSystem))] -public sealed partial class FrenchAccentComponent : Component -{ } +public sealed partial class FrenchAccentComponent : Component {} diff --git a/Content.Server/Speech/Components/SpanishAccentComponent.cs b/Content.Server/Speech/Components/SpanishAccentComponent.cs index 16a2d188b6..b2eeddc0db 100644 --- a/Content.Server/Speech/Components/SpanishAccentComponent.cs +++ b/Content.Server/Speech/Components/SpanishAccentComponent.cs @@ -1,7 +1,4 @@ -namespace Content.Server.Speech.Components -{ - [RegisterComponent] - public sealed partial class SpanishAccentComponent : Component - { - } -} +namespace Content.Server.Speech.Components; + +[RegisterComponent] +public sealed partial class SpanishAccentComponent : Component {} diff --git a/Content.Server/Speech/EntitySystems/FrenchAccentSystem.cs b/Content.Server/Speech/EntitySystems/FrenchAccentSystem.cs index f6d259c115..d71655569c 100644 --- a/Content.Server/Speech/EntitySystems/FrenchAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/FrenchAccentSystem.cs @@ -27,10 +27,10 @@ public sealed class FrenchAccentSystem : EntitySystem msg = _replacement.ApplyReplacements(msg, "french"); - // replaces th with dz + // replaces th with z msg = RegexTh.Replace(msg, "'z"); - // removes the letter h from the start of words. + // replaces h with ' at the start of words. msg = RegexStartH.Replace(msg, "'"); // spaces out ! ? : and ;. diff --git a/Content.Server/Speech/EntitySystems/SpanishAccentSystem.cs b/Content.Server/Speech/EntitySystems/SpanishAccentSystem.cs index c8ac24a450..08642014c9 100644 --- a/Content.Server/Speech/EntitySystems/SpanishAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/SpanishAccentSystem.cs @@ -1,3 +1,4 @@ +using System.Text; using Content.Server.Speech.Components; namespace Content.Server.Speech.EntitySystems @@ -14,7 +15,7 @@ namespace Content.Server.Speech.EntitySystems // Insert E before every S message = InsertS(message); // If a sentence ends with ?, insert a reverse ? at the beginning of the sentence - message = ReplaceQuestionMark(message); + message = ReplacePunctuation(message); return message; } @@ -36,24 +37,32 @@ namespace Content.Server.Speech.EntitySystems return msg; } - private string ReplaceQuestionMark(string message) + private string ReplacePunctuation(string message) { var sentences = AccentSystem.SentenceRegex.Split(message); - var msg = ""; + var msg = new StringBuilder(); foreach (var s in sentences) { - if (s.EndsWith("?", StringComparison.Ordinal)) // We've got a question => add ¿ to the beginning + var toInsert = new StringBuilder(); + for (var i = s.Length - 1; i >= 0 && "?!‽".Contains(s[i]); i--) { - // Because we don't split by whitespace, we may have some spaces in front of the sentence. - // So we add the symbol before the first non space char - msg += s.Insert(s.Length - s.TrimStart().Length, "¿"); + toInsert.Append(s[i] switch + { + '?' => '¿', + '!' => '¡', + '‽' => '⸘', + _ => ' ' + }); } - else + if (toInsert.Length == 0) { - msg += s; + msg.Append(s); + } else + { + msg.Append(s.Insert(s.Length - s.TrimStart().Length, toInsert.ToString())); } } - return msg; + return msg.ToString(); } private void OnAccent(EntityUid uid, SpanishAccentComponent component, AccentGetEvent args) diff --git a/Content.Server/Worldgen/Prototypes/BiomePrototype.cs b/Content.Server/Worldgen/Prototypes/BiomePrototype.cs index db1b5e2a16..1cecf87a5e 100644 --- a/Content.Server/Worldgen/Prototypes/BiomePrototype.cs +++ b/Content.Server/Worldgen/Prototypes/BiomePrototype.cs @@ -54,7 +54,6 @@ public sealed partial class BiomePrototype : IPrototype, IInheritingPrototype foreach (var data in ChunkComponents.Values) { var comp = (Component) serialization.CreateCopy(data.Component, notNullableOverride: true); - comp.Owner = target; // look im sorry ok this .owner has to live until engine api exists entityManager.AddComponent(target, comp); } } diff --git a/Content.Server/Worldgen/Prototypes/WorldgenConfigPrototype.cs b/Content.Server/Worldgen/Prototypes/WorldgenConfigPrototype.cs index 49e9e1ed9d..f669377abb 100644 --- a/Content.Server/Worldgen/Prototypes/WorldgenConfigPrototype.cs +++ b/Content.Server/Worldgen/Prototypes/WorldgenConfigPrototype.cs @@ -30,7 +30,6 @@ public sealed partial class WorldgenConfigPrototype : IPrototype foreach (var data in Components.Values) { var comp = (Component) serialization.CreateCopy(data.Component, notNullableOverride: true); - comp.Owner = target; // look im sorry ok this .owner has to live until engine api exists entityManager.AddComponent(target, comp); } } diff --git a/Content.Server/Worldgen/Systems/BaseWorldSystem.cs b/Content.Server/Worldgen/Systems/BaseWorldSystem.cs index 78326651c9..7a9e74375c 100644 --- a/Content.Server/Worldgen/Systems/BaseWorldSystem.cs +++ b/Content.Server/Worldgen/Systems/BaseWorldSystem.cs @@ -1,4 +1,4 @@ -using System.Numerics; +using System.Numerics; using Content.Server.Worldgen.Components; using JetBrains.Annotations; @@ -12,6 +12,7 @@ namespace Content.Server.Worldgen.Systems; public abstract class BaseWorldSystem : EntitySystem { [Dependency] private readonly WorldControllerSystem _worldController = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; /// /// Gets a chunk's coordinates in chunk space as an integer value. @@ -25,7 +26,7 @@ public abstract class BaseWorldSystem : EntitySystem if (!Resolve(ent, ref xform)) throw new Exception("Failed to resolve transform, somehow."); - return WorldGen.WorldToChunkCoords(xform.WorldPosition).Floored(); + return WorldGen.WorldToChunkCoords(_transformSystem.GetWorldPosition(xform)).Floored(); } /// @@ -40,7 +41,7 @@ public abstract class BaseWorldSystem : EntitySystem if (!Resolve(ent, ref xform)) throw new Exception("Failed to resolve transform, somehow."); - return WorldGen.WorldToChunkCoords(xform.WorldPosition); + return WorldGen.WorldToChunkCoords(_transformSystem.GetWorldPosition(xform)); } /// diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs index 65aaabdf0e..a0e8420011 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs @@ -182,13 +182,12 @@ public sealed partial class ArtifactSystem EntityManager.RemoveComponent(uid, reg.Type); } - var comp = (Component) _componentFactory.GetComponent(reg); - comp.Owner = uid; + var comp = (Component)_componentFactory.GetComponent(reg); - var temp = (object) comp; + var temp = (object)comp; _serialization.CopyTo(entry.Component, ref temp); EntityManager.RemoveComponent(uid, temp!.GetType()); - EntityManager.AddComponent(uid, (Component) temp!); + EntityManager.AddComponent(uid, (Component)temp!); } node.Discovered = true; @@ -218,12 +217,11 @@ public sealed partial class ArtifactSystem // if the entity prototype contained the component originally if (entityPrototype?.Components.TryGetComponent(name, out var entry) ?? false) { - var comp = (Component) _componentFactory.GetComponent(name); - comp.Owner = uid; - var temp = (object) comp; + var comp = (Component)_componentFactory.GetComponent(name); + var temp = (object)comp; _serialization.CopyTo(entry, ref temp); EntityManager.RemoveComponent(uid, temp!.GetType()); - EntityManager.AddComponent(uid, (Component) temp); + EntityManager.AddComponent(uid, (Component)temp); continue; } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/ThrowArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/ThrowArtifactSystem.cs index 8708e0ff4e..0591222996 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/ThrowArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/ThrowArtifactSystem.cs @@ -1,4 +1,4 @@ -using System.Numerics; +using System.Numerics; using Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; using Content.Server.Xenoarchaeology.XenoArtifacts.Events; using Content.Shared.Maps; @@ -31,7 +31,7 @@ public sealed class ThrowArtifactSystem : EntitySystem if (TryComp(xform.GridUid, out var grid)) { var tiles = grid.GetTilesIntersecting( - Box2.CenteredAround(xform.WorldPosition, new Vector2(component.Range * 2, component.Range))); + Box2.CenteredAround(_transform.GetWorldPosition(xform), new Vector2(component.Range * 2, component.Range))); foreach (var tile in tiles) { diff --git a/Content.Shared.Database/LogType.cs b/Content.Shared.Database/LogType.cs index eb2b8e1f6f..85cac5899d 100644 --- a/Content.Shared.Database/LogType.cs +++ b/Content.Shared.Database/LogType.cs @@ -110,4 +110,9 @@ public enum LogType /// A player did an item-use interaction of an item they were holding onto another object. /// InteractUsing = 92, + + /// + /// Storage & entity-storage related interactions + /// + Storage = 93, } diff --git a/Content.Shared/Abilities/Mime/MimePowers.cs b/Content.Shared/Abilities/Mime/MimePowers.cs new file mode 100644 index 0000000000..969d7a1395 --- /dev/null +++ b/Content.Shared/Abilities/Mime/MimePowers.cs @@ -0,0 +1,7 @@ +using Content.Shared.Alert; + +namespace Content.Shared.Abilities.Mime; + +public sealed partial class BreakVowAlertEvent : BaseAlertEvent; + +public sealed partial class RetakeVowAlertEvent : BaseAlertEvent; diff --git a/Content.Shared/Alert/AlertPrototype.cs b/Content.Shared/Alert/AlertPrototype.cs index f53da27c0d..a82cbd3daf 100644 --- a/Content.Shared/Alert/AlertPrototype.cs +++ b/Content.Shared/Alert/AlertPrototype.cs @@ -76,11 +76,11 @@ public sealed partial class AlertPrototype : IPrototype public bool SupportsSeverity => MaxSeverity != -1; /// - /// Defines what to do when the alert is clicked. - /// This will always be null on clientside. + /// Event raised on the user when they click on this alert. + /// Can be null. /// - [DataField(serverOnly: true)] - public IAlertClick? OnClick { get; private set; } + [DataField] + public BaseAlertEvent? ClickEvent; /// severity level, if supported by this alert /// the icon path to the texture for the provided severity level @@ -114,3 +114,17 @@ public sealed partial class AlertPrototype : IPrototype return Icons[severity.Value - _minSeverity]; } } + +[ImplicitDataDefinitionForInheritors] +public abstract partial class BaseAlertEvent : HandledEntityEventArgs +{ + public EntityUid User; + + public ProtoId AlertId; + + protected BaseAlertEvent(EntityUid user, ProtoId alertId) + { + User = user; + AlertId = alertId; + } +} diff --git a/Content.Shared/Alert/AlertsSystem.cs b/Content.Shared/Alert/AlertsSystem.cs index 83c6fcd0dd..c8f2a8e6bc 100644 --- a/Content.Shared/Alert/AlertsSystem.cs +++ b/Content.Shared/Alert/AlertsSystem.cs @@ -195,7 +195,7 @@ public abstract class AlertsSystem : EntitySystem SubscribeLocalEvent(OnAutoRemoveUnPaused); - SubscribeNetworkEvent(HandleClickAlert); + SubscribeAllEvent(HandleClickAlert); SubscribeLocalEvent(HandlePrototypesReloaded); LoadPrototypes(); } @@ -328,7 +328,20 @@ public abstract class AlertsSystem : EntitySystem return; } - alert.OnClick?.AlertClicked(player.Value); + ActivateAlert(player.Value, alert); + } + + public bool ActivateAlert(EntityUid user, AlertPrototype alert) + { + if (alert.ClickEvent is not { } clickEvent) + return false; + + clickEvent.Handled = false; + clickEvent.User = user; + clickEvent.AlertId = alert.ID; + + RaiseLocalEvent(user, (object) clickEvent, true); + return clickEvent.Handled; } private void OnPlayerAttached(EntityUid uid, AlertsComponent component, PlayerAttachedEvent args) diff --git a/Content.Shared/Alert/IAlertClick.cs b/Content.Shared/Alert/IAlertClick.cs deleted file mode 100644 index c11fc10c0d..0000000000 --- a/Content.Shared/Alert/IAlertClick.cs +++ /dev/null @@ -1,14 +0,0 @@ -namespace Content.Shared.Alert -{ - /// - /// Defines what should happen when an alert is clicked. - /// - public interface IAlertClick - { - /// - /// Invoked on server side when user clicks an alert. - /// - /// - void AlertClicked(EntityUid player); - } -} diff --git a/Content.Shared/Atmos/Components/ExtinguishOnInteractComponent.cs b/Content.Shared/Atmos/Components/ExtinguishOnInteractComponent.cs index 02c1e3eb26..cd3ecdd1c4 100644 --- a/Content.Shared/Atmos/Components/ExtinguishOnInteractComponent.cs +++ b/Content.Shared/Atmos/Components/ExtinguishOnInteractComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Alert; using Robust.Shared.Audio; namespace Content.Shared.Atmos.Components; @@ -27,3 +28,5 @@ public sealed partial class ExtinguishOnInteractComponent : Component [DataField] public LocId ExtinguishFailed = "candle-extinguish-failed"; } + +public sealed partial class ResistFireAlertEvent : BaseAlertEvent; diff --git a/Content.Shared/Atmos/Components/GasMinerComponent.cs b/Content.Shared/Atmos/Components/GasMinerComponent.cs new file mode 100644 index 0000000000..43f3032770 --- /dev/null +++ b/Content.Shared/Atmos/Components/GasMinerComponent.cs @@ -0,0 +1,60 @@ +using Robust.Shared.Serialization; +using Robust.Shared.GameStates; + +namespace Content.Shared.Atmos.Components; + +[NetworkedComponent] +[AutoGenerateComponentState] +[RegisterComponent] +public sealed partial class GasMinerComponent : Component +{ + /// + /// Operational state of the miner. + /// + [AutoNetworkedField] + [ViewVariables(VVAccess.ReadOnly)] + public GasMinerState MinerState = GasMinerState.Disabled; + + /// + /// If the number of moles in the external environment exceeds this number, no gas will be mined. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField] + public float MaxExternalAmount = float.PositiveInfinity; + + /// + /// If the pressure (in kPA) of the external environment exceeds this number, no gas will be mined. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField] + public float MaxExternalPressure = Atmospherics.GasMinerDefaultMaxExternalPressure; + + /// + /// Gas to spawn. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField(required: true)] + public Gas SpawnGas; + + /// + /// Temperature in Kelvin. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField] + public float SpawnTemperature = Atmospherics.T20C; + + /// + /// Number of moles created per second when the miner is working. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField] + public float SpawnAmount = Atmospherics.MolesCellStandard * 20f; +} + +[Serializable, NetSerializable] +public enum GasMinerState : byte +{ + Disabled, + Idle, + Working, +} diff --git a/Content.Shared/Atmos/EntitySystems/SharedGasMinerSystem.cs b/Content.Shared/Atmos/EntitySystems/SharedGasMinerSystem.cs new file mode 100644 index 0000000000..957ff6fde4 --- /dev/null +++ b/Content.Shared/Atmos/EntitySystems/SharedGasMinerSystem.cs @@ -0,0 +1,55 @@ +using Content.Shared.Atmos.Components; +using Content.Shared.Examine; +using Content.Shared.Temperature; + +namespace Content.Shared.Atmos.EntitySystems; + +public abstract class SharedGasMinerSystem : EntitySystem +{ + [Dependency] private readonly SharedAtmosphereSystem _sharedAtmosphereSystem = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnExamine); + } + + private void OnExamine(Entity ent, ref ExaminedEvent args) + { + var component = ent.Comp; + + using (args.PushGroup(nameof(GasMinerComponent))) + { + args.PushMarkup(Loc.GetString("gas-miner-mines-text", + ("gas", Loc.GetString(_sharedAtmosphereSystem.GetGas(component.SpawnGas).Name)))); + + args.PushText(Loc.GetString("gas-miner-amount-text", + ("moles", $"{component.SpawnAmount:0.#}"))); + + args.PushText(Loc.GetString("gas-miner-temperature-text", + ("tempK", $"{component.SpawnTemperature:0.#}"), + ("tempC", $"{TemperatureHelpers.KelvinToCelsius(component.SpawnTemperature):0.#}"))); + + if (component.MaxExternalAmount < float.PositiveInfinity) + { + args.PushText(Loc.GetString("gas-miner-moles-cutoff-text", + ("moles", $"{component.MaxExternalAmount:0.#}"))); + } + + if (component.MaxExternalPressure < float.PositiveInfinity) + { + args.PushText(Loc.GetString("gas-miner-pressure-cutoff-text", + ("pressure", $"{component.MaxExternalPressure:0.#}"))); + } + + args.AddMarkup(component.MinerState switch + { + GasMinerState.Disabled => Loc.GetString("gas-miner-state-disabled-text"), + GasMinerState.Idle => Loc.GetString("gas-miner-state-idle-text"), + GasMinerState.Working => Loc.GetString("gas-miner-state-working-text"), + // C# pattern matching is not exhaustive for enums + _ => throw new IndexOutOfRangeException(nameof(component.MinerState)), + }); + } + } +} diff --git a/Content.Shared/Bed/Cryostorage/CanEnterCryostorageComponent.cs b/Content.Shared/Bed/Cryostorage/CanEnterCryostorageComponent.cs new file mode 100644 index 0000000000..2e5b200055 --- /dev/null +++ b/Content.Shared/Bed/Cryostorage/CanEnterCryostorageComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Bed.Cryostorage; + +/// +/// Serves as a whitelist that allows an entity with this component to enter cryostorage. +/// It will also require MindContainerComponent. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class CanEnterCryostorageComponent : Component { } diff --git a/Content.Shared/Bed/Cryostorage/SharedCryostorageSystem.cs b/Content.Shared/Bed/Cryostorage/SharedCryostorageSystem.cs index c3fa21e293..f6b7a34785 100644 --- a/Content.Shared/Bed/Cryostorage/SharedCryostorageSystem.cs +++ b/Content.Shared/Bed/Cryostorage/SharedCryostorageSystem.cs @@ -89,7 +89,7 @@ public abstract class SharedCryostorageSystem : EntitySystem return; } - if (!TryComp(args.EntityUid, out var mindContainer)) + if (!HasComp(args.EntityUid) || !TryComp(args.EntityUid, out var mindContainer)) { args.Cancel(); return; diff --git a/Content.Shared/Buckle/Components/BuckleComponent.cs b/Content.Shared/Buckle/Components/BuckleComponent.cs index ee86e6d4de..c4810e8af0 100644 --- a/Content.Shared/Buckle/Components/BuckleComponent.cs +++ b/Content.Shared/Buckle/Components/BuckleComponent.cs @@ -1,4 +1,5 @@ using System.Diagnostics.CodeAnalysis; +using Content.Shared.Alert; using Content.Shared.Interaction; using Robust.Shared.GameStates; using Robust.Shared.Serialization; @@ -79,6 +80,7 @@ public sealed class BuckleState(NetEntity? buckledTo, bool dontCollide, TimeSpan public readonly TimeSpan? BuckleTime = buckleTime; } +public sealed partial class UnbuckleAlertEvent : BaseAlertEvent; /// /// Event raised directed at a strap entity before some entity gets buckled to it. diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs index 0fbfd51d69..4f91a29ebe 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs @@ -41,6 +41,7 @@ public abstract partial class SharedBuckleSystem SubscribeLocalEvent(OnPullAttempt); SubscribeLocalEvent(OnBeingPulledAttempt); SubscribeLocalEvent(OnPullStarted); + SubscribeLocalEvent(OnUnbuckleAlert); SubscribeLocalEvent(OnBuckleInsertIntoEntityStorageAttempt); @@ -86,6 +87,13 @@ public abstract partial class SharedBuckleSystem Unbuckle(ent!, args.PullerUid); } + private void OnUnbuckleAlert(Entity ent, ref UnbuckleAlertEvent args) + { + if (args.Handled) + return; + args.Handled = TryUnbuckle(ent, ent, ent); + } + #endregion #region Transform diff --git a/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs b/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs index 86d8da9d3d..2b862a83ac 100644 --- a/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs +++ b/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs @@ -29,7 +29,7 @@ public sealed partial class SolutionTransferComponent : Component /// [DataField("maxTransferAmount")] [ViewVariables(VVAccess.ReadWrite)] - public FixedPoint2 MaximumTransferAmount { get; set; } = FixedPoint2.New(50); + public FixedPoint2 MaximumTransferAmount { get; set; } = FixedPoint2.New(100); /// /// Can this entity take reagent from reagent tanks? diff --git a/Content.Shared/Clothing/Components/LoadoutComponent.cs b/Content.Shared/Clothing/Components/LoadoutComponent.cs index 15d0d60af5..58a46bab36 100644 --- a/Content.Shared/Clothing/Components/LoadoutComponent.cs +++ b/Content.Shared/Clothing/Components/LoadoutComponent.cs @@ -9,10 +9,8 @@ namespace Content.Shared.Clothing.Components; public sealed partial class LoadoutComponent : Component { /// - /// A list of starting gears, of which one will be given. + /// A list of starting gears, of which one will be given, before RoleLoadouts are equipped. /// All elements are weighted the same in the list. - /// - /// If not specified, will be used instead. /// [DataField("prototypes")] [AutoNetworkedField] @@ -21,8 +19,6 @@ public sealed partial class LoadoutComponent : Component /// /// A list of role loadouts, of which one will be given. /// All elements are weighted the same in the list. - /// - /// If not specified, will be used instead. /// [DataField] [AutoNetworkedField] diff --git a/Content.Shared/Clothing/LoadoutSystem.cs b/Content.Shared/Clothing/LoadoutSystem.cs index 7605845626..2a686efd4f 100644 --- a/Content.Shared/Clothing/LoadoutSystem.cs +++ b/Content.Shared/Clothing/LoadoutSystem.cs @@ -139,22 +139,37 @@ public sealed class LoadoutSystem : EntitySystem private void OnMapInit(EntityUid uid, LoadoutComponent component, MapInitEvent args) { - // Use starting gear if specified - if (component.StartingGear != null) + Equip(uid, component.StartingGear, component.RoleLoadout); + } + + public void Equip(EntityUid uid, List>? startingGear, + List>? loadoutGroups) + { + // First, randomly pick a startingGear profile from those specified, and equip it. + if (startingGear != null && startingGear.Count > 0) + _station.EquipStartingGear(uid, _random.Pick(startingGear)); + + if (loadoutGroups == null) { - _station.EquipStartingGear(uid, _random.Pick(component.StartingGear)); + GearEquipped(uid); return; } - if (component.RoleLoadout == null) - return; - - // ...otherwise equip from role loadout - var id = _random.Pick(component.RoleLoadout); + // Then, randomly pick a RoleLoadout profile from those specified, and process/equip all LoadoutGroups from it. + // For non-roundstart mobs there is no SelectedLoadout data, so minValue must be set in each LoadoutGroup to force selection. + var id = _random.Pick(loadoutGroups); var proto = _protoMan.Index(id); var loadout = new RoleLoadout(id); loadout.SetDefault(GetProfile(uid), _actors.GetSession(uid), _protoMan, true); _station.EquipRoleLoadout(uid, loadout, proto); + + GearEquipped(uid); + } + + public void GearEquipped(EntityUid uid) + { + var ev = new StartingGearEquippedEvent(uid); + RaiseLocalEvent(uid, ref ev); } public HumanoidCharacterProfile GetProfile(EntityUid? uid) diff --git a/Content.Shared/Construction/Conditions/WallmountCondition.cs b/Content.Shared/Construction/Conditions/WallmountCondition.cs index fe4336e6fc..f1d056165e 100644 --- a/Content.Shared/Construction/Conditions/WallmountCondition.cs +++ b/Content.Shared/Construction/Conditions/WallmountCondition.cs @@ -20,13 +20,13 @@ namespace Content.Shared.Construction.Conditions // get blueprint and user position var transformSystem = entManager.System(); - var userWorldPosition = entManager.GetComponent(user).WorldPosition; + var userWorldPosition = transformSystem.GetWorldPosition(user); var objWorldPosition = location.ToMap(entManager, transformSystem).Position; // find direction from user to blueprint var userToObject = (objWorldPosition - userWorldPosition); // get direction of the grid being placed on as an offset. - var gridRotation = entManager.GetComponent(location.EntityId).WorldRotation; + var gridRotation = transformSystem.GetWorldRotation(location.EntityId); var directionWithOffset = gridRotation.RotateVec(direction.ToVec()); // dot product will be positive if user direction and blueprint are co-directed diff --git a/Content.Shared/Cuffs/Components/CuffableComponent.cs b/Content.Shared/Cuffs/Components/CuffableComponent.cs index 4ddfe1b53e..a7eba34d8c 100644 --- a/Content.Shared/Cuffs/Components/CuffableComponent.cs +++ b/Content.Shared/Cuffs/Components/CuffableComponent.cs @@ -46,6 +46,8 @@ public sealed partial class CuffableComponent : Component public ProtoId CuffedAlert = "Handcuffed"; } +public sealed partial class RemoveCuffsAlertEvent : BaseAlertEvent; + [Serializable, NetSerializable] public sealed class CuffableComponentState : ComponentState { diff --git a/Content.Shared/Cuffs/SharedCuffableSystem.cs b/Content.Shared/Cuffs/SharedCuffableSystem.cs index 8889e0c971..d4cadcdbb8 100644 --- a/Content.Shared/Cuffs/SharedCuffableSystem.cs +++ b/Content.Shared/Cuffs/SharedCuffableSystem.cs @@ -66,6 +66,7 @@ namespace Content.Shared.Cuffs SubscribeLocalEvent(OnRejuvenate); SubscribeLocalEvent(OnStartup); SubscribeLocalEvent(HandleStopPull); + SubscribeLocalEvent(OnRemoveCuffsAlert); SubscribeLocalEvent(HandleMoveAttempt); SubscribeLocalEvent(OnEquipAttempt); SubscribeLocalEvent(OnUnequipAttempt); @@ -248,6 +249,14 @@ namespace Content.Shared.Cuffs args.Cancelled = true; } + private void OnRemoveCuffsAlert(Entity ent, ref RemoveCuffsAlertEvent args) + { + if (args.Handled) + return; + TryUncuff(ent, ent, cuffable: ent.Comp); + args.Handled = true; + } + private void AddUncuffVerb(EntityUid uid, CuffableComponent component, GetVerbsEvent args) { // Can the user access the cuffs, and is there even anything to uncuff? diff --git a/Content.Shared/Ensnaring/Components/EnsnareableComponent.cs b/Content.Shared/Ensnaring/Components/EnsnareableComponent.cs index 2536fac4ed..cd7824bb96 100644 --- a/Content.Shared/Ensnaring/Components/EnsnareableComponent.cs +++ b/Content.Shared/Ensnaring/Components/EnsnareableComponent.cs @@ -47,6 +47,8 @@ public sealed partial class EnsnareableComponent : Component public ProtoId EnsnaredAlert = "Ensnared"; } +public sealed partial class RemoveEnsnareAlertEvent : BaseAlertEvent; + [Serializable, NetSerializable] public sealed class EnsnareableComponentState : ComponentState { diff --git a/Content.Shared/Foldable/DeployFoldableSystem.cs b/Content.Shared/Foldable/DeployFoldableSystem.cs index fa2e3f8789..16315cde69 100644 --- a/Content.Shared/Foldable/DeployFoldableSystem.cs +++ b/Content.Shared/Foldable/DeployFoldableSystem.cs @@ -1,3 +1,4 @@ +using Content.Shared.DragDrop; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; @@ -14,6 +15,38 @@ public sealed class DeployFoldableSystem : EntitySystem base.Initialize(); SubscribeLocalEvent(OnAfterInteract); + SubscribeLocalEvent(OnCanDrag); + SubscribeLocalEvent(OnDragDropDragged); + SubscribeLocalEvent(OnCanDropDragged); + } + + private void OnCanDropDragged(Entity ent, ref CanDropDraggedEvent args) + { + if (args.User != args.Target) + return; + + args.Handled = true; + args.CanDrop = true; + } + + private void OnDragDropDragged(Entity ent, ref DragDropDraggedEvent args) + { + if (!TryComp(ent, out var foldable) + || !_foldable.TrySetFolded(ent, foldable, true)) + return; + + _hands.PickupOrDrop(args.User, ent.Owner); + + args.Handled = true; + } + + private void OnCanDrag(Entity ent, ref CanDragEvent args) + { + if (!TryComp(ent, out var foldable) + || foldable.IsFolded) + return; + + args.Handled = true; } private void OnAfterInteract(Entity ent, ref AfterInteractEvent args) diff --git a/Content.Shared/Internals/InternalsDoAfterEvent.cs b/Content.Shared/Internals/InternalsDoAfterEvent.cs index 13b6087ec0..9c0174b4fd 100644 --- a/Content.Shared/Internals/InternalsDoAfterEvent.cs +++ b/Content.Shared/Internals/InternalsDoAfterEvent.cs @@ -1,4 +1,5 @@ -using Content.Shared.DoAfter; +using Content.Shared.Alert; +using Content.Shared.DoAfter; using Robust.Shared.Serialization; namespace Content.Shared.Internals; @@ -7,3 +8,5 @@ namespace Content.Shared.Internals; public sealed partial class InternalsDoAfterEvent : SimpleDoAfterEvent { } + +public sealed partial class ToggleInternalsAlertEvent : BaseAlertEvent; diff --git a/Content.Shared/Magic/SharedMagicSystem.cs b/Content.Shared/Magic/SharedMagicSystem.cs index cc7a297aa4..02d483c0a3 100644 --- a/Content.Shared/Magic/SharedMagicSystem.cs +++ b/Content.Shared/Magic/SharedMagicSystem.cs @@ -369,11 +369,10 @@ public abstract class SharedMagicSystem : EntitySystem if (HasComp(ev.Target, data.Component.GetType())) continue; - var component = (Component) _compFact.GetComponent(name); - component.Owner = ev.Target; - var temp = (object) component; + var component = (Component)_compFact.GetComponent(name); + var temp = (object)component; _seriMan.CopyTo(data.Component, ref temp); - EntityManager.AddComponent(ev.Target, (Component) temp!); + EntityManager.AddComponent(ev.Target, (Component)temp!); } } // End Change Component Spells diff --git a/Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs b/Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs index 9ee8a064e5..f99bd43feb 100644 --- a/Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs +++ b/Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs @@ -80,11 +80,6 @@ public partial class MobStateSystem case MobState.Dead: RemComp(target); _standing.Stand(target); - if (!_standing.IsDown(target) && TryComp(target, out var physics)) - { - _physics.SetCanCollide(target, true, body: physics); - } - break; case MobState.Invalid: //unused @@ -115,12 +110,6 @@ public partial class MobStateSystem case MobState.Dead: EnsureComp(target); _standing.Down(target); - - if (_standing.IsDown(target) && TryComp(target, out var physics)) - { - _physics.SetCanCollide(target, false, body: physics); - } - _appearance.SetData(target, MobStateVisuals.State, MobState.Dead); break; case MobState.Invalid: diff --git a/Content.Shared/Movement/Pulling/Components/PullableComponent.cs b/Content.Shared/Movement/Pulling/Components/PullableComponent.cs index 100cd9d6d3..aa44669fd1 100644 --- a/Content.Shared/Movement/Pulling/Components/PullableComponent.cs +++ b/Content.Shared/Movement/Pulling/Components/PullableComponent.cs @@ -42,3 +42,5 @@ public sealed partial class PullableComponent : Component [DataField] public ProtoId PulledAlert = "Pulled"; } + +public sealed partial class StopBeingPulledAlertEvent : BaseAlertEvent; diff --git a/Content.Shared/Movement/Pulling/Components/PullerComponent.cs b/Content.Shared/Movement/Pulling/Components/PullerComponent.cs index 32e4d9b1f3..197d7cfd7c 100644 --- a/Content.Shared/Movement/Pulling/Components/PullerComponent.cs +++ b/Content.Shared/Movement/Pulling/Components/PullerComponent.cs @@ -44,3 +44,5 @@ public sealed partial class PullerComponent : Component [DataField] public ProtoId PullingAlert = "Pulling"; } + +public sealed partial class StopPullingAlertEvent : BaseAlertEvent; diff --git a/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs b/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs index 557c316e26..b5fc694833 100644 --- a/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs +++ b/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs @@ -58,6 +58,7 @@ public sealed class PullingSystem : EntitySystem SubscribeLocalEvent>(AddPullVerbs); SubscribeLocalEvent(OnPullableContainerInsert); SubscribeLocalEvent(OnModifyUncuffDuration); + SubscribeLocalEvent(OnStopBeingPulledAlert); SubscribeLocalEvent(OnAfterState); SubscribeLocalEvent(OnPullerContainerInsert); @@ -65,6 +66,7 @@ public sealed class PullingSystem : EntitySystem SubscribeLocalEvent(OnVirtualItemDeleted); SubscribeLocalEvent(OnRefreshMovespeed); SubscribeLocalEvent(OnDropHandItems); + SubscribeLocalEvent(OnStopPullingAlert); SubscribeLocalEvent(OnBuckled); SubscribeLocalEvent(OnGotBuckled); @@ -105,6 +107,15 @@ public sealed class PullingSystem : EntitySystem TryStopPull(pullerComp.Pulling.Value, pullableComp, uid); } + private void OnStopPullingAlert(Entity ent, ref StopPullingAlertEvent args) + { + if (args.Handled) + return; + if (!TryComp(ent.Comp.Pulling, out var pullable)) + return; + args.Handled = TryStopPull(ent.Comp.Pulling.Value, pullable, ent); + } + private void OnPullerContainerInsert(Entity ent, ref EntGotInsertedIntoContainerMessage args) { if (ent.Comp.Pulling == null) @@ -133,6 +144,14 @@ public sealed class PullingSystem : EntitySystem args.Duration *= 2; } + private void OnStopBeingPulledAlert(Entity ent, ref StopBeingPulledAlertEvent args) + { + if (args.Handled) + return; + + args.Handled = TryStopPull(ent, ent, ent); + } + public override void Shutdown() { base.Shutdown(); @@ -491,6 +510,9 @@ public sealed class PullingSystem : EntitySystem if (pullerUidNull == null) return true; + if (user != null && !_blocker.CanInteract(user.Value, pullableUid)) + return false; + var msg = new AttemptStopPullingEvent(user); RaiseLocalEvent(pullableUid, msg, true); diff --git a/Content.Shared/Movement/Systems/SharedJetpackSystem.cs b/Content.Shared/Movement/Systems/SharedJetpackSystem.cs index 276aa62032..548594c01f 100644 --- a/Content.Shared/Movement/Systems/SharedJetpackSystem.cs +++ b/Content.Shared/Movement/Systems/SharedJetpackSystem.cs @@ -125,6 +125,8 @@ public abstract class SharedJetpackSystem : EntitySystem private bool CanEnableOnGrid(EntityUid? gridUid) { + // No and no again! Do not attempt to activate the jetpack on a grid with gravity disabled. You will not be the first or the last to try this. + // https://discord.com/channels/310555209753690112/310555209753690112/1270067921682694234 return gridUid == null || (!HasComp(gridUid)); } diff --git a/Content.Shared/Shuttles/Components/PilotComponent.cs b/Content.Shared/Shuttles/Components/PilotComponent.cs index cb42db4436..8823d309c3 100644 --- a/Content.Shared/Shuttles/Components/PilotComponent.cs +++ b/Content.Shared/Shuttles/Components/PilotComponent.cs @@ -39,4 +39,6 @@ namespace Content.Shared.Shuttles.Components public override bool SendOnlyToOwner => true; } + + public sealed partial class StopPilotingAlertEvent : BaseAlertEvent; } diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 2943f8b1e7..94646dfebf 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -2,11 +2,13 @@ using System.Collections.Frozen; using System.Diagnostics.CodeAnalysis; using System.Linq; using Content.Shared.ActionBlocker; +using Content.Shared.Administration.Logs; using Content.Shared.Administration; using Content.Shared.Administration.Managers; using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.Components.SolutionManager; using Content.Shared.Containers.ItemSlots; +using Content.Shared.Database; using Content.Shared.Destructible; using Content.Shared.DoAfter; using Content.Shared.Hands.Components; @@ -61,6 +63,7 @@ public abstract class SharedStorageSystem : EntitySystem [Dependency] private readonly SharedUserInterfaceSystem _ui = default!; [Dependency] protected readonly UseDelaySystem UseDelay = default!; [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + [Dependency] private readonly ISharedAdminLogManager _adminLog = default!; private EntityQuery _itemQuery; private EntityQuery _stackQuery; @@ -584,151 +587,79 @@ public abstract class SharedStorageSystem : EntitySystem /// private void OnInteractWithItem(StorageInteractWithItemEvent msg, EntitySessionEventArgs args) { - if (args.SenderSession.AttachedEntity is not { } player) - return; - - var uid = GetEntity(msg.StorageUid); - var entity = GetEntity(msg.InteractedItemUid); - - if (!TryComp(uid, out var storageComp)) - return; - - if (!_ui.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, player)) - return; - - if (!Exists(entity)) - { - Log.Error($"Player {args.SenderSession} interacted with non-existent item {msg.InteractedItemUid} stored in {ToPrettyString(uid)}"); - return; - } - - if (!ActionBlocker.CanInteract(player, entity) || !storageComp.Container.Contains(entity)) - return; - - // Does the player have hands? - if (!TryComp(player, out HandsComponent? hands) || hands.Count == 0) + if (!ValidateInput(args, msg.StorageUid, msg.InteractedItemUid, out var player, out var storage, out var item)) return; // If the user's active hand is empty, try pick up the item. - if (hands.ActiveHandEntity == null) + if (player.Comp.ActiveHandEntity == null) { - if (_sharedHandsSystem.TryPickupAnyHand(player, entity, handsComp: hands) - && storageComp.StorageRemoveSound != null) - Audio.PlayPredicted(storageComp.StorageRemoveSound, uid, player, _audioParams); + _adminLog.Add( + LogType.Storage, + LogImpact.Low, + $"{ToPrettyString(player):player} is attempting to take {ToPrettyString(item):item} out of {ToPrettyString(storage):storage}"); + + if (_sharedHandsSystem.TryPickupAnyHand(player, item, handsComp: player.Comp) + && storage.Comp.StorageRemoveSound != null) { - return; + Audio.PlayPredicted(storage.Comp.StorageRemoveSound, storage, player, _audioParams); } + + return; } + _adminLog.Add( + LogType.Storage, + LogImpact.Low, + $"{ToPrettyString(player):player} is interacting with {ToPrettyString(item):item} while it is stored in {ToPrettyString(storage):storage} using {ToPrettyString(player.Comp.ActiveHandEntity):used}"); + // Else, interact using the held item - _interactionSystem.InteractUsing(player, hands.ActiveHandEntity.Value, entity, Transform(entity).Coordinates, checkCanInteract: false); + _interactionSystem.InteractUsing(player, player.Comp.ActiveHandEntity.Value, item, Transform(item).Coordinates, checkCanInteract: false); } private void OnSetItemLocation(StorageSetItemLocationEvent msg, EntitySessionEventArgs args) { - if (args.SenderSession.AttachedEntity is not { } player) + if (!ValidateInput(args, msg.StorageEnt, msg.ItemEnt, out var player, out var storage, out var item)) return; - var storageEnt = GetEntity(msg.StorageEnt); - var itemEnt = GetEntity(msg.ItemEnt); + _adminLog.Add( + LogType.Storage, + LogImpact.Low, + $"{ToPrettyString(player):player} is updating the location of {ToPrettyString(item):item} within {ToPrettyString(storage):storage}"); - if (!TryComp(storageEnt, out var storageComp)) - return; - - if (!_ui.IsUiOpen(storageEnt, StorageComponent.StorageUiKey.Key, player)) - return; - - if (!Exists(itemEnt)) - { - Log.Error($"Player {args.SenderSession} set location of non-existent item {msg.ItemEnt} stored in {ToPrettyString(storageEnt)}"); - return; - } - - if (!ActionBlocker.CanInteract(player, itemEnt)) - return; - - TrySetItemStorageLocation((itemEnt, null), (storageEnt, storageComp), msg.Location); + TrySetItemStorageLocation(item!, storage!, msg.Location); } private void OnRemoveItem(StorageRemoveItemEvent msg, EntitySessionEventArgs args) { - if (args.SenderSession.AttachedEntity is not { } player) + if (!ValidateInput(args, msg.StorageEnt, msg.ItemEnt, out var player, out var storage, out var item)) return; - var storageEnt = GetEntity(msg.StorageEnt); - var itemEnt = GetEntity(msg.ItemEnt); - - if (!TryComp(storageEnt, out var storageComp)) - return; - - if (!_ui.IsUiOpen(storageEnt, StorageComponent.StorageUiKey.Key, player)) - return; - - if (!Exists(itemEnt)) - { - Log.Error($"Player {args.SenderSession} set location of non-existent item {msg.ItemEnt} stored in {ToPrettyString(storageEnt)}"); - return; - } - - if (!ActionBlocker.CanInteract(player, itemEnt)) - return; - - TransformSystem.DropNextTo(itemEnt, player); - Audio.PlayPredicted(storageComp.StorageRemoveSound, storageEnt, player, _audioParams); + _adminLog.Add( + LogType.Storage, + LogImpact.Low, + $"{ToPrettyString(player):player} is removing {ToPrettyString(item):item} from {ToPrettyString(storage):storage}"); + TransformSystem.DropNextTo(item.Owner, player.Owner); + Audio.PlayPredicted(storage.Comp.StorageRemoveSound, storage, player, _audioParams); } private void OnInsertItemIntoLocation(StorageInsertItemIntoLocationEvent msg, EntitySessionEventArgs args) { - if (args.SenderSession.AttachedEntity is not { } player) + if (!ValidateInput(args, msg.StorageEnt, msg.ItemEnt, out var player, out var storage, out var item, held: true)) return; - var storageEnt = GetEntity(msg.StorageEnt); - var itemEnt = GetEntity(msg.ItemEnt); - - if (!TryComp(storageEnt, out var storageComp)) - return; - - if (!_ui.IsUiOpen(storageEnt, StorageComponent.StorageUiKey.Key, player)) - return; - - if (!Exists(itemEnt)) - { - Log.Error($"Player {args.SenderSession} set location of non-existent item {msg.ItemEnt} stored in {ToPrettyString(storageEnt)}"); - return; - } - - if (!ActionBlocker.CanInteract(player, itemEnt) || !_sharedHandsSystem.IsHolding(player, itemEnt, out _)) - return; - - InsertAt((storageEnt, storageComp), (itemEnt, null), msg.Location, out _, player, stackAutomatically: false); + _adminLog.Add( + LogType.Storage, + LogImpact.Low, + $"{ToPrettyString(player):player} is inserting {ToPrettyString(item):item} into {ToPrettyString(storage):storage}"); + InsertAt(storage!, item!, msg.Location, out _, player, stackAutomatically: false); } - // TODO: if/when someone cleans up this shitcode please make all these - // handlers use a shared helper for checking that the ui is open etc, thanks private void OnSaveItemLocation(StorageSaveItemLocationEvent msg, EntitySessionEventArgs args) { - if (args.SenderSession.AttachedEntity is not {} player) + if (!ValidateInput(args, msg.Storage, msg.Item, out var player, out var storage, out var item, held: true)) return; - var storage = GetEntity(msg.Storage); - var item = GetEntity(msg.Item); - - if (!HasComp(storage)) - return; - - if (!_ui.IsUiOpen(storage, StorageComponent.StorageUiKey.Key, player)) - return; - - if (!Exists(item)) - { - Log.Error($"Player {args.SenderSession} saved location of non-existent item {msg.Item} stored in {ToPrettyString(storage)}"); - return; - } - - if (!ActionBlocker.CanInteract(player, item)) - return; - - SaveItemLocation(storage, item); + SaveItemLocation(storage!, item.Owner); } private void OnBoundUIOpen(EntityUid uid, StorageComponent storageComp, BoundUIOpenedEvent args) @@ -1507,6 +1438,79 @@ public abstract class SharedStorageSystem : EntitySystem public abstract void PlayPickupAnimation(EntityUid uid, EntityCoordinates initialCoordinates, EntityCoordinates finalCoordinates, Angle initialRotation, EntityUid? user = null); + private bool ValidateInput( + EntitySessionEventArgs args, + NetEntity netStorage, + out Entity player, + out Entity storage) + { + player = default; + storage = default; + + if (args.SenderSession.AttachedEntity is not { } playerUid) + return false; + + if (!TryComp(playerUid, out HandsComponent? hands) || hands.Count == 0) + return false; + + if (!TryGetEntity(netStorage, out var storageUid)) + return false; + + if (!TryComp(storageUid, out StorageComponent? storageComp)) + return false; + + // TODO STORAGE use BUI events + // This would automatically validate that the UI is open & that the user can interact. + // However, we still need to manually validate that items being used are in the users hands or in the storage. + if (!_ui.IsUiOpen(storageUid.Value, StorageComponent.StorageUiKey.Key, playerUid)) + return false; + + if (!ActionBlocker.CanInteract(playerUid, storageUid)) + return false; + + player = new(playerUid, hands); + storage = new(storageUid.Value, storageComp); + return true; + } + + private bool ValidateInput(EntitySessionEventArgs args, + NetEntity netStorage, + NetEntity netItem, + out Entity player, + out Entity storage, + out Entity item, + bool held = false) + { + item = default!; + if (!ValidateInput(args, netStorage, out player, out storage)) + return false; + + if (!TryGetEntity(netItem, out var itemUid)) + return false; + + if (held) + { + if (!_sharedHandsSystem.IsHolding(player, itemUid, out _)) + return false; + } + else + { + if (!storage.Comp.Container.Contains(itemUid.Value)) + return false; + + DebugTools.Assert(storage.Comp.StoredItems.ContainsKey(itemUid.Value)); + } + + if (!TryComp(itemUid, out ItemComponent? itemComp)) + return false; + + if (!ActionBlocker.CanInteract(player, itemUid)) + return false; + + item = new(itemUid.Value, itemComp); + return true; + } + [Serializable, NetSerializable] protected sealed class StorageComponentState : ComponentState { diff --git a/Content.Shared/Strip/SharedStrippableSystem.cs b/Content.Shared/Strip/SharedStrippableSystem.cs index 38e2f9fd7a..e42f6e3aa7 100644 --- a/Content.Shared/Strip/SharedStrippableSystem.cs +++ b/Content.Shared/Strip/SharedStrippableSystem.cs @@ -61,11 +61,12 @@ public abstract class SharedStrippableSystem : EntitySystem private void OnCanDropOn(EntityUid uid, StrippingComponent component, ref CanDropTargetEvent args) { - args.Handled = true; - args.CanDrop |= uid == args.User && - HasComp(args.Dragged) && - HasComp(args.User) && - HasComp(args.User); + var val = uid == args.User && + HasComp(args.Dragged) && + HasComp(args.User) && + HasComp(args.User); + args.Handled |= val; + args.CanDrop |= val; } private void OnCanDrop(EntityUid uid, StrippableComponent component, ref CanDropDraggedEvent args) diff --git a/Content.Shared/Tiles/FloorTileSystem.cs b/Content.Shared/Tiles/FloorTileSystem.cs index 97ed908ed3..f031292f23 100644 --- a/Content.Shared/Tiles/FloorTileSystem.cs +++ b/Content.Shared/Tiles/FloorTileSystem.cs @@ -156,7 +156,7 @@ public sealed class FloorTileSystem : EntitySystem var grid = _mapManager.CreateGridEntity(locationMap.MapId); var gridXform = Transform(grid); - _transform.SetWorldPosition(gridXform, locationMap.Position); + _transform.SetWorldPosition((grid, gridXform), locationMap.Position); location = new EntityCoordinates(grid, Vector2.Zero); PlaceAt(args.User, grid, grid.Comp, location, _tileDefinitionManager[component.OutputTiles[0]].TileId, component.PlaceTileSound, grid.Comp.TileSize / 2f); return; diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c6d82d45a9..de628bad55 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,88 +1,4 @@ Entries: -- author: FairlySadPanda - changes: - - message: Weapons that deflect shots, like the e-sword, now are most effective - at doing so when standing still, with moving or sprinting making the deflection - chance worse. - type: Tweak - id: 6548 - time: '2024-05-07T18:14:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27219 -- author: deltanedas - changes: - - message: Lathes can now be sped up by using Space Lube. - type: Tweak - id: 6549 - time: '2024-05-07T18:20:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25515 -- author: OnsenCapy - changes: - - message: Combat gloves now have their own unique sprite. - type: Tweak - - message: Combat gloves now have heat resistance to match their fireproof description. - type: Tweak - id: 6550 - time: '2024-05-08T00:19:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27373 -- author: deltanedas - changes: - - message: Dragons can now breathe fire. - type: Add - id: 6551 - time: '2024-05-08T00:25:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26746 -- author: Cojoke-dot - changes: - - message: You can now shoot over racks - type: Tweak - id: 6552 - time: '2024-05-08T06:46:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27797 -- author: ShadowCommander - changes: - - message: Lizards now stop tail pulling when they are downed. - type: Fix - id: 6553 - time: '2024-05-08T06:49:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27796 -- author: Plykiya - changes: - - message: Re-added supplybots. - type: Add - id: 6554 - time: '2024-05-08T07:30:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27769 -- author: Hobbitmax - changes: - - message: Replaced Syndicate Jaws Of Life with a Pyjama bundle on the Train map. - type: Tweak - id: 6555 - time: '2024-05-08T07:30:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27734 -- author: Plykiya - changes: - - message: The ninja's katana dash is now more reliable. - type: Fix - id: 6556 - time: '2024-05-08T10:21:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27793 -- author: K-Dynamic - changes: - - message: Bike Horns, Suspenders and the Clown Recorder are now available from - the Theatrical Performances Crate - type: Tweak - id: 6557 - time: '2024-05-08T12:30:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27668 -- author: Riolume - changes: - - message: Added ability to drink from spray bottles - type: Add - - message: Can now see the amount of liquid in spray bottles - type: Add - id: 6558 - time: '2024-05-09T05:56:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27815 - author: Blackern5000 changes: - message: Atmos metal pipes now deal blunt damage. @@ -3784,3 +3700,84 @@ 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 + type: Tweak + id: 7057 + time: '2024-08-08T02:14:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30480 +- author: BackeTako + changes: + - message: "!, \u203D and multiple punctuations now work for Spanish." + type: Tweak + id: 7058 + time: '2024-08-08T03:08:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30551 diff --git a/Resources/Locale/en-US/advertisements/vending/atmosdrobe.ftl b/Resources/Locale/en-US/advertisements/vending/atmosdrobe.ftl index 642d142fbf..f7bc093e1c 100644 --- a/Resources/Locale/en-US/advertisements/vending/atmosdrobe.ftl +++ b/Resources/Locale/en-US/advertisements/vending/atmosdrobe.ftl @@ -1,3 +1,5 @@ advertisement-atmosdrobe-1 = Get your inflammable clothing right here!!! advertisement-atmosdrobe-2 = Protects you against plasma fires! -advertisement-atmosdrobe-3 = Enjoy your off-brand engineering clothing! \ No newline at end of file +advertisement-atmosdrobe-3 = Enjoy your off-brand engineering clothing! +advertisement-atmosdrobe-4 = Always under control of your atmosphere! +advertisement-atmosdrobe-5 = Providing comfort in every breath! diff --git a/Resources/Locale/en-US/advertisements/vending/chefdrobe.ftl b/Resources/Locale/en-US/advertisements/vending/chefdrobe.ftl index a681a7aced..025c731ff3 100644 --- a/Resources/Locale/en-US/advertisements/vending/chefdrobe.ftl +++ b/Resources/Locale/en-US/advertisements/vending/chefdrobe.ftl @@ -1,3 +1,4 @@ -advertisement-chefdrobe-1 = Our clothes are guaranteed to protect you from food splatters! +advertisement-chefdrobe-1 = Our clothes are guaranteed to protect you from food splatters! advertisement-chefdrobe-2 = Perfectly white, so everyone knows about the murder in the kitchen! advertisement-chefdrobe-3 = Easy to clean, easy to see! +advertisement-chefdrobe-4 = Cook like a pro, look like a maestro! diff --git a/Resources/Locale/en-US/advertisements/vending/chemdrobe.ftl b/Resources/Locale/en-US/advertisements/vending/chemdrobe.ftl index 4472ced15e..5dd4f87dc3 100644 --- a/Resources/Locale/en-US/advertisements/vending/chemdrobe.ftl +++ b/Resources/Locale/en-US/advertisements/vending/chemdrobe.ftl @@ -1,3 +1,4 @@ advertisement-chemdrobe-1 = Our clothes are 0.5% more resistant to acid spills! Get yours now! advertisement-chemdrobe-2 = Professional laboratory clothing, designed by NanoTrasen! -advertisement-chemdrobe-3 = I'm pretty sure these will protect you against acid spills! \ No newline at end of file +advertisement-chemdrobe-3 = I'm pretty sure these will protect you against acid spills! +advertisement-chemdrobe-4 = The best fashion formula! diff --git a/Resources/Locale/en-US/advertisements/vending/donut.ftl b/Resources/Locale/en-US/advertisements/vending/donut.ftl index daa93928b6..af801f621c 100644 --- a/Resources/Locale/en-US/advertisements/vending/donut.ftl +++ b/Resources/Locale/en-US/advertisements/vending/donut.ftl @@ -3,6 +3,7 @@ advertisement-donut-2 = Hope you're hunger! advertisement-donut-3 = Over 1 million donuts sold! advertisement-donut-4 = We pride ourselves in the consistency of our products! advertisement-donut-5 = Sweet, sugary and delicious! +advertisement-donut-6 = Donut worry, be happy! thankyou-donut-1 = Enjoy your donut! thankyou-donut-2 = Another donut sold! thankyou-donut-3 = Have a nice day, officer! diff --git a/Resources/Locale/en-US/advertisements/vending/hydrobe.ftl b/Resources/Locale/en-US/advertisements/vending/hydrobe.ftl index f1fdc4fccc..64b38d8e3a 100644 --- a/Resources/Locale/en-US/advertisements/vending/hydrobe.ftl +++ b/Resources/Locale/en-US/advertisements/vending/hydrobe.ftl @@ -1,4 +1,5 @@ advertisement-hydrobe-1 = Do you love soil? Then buy our clothes! advertisement-hydrobe-2 = Get outfits to match your green thumb here! advertisement-hydrobe-3 = Here to give you an outfit perfect for handling plants! -advertisement-hydrobe-4 = Perfect outfits for tree huggers... or just literal trees! \ No newline at end of file +advertisement-hydrobe-4 = Perfect outfits for tree huggers... or just literal trees! +advertisement-hydrobe-5 = Wear green and grow! diff --git a/Resources/Locale/en-US/advertisements/vending/janidrobe.ftl b/Resources/Locale/en-US/advertisements/vending/janidrobe.ftl index 7c39a9ad4a..a23f878e74 100644 --- a/Resources/Locale/en-US/advertisements/vending/janidrobe.ftl +++ b/Resources/Locale/en-US/advertisements/vending/janidrobe.ftl @@ -1,4 +1,5 @@ advertisement-janidrobe-1 = Come and get your janitorial clothing, now endorsed by lizard janitors everywhere! advertisement-janidrobe-2 = Here to keep you clean as you clean up non-clean things! advertisement-janidrobe-3 = Stylishly yellow! - +advertisement-janidrobe-4 = Polish your appearance with JaniDrobe! +advertisement-janidrobe-5 = Shine like a shiny floor! diff --git a/Resources/Locale/en-US/advertisements/vending/lawdrobe.ftl b/Resources/Locale/en-US/advertisements/vending/lawdrobe.ftl index 5473f162da..64849d9341 100644 --- a/Resources/Locale/en-US/advertisements/vending/lawdrobe.ftl +++ b/Resources/Locale/en-US/advertisements/vending/lawdrobe.ftl @@ -6,6 +6,7 @@ advertisement-lawdrobe-5 = No one is above the law! advertisement-lawdrobe-6 = No officer, I do not consent to a search! advertisement-lawdrobe-7 = Injecting space drugs leaves no evidence! advertisement-lawdrobe-8 = You or a loved one hurt by Nanotrasen? Too bad! +advertisement-lawdrobe-9 = Case closed! Defendant has too much drip! thankyou-lawdrobe-1 = You can win any case in that outfit! thankyou-lawdrobe-2 = Get one for your client as well! thankyou-lawdrobe-3 = Win or lose, you get paid either way! diff --git a/Resources/Locale/en-US/advertisements/vending/medidrobe.ftl b/Resources/Locale/en-US/advertisements/vending/medidrobe.ftl index 68b18a8390..980628a0ce 100644 --- a/Resources/Locale/en-US/advertisements/vending/medidrobe.ftl +++ b/Resources/Locale/en-US/advertisements/vending/medidrobe.ftl @@ -1,3 +1,4 @@ advertisement-medidrobe-1 = Make those blood stains look fashionable!! advertisement-medidrobe-2 = Clean and hygienic! Don't get too many bloodstains on yourself! advertisement-medidrobe-3 = With these outfits, you'll look like a professional doctor now! +advertisement-medidrobe-4 = Jumpsuit, check. Coat, check. Someone who will wear this? Check! diff --git a/Resources/Locale/en-US/atmos/gas-miner-component.ftl b/Resources/Locale/en-US/atmos/gas-miner-component.ftl new file mode 100644 index 0000000000..87016e4522 --- /dev/null +++ b/Resources/Locale/en-US/atmos/gas-miner-component.ftl @@ -0,0 +1,11 @@ +gas-miner-mines-text = It mines [color=lightgray]{$gas}[/color] when active. + +gas-miner-amount-text = It mines {$moles} moles of gas a second when active. +gas-miner-temperature-text = Mined gas temp: {$tempK}K ({$tempC}°C). + +gas-miner-moles-cutoff-text = Surrounding moles cutoff: {$moles} moles. +gas-miner-pressure-cutoff-text = Surrounding pressure cutoff: {$pressure} kPA. + +gas-miner-state-working-text = The miner is [color=green]active[/color] and mining gas. +gas-miner-state-idle-text = The miner is [color=yellow]idle[/color] and not mining gas. +gas-miner-state-disabled-text = The miner is [color=red]disabled[/color] and not mining gas. \ No newline at end of file diff --git a/Resources/Locale/en-US/power/components/radiation-collector.ftl b/Resources/Locale/en-US/power/components/radiation-collector.ftl index c38050f1e0..199b3789ae 100644 --- a/Resources/Locale/en-US/power/components/radiation-collector.ftl +++ b/Resources/Locale/en-US/power/components/radiation-collector.ftl @@ -1,2 +1,11 @@ -power-radiation-collector-gas-tank-missing = [color=darkred]No plasma tank attached.[/color] -power-radiation-collector-gas-tank-present = A plasma tank is [color=darkgreen]connected[/color]. \ No newline at end of file +power-radiation-collector-gas-tank-missing = The plasma tank slot is [color=darkred]empty[/color]. +power-radiation-collector-gas-tank-present = The plasma tank slot is [color=darkgreen]filled[/color] and the tank indicator reads [color={$fullness -> + *[0]red]empty + [1]red]low + [2]yellow]half-full + [3]lime]full +}[/color]. +power-radiation-collector-enabled = It's switched [color={$state -> + [true] darkgreen]on + *[false] darkred]off +}[/color]. diff --git a/Resources/Locale/en-US/preferences/loadout-groups.ftl b/Resources/Locale/en-US/preferences/loadout-groups.ftl index 28785e305c..b1fba215d9 100644 --- a/Resources/Locale/en-US/preferences/loadout-groups.ftl +++ b/Resources/Locale/en-US/preferences/loadout-groups.ftl @@ -14,6 +14,7 @@ loadout-group-survival-security = Security Survival Box loadout-group-survival-syndicate = Github is forcing me to write text that is literally twice-impossible for the player to ever see, send help loadout-group-breath-tool = Species-dependent breath tools loadout-group-tank-harness = Species-specific survival equipment +loadout-group-EVA-tank = Species-specific gas tank # Command loadout-group-captain-head = Captain head diff --git a/Resources/Maps/Shuttles/emergency_meta.yml b/Resources/Maps/Shuttles/emergency_meta.yml index 84b6ff02e6..091fe6a1f8 100644 --- a/Resources/Maps/Shuttles/emergency_meta.yml +++ b/Resources/Maps/Shuttles/emergency_meta.yml @@ -472,71 +472,26 @@ entities: - type: Transform pos: 20.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: AirlockCommandGlassLocked entities: - - uid: 56 + - uid: 5 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - type: WiresPanelSecurity - wiresAccessible: False - examine: wires-panel-component-on-examine-security-level2 - - type: Construction - node: medSecurity - - type: ContainerContainer - containers: - board: !type:Container - showEnts: False - occludes: True - ents: - - 57 - - type: DeviceNetwork - address: 2A91-A774 - receiveFrequency: 1280 -- proto: AirlockCommandLocked - entities: - - uid: 58 + - uid: 12 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,-6.5 parent: 1 - - type: WiresPanelSecurity - wiresAccessible: False - examine: wires-panel-component-on-examine-security-level2 - - type: ContainerContainer - containers: - board: !type:Container - showEnts: False - occludes: True - ents: - - 59 - - type: DeviceNetwork - address: 09A1-F0F3 - receiveFrequency: 1280 - - type: Construction - node: medSecurity -- proto: AirlockEngineering +- proto: AirlockEngineeringGlassLocked entities: - - uid: 60 + - uid: 13 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-4.5 parent: 1 - - type: ContainerContainer - containers: - board: !type:Container - showEnts: False - occludes: True - ents: - - 61 - - type: DeviceNetwork - address: 4FEE-86F1 - receiveFrequency: 1280 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - uid: 62 @@ -647,57 +602,27 @@ entities: - type: DeviceNetwork address: 2CB4-0D0E receiveFrequency: 1280 -- proto: AirlockMedicalGlass +- proto: AirlockMedicalGlassLocked entities: - - uid: 76 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-6.5 - parent: 1 - - type: ContainerContainer - containers: - board: !type:Container - showEnts: False - occludes: True - ents: - - 77 - - type: DeviceNetwork - address: 0B07-5B7E - receiveFrequency: 1280 - - uid: 78 + - uid: 22 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-9.5 parent: 1 - - type: ContainerContainer - containers: - board: !type:Container - showEnts: False - occludes: True - ents: - - 79 - - type: DeviceNetwork - address: 7B62-0AF6 - receiveFrequency: 1280 -- proto: AirlockSecurityGlassLocked + - uid: 23 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 +- proto: AirlockSecurityLawyerGlassLocked entities: - - uid: 80 + - uid: 32 components: - type: Transform pos: 2.5,-6.5 parent: 1 - - type: ContainerContainer - containers: - board: !type:Container - showEnts: False - occludes: True - ents: - - 81 - - type: DeviceNetwork - address: 40EA-C9E8 - receiveFrequency: 1280 - proto: AirTankFilled entities: - uid: 82 @@ -794,7 +719,7 @@ entities: parent: 1 - type: Physics canCollide: False -- proto: BookEscalationSecurity +- proto: BookRandomStory entities: - uid: 116 components: @@ -2901,24 +2826,6 @@ entities: ent: 568 - proto: DoorElectronics entities: - - uid: 57 - components: - - type: Transform - parent: 56 - - type: Physics - canCollide: False - - uid: 59 - components: - - type: Transform - parent: 58 - - type: Physics - canCollide: False - - uid: 61 - components: - - type: Transform - parent: 60 - - type: Physics - canCollide: False - uid: 67 components: - type: Transform @@ -2949,24 +2856,6 @@ entities: parent: 74 - type: Physics canCollide: False - - uid: 77 - components: - - type: Transform - parent: 76 - - type: Physics - canCollide: False - - uid: 79 - components: - - type: Transform - parent: 78 - - type: Physics - canCollide: False - - uid: 81 - components: - - type: Transform - parent: 80 - - type: Physics - canCollide: False - uid: 570 components: - type: Transform @@ -3311,8 +3200,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasPassiveVent entities: - uid: 591 @@ -3321,8 +3208,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasPipeBend entities: - uid: 592 @@ -3594,8 +3479,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasVentPump entities: - uid: 638 @@ -3604,40 +3487,30 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 639 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 640 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 641 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 642 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: Gauze entities: - uid: 139 @@ -4334,10 +4207,15 @@ entities: - type: Transform pos: 15.5,-10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: OxygenTankFilled entities: + - uid: 9 + components: + - type: Transform + parent: 2 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 491 components: - type: Transform @@ -8039,13 +7917,4 @@ entities: parent: 1 - type: Physics canCollide: False -- proto: YellowOxygenTankFilled - entities: - - uid: 9 - components: - - type: Transform - parent: 2 - - type: Physics - canCollide: False - - type: InsideEntityStorage ... diff --git a/Resources/Maps/Shuttles/emergency_omega.yml b/Resources/Maps/Shuttles/emergency_omega.yml index 1af66e5389..ad9c8379da 100644 --- a/Resources/Maps/Shuttles/emergency_omega.yml +++ b/Resources/Maps/Shuttles/emergency_omega.yml @@ -675,15 +675,11 @@ entities: - type: Transform pos: 0.5,-0.5 parent: 603 - - type: AtmosDevice - joinedGrid: 603 - uid: 487 components: - type: Transform pos: -1.5,-0.5 parent: 603 - - type: AtmosDevice - joinedGrid: 603 - proto: AirlockCommandLocked entities: - uid: 473 @@ -892,155 +888,98 @@ entities: - type: Transform pos: -3.5,15.5 parent: 603 - - type: DeviceLinkSink - links: - - 602 - uid: 471 components: - type: Transform pos: -5.5,15.5 parent: 603 - - type: DeviceLinkSink - links: - - 602 - uid: 472 components: - type: Transform pos: -7.5,15.5 parent: 603 - - type: DeviceLinkSink - links: - - 602 - uid: 541 components: - type: Transform pos: -10.5,5.5 parent: 603 - - type: DeviceLinkSink - links: - - 555 - uid: 542 components: - type: Transform pos: -10.5,6.5 parent: 603 - - type: DeviceLinkSink - links: - - 555 - uid: 543 components: - type: Transform pos: -10.5,7.5 parent: 603 - - type: DeviceLinkSink - links: - - 555 - uid: 544 components: - type: Transform pos: -10.5,2.5 parent: 603 - - type: DeviceLinkSink - links: - - 555 - uid: 545 components: - type: Transform pos: 5.5,2.5 parent: 603 - - type: DeviceLinkSink - links: - - 555 - uid: 546 components: - type: Transform pos: 5.5,5.5 parent: 603 - - type: DeviceLinkSink - links: - - 555 - uid: 547 components: - type: Transform pos: 5.5,6.5 parent: 603 - - type: DeviceLinkSink - links: - - 555 - uid: 548 components: - type: Transform pos: 5.5,7.5 parent: 603 - - type: DeviceLinkSink - links: - - 555 - uid: 549 components: - type: Transform pos: 5.5,10.5 parent: 603 - - type: DeviceLinkSink - links: - - 555 - uid: 550 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,15.5 parent: 603 - - type: DeviceLinkSink - links: - - 555 - uid: 551 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,15.5 parent: 603 - - type: DeviceLinkSink - links: - - 555 - uid: 552 components: - type: Transform pos: 0.5,14.5 parent: 603 - - type: DeviceLinkSink - links: - - 555 - uid: 553 components: - type: Transform pos: -0.5,14.5 parent: 603 - - type: DeviceLinkSink - links: - - 555 - uid: 554 components: - type: Transform pos: -1.5,14.5 parent: 603 - - type: DeviceLinkSink - links: - - 555 - uid: 556 components: - type: Transform pos: -1.5,8.5 parent: 603 - - type: DeviceLinkSink - links: - - 555 - uid: 557 components: - type: Transform pos: 0.5,8.5 parent: 603 - - type: DeviceLinkSink - links: - - 555 - proto: BoxSurvivalEngineering entities: - uid: 600 @@ -2262,6 +2201,14 @@ entities: - type: Transform pos: -3.4608088,12.544868 parent: 603 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 603 - proto: EmergencyLight entities: - uid: 434 @@ -2692,16 +2639,12 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-0.5 parent: 603 - - type: AtmosDevice - joinedGrid: 603 - uid: 486 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-0.5 parent: 603 - - type: AtmosDevice - joinedGrid: 603 - proto: GasPressurePump entities: - uid: 156 @@ -2710,8 +2653,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,0.5 parent: 603 - - type: AtmosDevice - joinedGrid: 603 - proto: GasVentPump entities: - uid: 89 @@ -2719,78 +2660,58 @@ entities: - type: Transform pos: -0.5,10.5 parent: 603 - - type: AtmosDevice - joinedGrid: 603 - uid: 135 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,10.5 parent: 603 - - type: AtmosDevice - joinedGrid: 603 - uid: 147 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,2.5 parent: 603 - - type: AtmosDevice - joinedGrid: 603 - uid: 171 components: - type: Transform pos: -0.5,2.5 parent: 603 - - type: AtmosDevice - joinedGrid: 603 - uid: 172 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,5.5 parent: 603 - - type: AtmosDevice - joinedGrid: 603 - uid: 342 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,2.5 parent: 603 - - type: AtmosDevice - joinedGrid: 603 - uid: 373 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-1.5 parent: 603 - - type: AtmosDevice - joinedGrid: 603 - uid: 374 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,6.5 parent: 603 - - type: AtmosDevice - joinedGrid: 603 - uid: 376 components: - type: Transform pos: -4.5,12.5 parent: 603 - - type: AtmosDevice - joinedGrid: 603 - uid: 396 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,1.5 parent: 603 - - type: AtmosDevice - joinedGrid: 603 - proto: GeneratorBasic15kW entities: - uid: 214 @@ -3232,25 +3153,16 @@ entities: - type: Transform pos: -5.5,8.5 parent: 603 - - type: DeviceLinkSink - links: - - 602 - uid: 468 components: - type: Transform pos: -4.5,8.5 parent: 603 - - type: DeviceLinkSink - links: - - 602 - uid: 469 components: - type: Transform pos: -3.5,8.5 parent: 603 - - type: DeviceLinkSink - links: - - 602 - proto: ShuttleWindow entities: - uid: 76 diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index c7030f6cf5..09e40b30ce 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -21,6 +21,8 @@ tilemap: 49: FloorGrass 50: FloorGrassDark 51: FloorGrassJungle + 3: FloorGrayConcrete + 2: FloorGrayConcreteMono 56: FloorGreenCircuit 59: FloorHullReinforced 60: FloorHydro @@ -74,7 +76,7 @@ entities: version: 6 -1,-1: ind: -1,-1 - tiles: XQAAAAADXQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAABZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAACZAAAAAAAXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAdAAAAAADdAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAdAAAAAADcwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAHwAAAAADXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADMwAAAAAAegAAAAACegAAAAACegAAAAABfgAAAAAAHwAAAAADXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAACMwAAAAAAegAAAAACegAAAAAAegAAAAACfgAAAAAAHwAAAAACXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAABJAAAAAACegAAAAABegAAAAAAegAAAAADfgAAAAAAHwAAAAACXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAACfgAAAAAAegAAAAACegAAAAACegAAAAABfgAAAAAAHwAAAAADTQAAAAAATQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAADXQAAAAABXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAB + tiles: XQAAAAADXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAZAAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAZAAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAZAAAAAAAXQAAAAABZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZAAAAAAAXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAdAAAAAADdAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAdAAAAAADcwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAHwAAAAADXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADMwAAAAAAegAAAAACegAAAAACegAAAAABfgAAAAAAHwAAAAADXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAACMwAAAAAAegAAAAACegAAAAAAegAAAAACfgAAAAAAHwAAAAACXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAABJAAAAAACegAAAAABegAAAAAAegAAAAADfgAAAAAAHwAAAAACXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAACfgAAAAAAegAAAAACegAAAAACegAAAAABfgAAAAAAHwAAAAADTQAAAAAATQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAADXQAAAAABXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAB version: 6 0,0: ind: 0,0 @@ -90,7 +92,7 @@ entities: version: 6 -1,-2: ind: -1,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAAATQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABTQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAABTQAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADTQAAAAADTQAAAAACfgAAAAAAfQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAbgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAC + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAAATQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABTQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAABTQAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAALgAAAAAAfgAAAAAAAgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADTQAAAAADTQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAC version: 6 0,-3: ind: 0,-3 @@ -142,11 +144,11 @@ entities: version: 6 2,-3: ind: 2,-3 - tiles: fgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAAAegAAAAACAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAagAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAagAAAAAAagAAAAABagAAAAABPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAagAAAAADPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAagAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATQAAAAACTQAAAAACTQAAAAADfgAAAAAAcAAAAAAAcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAagAAAAADagAAAAABagAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAACcAAAAAAAfgAAAAAAfgAAAAAAagAAAAAAagAAAAABPAAAAAAAPAAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAABeQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: fgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAAAegAAAAACAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAagAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAagAAAAAAagAAAAABagAAAAABPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAagAAAAADPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAagAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATQAAAAACTQAAAAACTQAAAAADfgAAAAAAcAAAAAAAcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAagAAAAADagAAAAABagAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAACcAAAAAAAfgAAAAAAfgAAAAAAagAAAAAAagAAAAABPAAAAAAAPAAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAABeQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: PAAAAAAAagAAAAACPAAAAAAAPAAAAAAAfgAAAAAAcAAAAAABcwAAAAAAeAAAAAADcwAAAAADcAAAAAACcAAAAAACcAAAAAAAeQAAAAAAcAAAAAABcAAAAAADcAAAAAABPAAAAAAAagAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAcAAAAAACcwAAAAABeAAAAAACcwAAAAAAcAAAAAAAfgAAAAAAcAAAAAACeQAAAAADcAAAAAAAcAAAAAADcAAAAAABPAAAAAAAagAAAAABagAAAAAAagAAAAAAXQAAAAADcAAAAAACdwAAAAAAcwAAAAAAdwAAAAAAcAAAAAACcAAAAAABcAAAAAACeQAAAAAAcAAAAAABcAAAAAABdQAAAAAAagAAAAACagAAAAABPAAAAAAAPAAAAAAAfgAAAAAAcAAAAAAAcwAAAAACeAAAAAAAcwAAAAABcAAAAAACfgAAAAAAcAAAAAADeQAAAAACcAAAAAADcAAAAAABdQAAAAAAagAAAAACagAAAAACPAAAAAAAPAAAAAAAfgAAAAAAcAAAAAACcwAAAAABeAAAAAADcwAAAAACcAAAAAABcAAAAAADcAAAAAAAeQAAAAAAcAAAAAACcAAAAAAAdQAAAAAAagAAAAADPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAACcAAAAAABcAAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAADcAAAAAABPAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABfgAAAAAAcAAAAAABcAAAAAAAcAAAAAACcAAAAAABcAAAAAACfgAAAAAAcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABcAAAAAABcAAAAAACeQAAAAABeQAAAAAAeQAAAAACcAAAAAAAcAAAAAAAcAAAAAADeQAAAAAAcAAAAAAAfgAAAAAAKAAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAcAAAAAADcAAAAAABcAAAAAADcAAAAAADcAAAAAABfgAAAAAAcAAAAAADeQAAAAAAcAAAAAACfgAAAAAAHwAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAAAcAAAAAADcAAAAAACHwAAAAADcAAAAAACcAAAAAACcAAAAAADcAAAAAABfgAAAAAAdAAAAAADdAAAAAABcAAAAAACdAAAAAACdAAAAAABfgAAAAAAcAAAAAABeQAAAAADcAAAAAADfgAAAAAAXQAAAAAAcAAAAAACdQAAAAABdQAAAAACcAAAAAABfgAAAAAAdAAAAAACdAAAAAABeQAAAAAAdAAAAAABdAAAAAABfgAAAAAAcAAAAAACeQAAAAACcAAAAAADfgAAAAAAfgAAAAAAcAAAAAABdQAAAAAAdQAAAAACcAAAAAABcAAAAAABcAAAAAAAeQAAAAACeQAAAAACeQAAAAACcAAAAAADcAAAAAACcAAAAAAAeQAAAAADcAAAAAADcAAAAAAAcAAAAAAAcAAAAAACdQAAAAADdQAAAAAAcAAAAAADfgAAAAAAdAAAAAADdAAAAAABeQAAAAAAdAAAAAACdAAAAAADfgAAAAAAcAAAAAAAeQAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAADfgAAAAAAdAAAAAADdAAAAAACcAAAAAADdAAAAAACdAAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAABcAAAAAADcAAAAAAC + tiles: PAAAAAAAagAAAAACPAAAAAAAPAAAAAAAfgAAAAAAcAAAAAABcwAAAAAAeAAAAAADcwAAAAADcAAAAAACcAAAAAACcAAAAAAAeQAAAAAAcAAAAAABcAAAAAADcAAAAAABPAAAAAAAagAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAcAAAAAACcwAAAAABeAAAAAACcwAAAAAAcAAAAAAAfgAAAAAAcAAAAAACeQAAAAADcAAAAAAAcAAAAAADcAAAAAABPAAAAAAAagAAAAABagAAAAAAagAAAAAAXQAAAAADcAAAAAACdwAAAAAAcwAAAAAAdwAAAAAAcAAAAAACcAAAAAABcAAAAAACeQAAAAAAcAAAAAABcAAAAAABdQAAAAAAagAAAAACagAAAAABPAAAAAAAPAAAAAAAfgAAAAAAcAAAAAAAcwAAAAACeAAAAAAAcwAAAAABcAAAAAACfgAAAAAAcAAAAAADeQAAAAACcAAAAAADcAAAAAABdQAAAAAAagAAAAACagAAAAACPAAAAAAAPAAAAAAAfgAAAAAAcAAAAAACcwAAAAABeAAAAAADcwAAAAACcAAAAAABcAAAAAADcAAAAAAAeQAAAAAAcAAAAAACcAAAAAAAdQAAAAAAagAAAAADPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAACcAAAAAABcAAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAADcAAAAAABPAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABfgAAAAAAcAAAAAABcAAAAAAAcAAAAAACcAAAAAABcAAAAAACfgAAAAAAcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABcAAAAAABcAAAAAACeQAAAAABeQAAAAAAeQAAAAACcAAAAAAAcAAAAAAAcAAAAAADeQAAAAAAcAAAAAAAfgAAAAAAKAAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAcAAAAAADcAAAAAABcAAAAAADcAAAAAADcAAAAAABfgAAAAAAcAAAAAADeQAAAAAAcAAAAAACfgAAAAAAHwAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAAAcAAAAAADcAAAAAACHwAAAAADcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAABeQAAAAADcAAAAAADfgAAAAAAXQAAAAAAcAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcAAAAAAAfgAAAAAAcAAAAAACeQAAAAACcAAAAAADfgAAAAAAfgAAAAAAcAAAAAABeQAAAAAAcAAAAAAAcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAeQAAAAAAeQAAAAAAcAAAAAACcAAAAAAAeQAAAAADcAAAAAADcAAAAAAAcAAAAAAAcAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAeQAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAABcAAAAAADcAAAAAAC version: 6 3,-3: ind: 3,-3 @@ -158,11 +160,11 @@ entities: version: 6 2,-1: ind: 2,-1 - tiles: fgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAADeQAAAAADeQAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAAAcAAAAAACcAAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAACfgAAAAAAcAAAAAABcAAAAAACcAAAAAABfgAAAAAAXQAAAAABcAAAAAAAcAAAAAABcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAACHwAAAAACcAAAAAAAeQAAAAACcAAAAAAAfgAAAAAAXQAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAACcAAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAABfgAAAAAAcAAAAAADeQAAAAAAcAAAAAABfgAAAAAAXQAAAAABfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAAAcAAAAAABfgAAAAAAXQAAAAADHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAACfgAAAAAAcAAAAAACeQAAAAADcAAAAAACfgAAAAAAcAAAAAABHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAABcAAAAAACeQAAAAADcAAAAAABcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAADfgAAAAAAcAAAAAACcAAAAAADcAAAAAADfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAHwAAAAABXQAAAAADXQAAAAACXQAAAAAC + tiles: fgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAADeQAAAAADeQAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAAAcAAAAAACcAAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAACfgAAAAAAcAAAAAABcAAAAAACcAAAAAABfgAAAAAAXQAAAAABcAAAAAAAcAAAAAABcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAACHwAAAAACcAAAAAAAeQAAAAACcAAAAAAAfgAAAAAAXQAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAACcAAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAABfgAAAAAAcAAAAAADeQAAAAAAcAAAAAABfgAAAAAAXQAAAAABfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAAAcAAAAAABfgAAAAAAXQAAAAADHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAACfgAAAAAAcAAAAAACeQAAAAADcAAAAAACfgAAAAAAcAAAAAABHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAABcAAAAAACeQAAAAADcAAAAAABcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAADfgAAAAAAcAAAAAACcAAAAAADcAAAAAADfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAC version: 6 3,-1: ind: 3,-1 - tiles: cAAAAAACfgAAAAAAcAAAAAACAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAADcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAABcAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAACXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAACfgAAAAAAcAAAAAACAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAADcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAABcAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAACXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-4: ind: 1,-4 @@ -278,11 +280,11 @@ entities: version: 6 2,0: ind: 2,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAHwAAAAADXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAegAAAAACegAAAAACegAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAegAAAAABegAAAAABegAAAAACfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAADfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAegAAAAACegAAAAACegAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAegAAAAABegAAAAABegAAAAACfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAADfgAAAAAAfgAAAAAA version: 6 3,1: ind: 3,1 - tiles: XQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACaAAAAAABXQAAAAAAaAAAAAACXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAACDAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACaAAAAAABXQAAAAAAaAAAAAACXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAACDAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 @@ -294,7 +296,7 @@ entities: version: 6 -2,1: ind: -2,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAegAAAAACegAAAAABegAAAAACegAAAAAAegAAAAAAIAAAAAACfgAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAIAAAAAACegAAAAADegAAAAAAegAAAAADegAAAAACegAAAAAAIAAAAAABHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAIAAAAAABegAAAAADegAAAAABegAAAAADegAAAAACegAAAAABIAAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAIAAAAAABegAAAAACegAAAAAAegAAAAACegAAAAACegAAAAABIAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAIAAAAAADegAAAAAAegAAAAAAegAAAAADegAAAAABegAAAAADIAAAAAAAHwAAAAADIwAAAAAAHwAAAAABIwAAAAADfgAAAAAAXQAAAAADLgAAAAAALgAAAAAAfgAAAAAAIAAAAAACegAAAAADegAAAAAAegAAAAABegAAAAAAegAAAAAAIAAAAAACfgAAAAAAIwAAAAAAHwAAAAAAIwAAAAABfgAAAAAAXQAAAAACLgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABTgAAAAABXQAAAAACTgAAAAAAXQAAAAACTgAAAAABXQAAAAABTgAAAAADXQAAAAADTgAAAAABXQAAAAAATgAAAAACXQAAAAADTgAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAfgAAAAAATQAAAAAATQAAAAACTQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAegAAAAACegAAAAABegAAAAACegAAAAAAegAAAAAAIAAAAAACfgAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAIAAAAAACegAAAAADegAAAAAAegAAAAADegAAAAACegAAAAAAIAAAAAABHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAIAAAAAABegAAAAADegAAAAABegAAAAADegAAAAACegAAAAABIAAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAIAAAAAABegAAAAACegAAAAAAegAAAAACegAAAAACegAAAAABIAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAIAAAAAADegAAAAAAegAAAAAAegAAAAADegAAAAABegAAAAADIAAAAAAAHwAAAAADIwAAAAAAHwAAAAABIwAAAAADfgAAAAAAXQAAAAADLgAAAAAALgAAAAAAfgAAAAAAIAAAAAACegAAAAADegAAAAAAegAAAAABegAAAAAAegAAAAAAIAAAAAACfgAAAAAAIwAAAAAAHwAAAAAAIwAAAAABfgAAAAAAXQAAAAACLgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABTgAAAAABXQAAAAACTgAAAAAAXQAAAAACTgAAAAABXQAAAAABTgAAAAADXQAAAAADTgAAAAABXQAAAAAATgAAAAACXQAAAAADTgAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAfgAAAAAATQAAAAAATQAAAAACTQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -2,2: ind: -2,2 @@ -471,98 +473,98 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 806: 54,25 - 807: 52,25 - 808: 46,25 - 809: 44,25 - 913: -51,14 - 2759: 4,-39 - 3192: 53,14 - 3257: 5,-35 + 803: 54,25 + 804: 52,25 + 805: 46,25 + 806: 44,25 + 910: -51,14 + 2735: 4,-39 + 3143: 53,14 + 3207: 5,-35 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 395: -4,13 - 396: -4,14 - 397: -4,15 - 398: -4,16 - 561: 49,-1 - 704: 41,6 - 1045: -3,-64 - 1046: -3,-71 - 3074: -19,29 - 3076: -4,18 - 3077: -4,19 - 3333: -40,32 - 3334: -40,34 - 3335: -40,36 - 3336: -40,38 - 3337: -40,40 - 3338: -40,42 - 3339: -40,44 - 3341: -36,30 - 3762: -39,-8 - 3808: 8,43 - 3809: 8,51 + 392: -4,13 + 393: -4,14 + 394: -4,15 + 395: -4,16 + 558: 49,-1 + 701: 41,6 + 1042: -3,-64 + 1043: -3,-71 + 3044: -19,29 + 3046: -4,18 + 3047: -4,19 + 3283: -40,32 + 3284: -40,34 + 3285: -40,36 + 3286: -40,38 + 3287: -40,40 + 3288: -40,42 + 3289: -40,44 + 3291: -36,30 + 3690: -39,-8 + 3736: 8,43 + 3737: 8,51 - node: color: '#FFFFFFFF' id: Arrows decals: - 725: -30,36 - 1273: -56,1 - 1683: -9,-21 - 3075: -11,27 + 722: -30,36 + 1270: -56,1 + 1663: -9,-21 + 3045: -11,27 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 560: 49,3 - 751: -62,40 - 1047: 3,-71 - 1048: 3,-64 - 3340: -36,31 - 3351: -26,38 - 3759: 47,-23 - 3763: -40,-4 - 3806: -8,51 - 3807: -8,43 + 557: 49,3 + 748: -62,40 + 1044: 3,-71 + 1045: 3,-64 + 3290: -36,31 + 3301: -26,38 + 3687: 47,-23 + 3691: -40,-4 + 3734: -8,51 + 3735: -8,43 - node: color: '#FFFFFFFF' id: ArrowsGreyscale decals: - 573: 23,17 + 570: 23,17 - node: cleanable: True color: '#FFFFFFFF' id: ArrowsGreyscale decals: - 2790: 9,-41 + 2766: 9,-41 - node: cleanable: True color: '#8932B8FF' id: Blasto decals: - 2427: -46.09135,-29.907255 + 2403: -46.09135,-29.907255 - node: color: '#DE3A3A96' id: Bot decals: - 3342: -20,41 - 3345: -13,39 + 3292: -20,41 + 3295: -13,39 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Bot decals: - 3810: -7,46 - 3811: -7,47 - 3812: -7,48 - 3813: 7,46 - 3814: 7,47 - 3815: 7,48 + 3738: -7,46 + 3739: -7,47 + 3740: -7,48 + 3741: 7,46 + 3742: 7,47 + 3743: 7,48 - node: color: '#FFFFFFFF' id: Bot @@ -572,1616 +574,1620 @@ entities: 147: 6,-26 184: -2,-45 185: 12,11 - 361: -37,1 - 403: -27,35 - 404: -28,35 - 405: -29,35 - 406: -29,36 - 407: -28,36 - 408: -27,36 - 505: -15,-10 - 506: -32,26 - 569: 22,18 - 570: 22,19 - 571: 20,18 - 572: 20,19 - 705: -9,-38 - 731: -31,34 - 732: -31,35 - 733: -105,17 - 734: -119,17 - 735: -98,17 - 803: 54,26 - 804: 52,26 - 805: 46,26 - 914: 44,26 - 1044: -4,-69 - 1069: -26,2 - 1224: -52,13 - 1225: -50,13 - 1234: -55,16 - 1235: -56,16 - 1267: -58,-4 - 1268: -57,-4 - 1269: -56,-4 - 1320: 54,8 - 1321: 53,8 - 1322: 52,8 - 1323: 54,10 - 1324: 53,10 - 1325: 52,10 - 1328: 54,12 - 1329: 53,12 - 1330: 52,12 - 1377: 6,-20 - 1489: 30,-23 - 1519: -48,16 - 1520: -47,17 - 1711: -25,-6 - 1820: -19,27 - 1838: -26,32 - 1839: -27,32 - 1840: -28,32 - 1841: -23,32 - 1842: -21,32 - 1974: -33,12 - 1975: -33,14 - 1978: -41,14 - 1994: -40,-6 - 2001: -41,-10 - 2019: -42,-8 - 2029: -57,7 - 2030: -57,14 - 2031: -44,-4 - 2079: -40,-20 - 2161: -11,32 - 2162: -13,32 - 2236: 3,11 - 2237: 3,15 - 2264: -5,21 - 2265: -5,20 - 2344: 17,28 - 2345: 47,14 - 2346: 47,-2 - 2347: 19,-21 - 2363: 2,-1 - 2369: 3,-8 - 2373: -20,5 - 2374: -19,5 - 2378: -13,11 - 2387: -42,19 - 2388: -42,20 - 2389: 30,9 - 2390: 36,4 - 2537: 20,16 - 2538: 19,16 - 2773: 4,-35 - 2801: -31,-19 - 2802: -6,-27 - 2803: 3,-28 - 2848: 45,-27 - 2849: 37,-25 - 2850: 32,-21 - 2851: 50,-32 - 2880: 19,26 - 2915: 29,-27 - 2923: 45,10 - 3242: -25,32 - 3243: -29,32 - 3244: -30,32 - 3256: 6,-35 - 3266: 4,-38 - 3267: 6,-38 - 3493: 39,-13 - 3539: 45,-9 - 3672: -17,-54 - 3835: 2,27 + 358: -37,1 + 400: -27,35 + 401: -28,35 + 402: -29,35 + 403: -29,36 + 404: -28,36 + 405: -27,36 + 502: -15,-10 + 503: -32,26 + 566: 22,18 + 567: 22,19 + 568: 20,18 + 569: 20,19 + 702: -9,-38 + 728: -31,34 + 729: -31,35 + 730: -105,17 + 731: -119,17 + 732: -98,17 + 800: 54,26 + 801: 52,26 + 802: 46,26 + 911: 44,26 + 1041: -4,-69 + 1066: -26,2 + 1221: -52,13 + 1222: -50,13 + 1231: -55,16 + 1232: -56,16 + 1264: -58,-4 + 1265: -57,-4 + 1266: -56,-4 + 1317: 54,8 + 1318: 53,8 + 1319: 52,8 + 1320: 54,10 + 1321: 53,10 + 1322: 52,10 + 1325: 54,12 + 1326: 53,12 + 1327: 52,12 + 1374: 6,-20 + 1486: 30,-23 + 1516: -48,16 + 1517: -47,17 + 1691: -25,-6 + 1800: -19,27 + 1817: -27,32 + 1818: -28,32 + 1819: -23,32 + 1820: -21,32 + 1952: -33,12 + 1953: -33,14 + 1956: -41,14 + 1972: -40,-6 + 1979: -41,-10 + 1997: -42,-8 + 2007: -57,7 + 2008: -57,14 + 2009: -44,-4 + 2057: -40,-20 + 2139: -11,32 + 2140: -13,32 + 2213: 3,15 + 2240: -5,21 + 2241: -5,20 + 2320: 17,28 + 2321: 47,14 + 2322: 47,-2 + 2323: 19,-21 + 2339: 2,-1 + 2345: 3,-8 + 2349: -20,5 + 2350: -19,5 + 2354: -13,11 + 2363: -42,19 + 2364: -42,20 + 2365: 30,9 + 2366: 36,4 + 2513: 20,16 + 2514: 19,16 + 2749: 4,-35 + 2777: -31,-19 + 2778: -6,-27 + 2779: 3,-28 + 2818: 45,-27 + 2819: 37,-25 + 2820: 32,-21 + 2821: 50,-32 + 2850: 19,26 + 2885: 29,-27 + 2893: 45,10 + 3192: -25,32 + 3193: -29,32 + 3194: -30,32 + 3206: 6,-35 + 3216: 4,-38 + 3217: 6,-38 + 3443: 39,-13 + 3485: 45,-9 + 3600: -17,-54 + 3763: 2,27 + 3805: 44,0 + 3806: 44,1 + 3807: 45,0 + 3808: 45,1 + 3809: 47,17 + 3810: 47,18 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Bot decals: - 3760: 51,-24 - 3761: 47,-21 + 3688: 51,-24 + 3689: 47,-21 - node: color: '#52B4E996' id: BotGreyscale decals: - 3343: -21,41 - 3344: -14,39 - 3743: 49,-9 - 3744: 48,-9 + 3293: -21,41 + 3294: -14,39 + 3671: 49,-9 + 3672: 48,-9 - node: color: '#DE3A3AFF' id: BotLeft decals: - 2799: -33,-21 + 2775: -33,-21 - node: color: '#FFFFFFFF' id: BotLeft decals: - 1270: -52,-1 - 1271: -52,-2 - 1272: -52,-3 - 1993: -40,-5 - 2002: -43,-11 - 2274: 2,28 - 2275: 2,29 - 2276: 6,23 - 2277: 7,23 - 2278: 8,23 - 2771: 4,-37 - 3254: 6,-36 - 3349: -19,46 - 3745: 50,-11 - 3828: -25,-1 - 3829: -25,0 + 1267: -52,-1 + 1268: -52,-2 + 1269: -52,-3 + 1971: -40,-5 + 1980: -43,-11 + 2250: 2,28 + 2251: 2,29 + 2252: 6,23 + 2253: 7,23 + 2254: 8,23 + 2747: 4,-37 + 3204: 6,-36 + 3299: -19,46 + 3673: 50,-11 + 3756: -25,-1 + 3757: -25,0 - node: color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 2409: 39,-6 + 2385: 39,-6 - node: color: '#DE3A3AFF' id: BotRight decals: - 2796: -35,-17 - 2797: -35,-18 - 2798: -35,-19 - 2800: -35,-20 + 2772: -35,-17 + 2773: -35,-18 + 2774: -35,-19 + 2776: -35,-20 - node: color: '#FFFFFFFF' id: BotRight decals: - 2260: -5,13 - 2261: -5,14 - 2262: -5,15 - 2263: -5,16 - 2266: -5,19 - 2267: -5,18 - 2268: 5,13 - 2772: 4,-36 - 3255: 6,-37 - 3350: -15,46 - 3394: -35,5 + 2236: -5,13 + 2237: -5,14 + 2238: -5,15 + 2239: -5,16 + 2242: -5,19 + 2243: -5,18 + 2244: 5,13 + 2748: 4,-36 + 3205: 6,-37 + 3300: -15,46 + 3344: -35,5 - node: color: '#FF8FC9FF' id: BotRightGreyscale decals: - 2074: -45,7 + 2052: -45,7 - node: color: '#FFFFFFFF' id: BotRightGreyscale decals: - 3831: -29,-1 - 3832: -29,0 - 3833: -29,1 - 3846: 7,34 - 3847: 7,35 - 3848: 7,36 - 3849: 8,36 - 3850: 8,34 - 3851: 8,35 + 3759: -29,-1 + 3760: -29,0 + 3761: -29,1 + 3774: 7,34 + 3775: 7,35 + 3776: 7,36 + 3777: 8,36 + 3778: 8,34 + 3779: 8,35 - node: color: '#79150096' id: Box decals: - 1910: -24,-12 - 1911: -24,-13 + 1888: -24,-12 + 1889: -24,-13 - node: color: '#9FED5896' id: Box decals: - 1909: -30,-8 + 1887: -30,-8 - node: color: '#EFB341FF' id: Box decals: - 1907: -30,-13 + 1885: -30,-13 - node: color: '#FFFFFFFF' id: Box decals: - 1594: 53,24 - 1595: 45,24 - 1596: 38,6 - 1597: 38,10 - 2034: -26,0 - 2035: -28,0 + 1591: 53,24 + 1592: 45,24 + 1593: 38,6 + 1594: 38,10 + 2012: -26,0 + 2013: -28,0 - node: color: '#52B4E996' id: BoxGreyscale decals: - 1908: -30,-12 + 1886: -30,-12 - node: color: '#DE3A3A96' id: BoxGreyscale decals: - 1681: -9,-21 + 1661: -9,-21 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: - 3347: -24,45 - 3348: -23,46 + 3297: -24,45 + 3298: -23,46 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 1274: -53,-2 - 1275: -55,-2 - 1276: -57,-2 - 3268: -49,-7 - 3269: -49,-5 - 3270: -49,-3 - 3271: -49,-1 - 3272: -49,3 - 3273: -51,3 - 3274: -53,3 - 3275: -55,3 - 3276: -47,12 - 3277: -49,12 - 3278: -51,12 + 1271: -53,-2 + 1272: -55,-2 + 1273: -57,-2 + 3218: -49,-7 + 3219: -49,-5 + 3220: -49,-3 + 3221: -49,-1 + 3222: -49,3 + 3223: -51,3 + 3224: -53,3 + 3225: -55,3 + 3226: -47,12 + 3227: -49,12 + 3228: -51,12 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 2375: -13,13 - 2384: -19,18 - 3035: 25,1 + 2351: -13,13 + 2360: -19,18 + 3005: 25,1 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 2381: -21,18 - 3036: 21,1 + 2357: -21,18 + 3006: 21,1 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 2376: -13,11 - 2382: -19,17 - 2971: -110,9 - 2982: -115,12 - 3324: 37,17 + 2352: -13,11 + 2358: -19,17 + 2941: -110,9 + 2952: -115,12 + 3274: 37,17 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 2383: -21,17 - 2968: -114,9 - 2987: -109,12 - 3323: 35,17 + 2359: -21,17 + 2938: -114,9 + 2957: -109,12 + 3273: 35,17 - node: color: '#FFFFFFFF' id: BrickTileDarkEndN decals: - 3039: 23,2 + 3009: 23,2 - node: color: '#FFFFFFFF' id: BrickTileDarkEndS decals: - 3033: 21,0 - 3034: 25,0 - 3040: 23,-1 + 3003: 21,0 + 3004: 25,0 + 3010: 23,-1 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 2379: -14,13 - 2979: -114,9 - 3050: 23,1 + 2355: -14,13 + 2949: -114,9 + 3020: 23,1 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 2978: -110,9 - 3051: 23,1 + 2948: -110,9 + 3021: 23,1 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 2380: -14,11 - 3038: 21,1 - 3049: 23,1 - 3845: 6,37 + 2356: -14,11 + 3008: 21,1 + 3019: 23,1 + 3773: 6,37 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 3037: 25,1 - 3048: 23,1 + 3007: 25,1 + 3018: 23,1 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 2377: -13,12 - 2974: -110,10 - 2975: -114,10 - 2989: -115,13 - 3041: 23,0 - 3325: 37,18 - 3842: 6,34 - 3843: 6,35 - 3844: 6,36 + 2353: -13,12 + 2944: -110,10 + 2945: -114,10 + 2959: -115,13 + 3011: 23,0 + 3275: 37,18 + 3770: 6,34 + 3771: 6,35 + 3772: 6,36 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 2386: -20,18 - 2976: -111,9 - 2977: -113,9 - 2980: -115,10 - 2981: -109,10 - 2983: -111,10 - 2984: -113,10 - 3046: 22,1 - 3047: 24,1 - 3211: 37,15 - 3212: 36,15 - 3213: 35,15 - 3214: 34,15 + 2362: -20,18 + 2946: -111,9 + 2947: -113,9 + 2950: -115,10 + 2951: -109,10 + 2953: -111,10 + 2954: -113,10 + 3016: 22,1 + 3017: 24,1 + 3161: 37,15 + 3162: 36,15 + 3163: 35,15 + 3164: 34,15 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 2385: -20,17 - 2969: -113,9 - 2970: -111,9 - 2985: -111,12 - 2986: -113,12 - 3044: 24,1 - 3045: 22,1 - 3322: 36,17 + 2361: -20,17 + 2939: -113,9 + 2940: -111,9 + 2955: -111,12 + 2956: -113,12 + 3014: 24,1 + 3015: 22,1 + 3272: 36,17 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 2972: -114,10 - 2973: -110,10 - 2988: -109,13 - 3042: 23,0 + 2942: -114,10 + 2943: -110,10 + 2958: -109,13 + 3012: 23,0 - node: color: '#FFFFFFFF' id: BrickTileSteelBox decals: - 1407: -38,24 - 1408: -36,24 - 1409: -34,24 - 1410: -26,24 - 1411: -28,24 - 1412: -30,24 - 2933: -24,24 - 2934: -22,24 - 2935: -20,24 - 2936: -18,24 - 2937: -16,24 - 2938: -40,24 + 1404: -38,24 + 1405: -36,24 + 1406: -34,24 + 1407: -26,24 + 1408: -28,24 + 1409: -30,24 + 2903: -24,24 + 2904: -22,24 + 2905: -20,24 + 2906: -18,24 + 2907: -16,24 + 2908: -40,24 - node: color: '#52B4E996' id: BrickTileSteelCornerNe decals: - 1900: -34,-10 - 2047: -20,-5 - 2048: -20,-5 - 3753: 51,-22 + 1878: -34,-10 + 2025: -20,-5 + 2026: -20,-5 + 3681: 51,-22 - node: color: '#9FED5896' id: BrickTileSteelCornerNe decals: - 1532: -3,-26 - 1897: -34,-7 + 1529: -3,-26 + 1875: -34,-7 - node: color: '#D381C996' id: BrickTileSteelCornerNe decals: - 1230: -45,14 - 1919: -50,5 - 1929: -45,0 - 1964: -42,-4 - 2011: -40,12 + 1227: -45,14 + 1897: -50,5 + 1907: -45,0 + 1942: -42,-4 + 1989: -40,12 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNe decals: - 1737: -19,-16 - 1887: -19,-10 - 1888: -19,-13 - 2734: -8,-45 + 1717: -19,-16 + 1865: -19,-10 + 1866: -19,-13 + 2710: -8,-45 - node: color: '#52B4E996' id: BrickTileSteelCornerNw decals: - 1899: -35,-10 - 2049: -19,-5 - 2050: -19,-5 - 3747: 47,-22 + 1877: -35,-10 + 2027: -19,-5 + 2028: -19,-5 + 3675: 47,-22 - node: color: '#9FED5896' id: BrickTileSteelCornerNw decals: - 1534: -5,-26 - 1535: -8,-27 - 1898: -35,-7 + 1531: -5,-26 + 1532: -8,-27 + 1876: -35,-7 - node: color: '#D381C996' id: BrickTileSteelCornerNw decals: - 1133: -52,5 - 1960: -46,-4 - 2012: -43,12 + 1130: -52,5 + 1938: -46,-4 + 1990: -43,12 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNw decals: - 1738: -21,-16 - 1889: -20,-10 - 1890: -20,-13 - 2735: -9,-45 + 1718: -21,-16 + 1867: -20,-10 + 1868: -20,-13 + 2711: -9,-45 - node: color: '#52B4E996' id: BrickTileSteelCornerSe decals: - 1902: -34,-11 - 2053: -20,-4 - 2054: -20,-4 - 3751: 51,-24 + 1880: -34,-11 + 2031: -20,-4 + 2032: -20,-4 + 3679: 51,-24 - node: color: '#9FED5896' id: BrickTileSteelCornerSe decals: - 1895: -34,-8 + 1873: -34,-8 - node: color: '#D381C996' id: BrickTileSteelCornerSe decals: - 1254: -52,-7 - 1930: -45,-2 - 1939: -48,-9 - 1967: -42,-9 - 2014: -40,11 - 2033: -44,-11 + 1251: -52,-7 + 1908: -45,-2 + 1917: -48,-9 + 1945: -42,-9 + 1992: -40,11 + 2011: -44,-11 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSe decals: - 1740: -19,-17 - 1893: -19,-14 - 1894: -19,-11 + 1720: -19,-17 + 1871: -19,-14 + 1872: -19,-11 - node: color: '#52B4E996' id: BrickTileSteelCornerSw decals: - 1901: -35,-11 - 2051: -19,-4 - 2052: -19,-4 - 3752: 47,-24 + 1879: -35,-11 + 2029: -19,-4 + 2030: -19,-4 + 3680: 47,-24 - node: color: '#9FED5896' id: BrickTileSteelCornerSw decals: - 1896: -35,-8 + 1874: -35,-8 - node: color: '#D381C996' id: BrickTileSteelCornerSw decals: - 1244: -58,-3 - 1251: -55,-7 - 1280: -60,1 - 1940: -50,-9 - 1954: -46,-11 - 2013: -43,11 + 1241: -58,-3 + 1248: -55,-7 + 1277: -60,1 + 1918: -50,-9 + 1932: -46,-11 + 1991: -43,11 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSw decals: - 1739: -21,-17 - 1891: -20,-14 - 1892: -20,-11 + 1719: -21,-17 + 1869: -20,-14 + 1870: -20,-11 - node: color: '#D381C996' id: BrickTileSteelInnerNe decals: - 911: -51,14 - 1920: -50,4 - 1926: -48,0 + 908: -51,14 + 1898: -50,4 + 1904: -48,0 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 3799: -2,-71 + 3727: -2,-71 - node: color: '#52B4E996' id: BrickTileSteelInnerNw decals: - 3492: 41,-15 + 3442: 41,-15 - node: color: '#9FED5896' id: BrickTileSteelInnerNw decals: - 1536: -5,-27 + 1533: -5,-27 - node: color: '#D381C996' id: BrickTileSteelInnerNw decals: - 910: -51,14 - 1134: -52,4 + 907: -51,14 + 1131: -52,4 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 3798: 2,-71 + 3726: 2,-71 - node: color: '#D381C996' id: BrickTileSteelInnerSe decals: - 1925: -48,2 - 1933: -48,-2 - 1969: -44,-9 + 1903: -48,2 + 1911: -48,-2 + 1947: -44,-9 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 3791: -2,-64 + 3719: -2,-64 - node: color: '#D381C996' id: BrickTileSteelInnerSw decals: - 1247: -55,-3 + 1244: -55,-3 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 3790: 2,-64 + 3718: 2,-64 - node: color: '#52B4E996' id: BrickTileSteelLineE decals: - 3754: 51,-23 + 3682: 51,-23 - node: color: '#9FED5896' id: BrickTileSteelLineE decals: - 1529: -3,-29 - 1530: -3,-28 - 1531: -3,-27 + 1526: -3,-29 + 1527: -3,-28 + 1528: -3,-27 - node: color: '#D381C996' id: BrickTileSteelLineE decals: - 1255: -52,-6 - 1256: -52,-5 - 1257: -52,-4 - 1258: -52,-3 - 1259: -52,-2 - 1266: -52,-1 - 1934: -48,-4 - 1935: -48,-3 - 1936: -48,-5 - 1937: -48,-7 - 1938: -48,-8 - 1965: -42,-7 - 1966: -42,-8 - 1970: -44,-10 + 1252: -52,-6 + 1253: -52,-5 + 1254: -52,-4 + 1255: -52,-3 + 1256: -52,-2 + 1263: -52,-1 + 1912: -48,-4 + 1913: -48,-3 + 1914: -48,-5 + 1915: -48,-7 + 1916: -48,-8 + 1943: -42,-7 + 1944: -42,-8 + 1948: -44,-10 - node: color: '#DE3A3A96' id: BrickTileSteelLineE decals: - 2736: -8,-46 + 2712: -8,-46 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 3778: -2,-70 - 3779: -2,-69 - 3780: -2,-68 - 3781: -2,-67 - 3782: -2,-66 - 3783: -2,-65 + 3706: -2,-70 + 3707: -2,-69 + 3708: -2,-68 + 3709: -2,-67 + 3710: -2,-66 + 3711: -2,-65 - node: color: '#52B4E996' id: BrickTileSteelLineN decals: - 3489: 40,-15 - 3490: 39,-15 - 3491: 38,-15 - 3748: 49,-22 - 3749: 48,-22 - 3758: 50,-22 + 3439: 40,-15 + 3440: 39,-15 + 3441: 38,-15 + 3676: 49,-22 + 3677: 48,-22 + 3686: 50,-22 - node: color: '#9FED5896' id: BrickTileSteelLineN decals: - 1533: -4,-26 - 1537: -6,-27 - 1538: -7,-27 + 1530: -4,-26 + 1534: -6,-27 + 1535: -7,-27 - node: color: '#D381C996' id: BrickTileSteelLineN decals: - 908: -50,14 - 909: -52,14 - 1135: -53,4 - 1226: -49,14 - 1227: -48,14 - 1228: -47,14 - 1260: -55,-1 - 1261: -57,-1 - 1921: -49,4 - 1922: -48,4 - 1923: -47,4 - 1927: -47,0 - 1928: -46,0 - 1961: -45,-4 - 1962: -44,-4 - 1963: -43,-4 + 905: -50,14 + 906: -52,14 + 1132: -53,4 + 1223: -49,14 + 1224: -48,14 + 1225: -47,14 + 1257: -55,-1 + 1258: -57,-1 + 1899: -49,4 + 1900: -48,4 + 1901: -47,4 + 1905: -47,0 + 1906: -46,0 + 1939: -45,-4 + 1940: -44,-4 + 1941: -43,-4 - node: color: '#DE3A3A96' id: BrickTileSteelLineN decals: - 1662: -8,-18 - 1663: -9,-18 - 1670: -6,-18 - 1741: -20,-16 + 1643: -8,-18 + 1644: -9,-18 + 1650: -6,-18 + 1721: -20,-16 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 3795: 1,-71 - 3796: 0,-71 - 3797: -1,-71 + 3723: 1,-71 + 3724: 0,-71 + 3725: -1,-71 - node: color: '#52B4E996' id: BrickTileSteelLineS decals: - 3755: 48,-24 - 3756: 49,-24 - 3757: 50,-24 + 3683: 48,-24 + 3684: 49,-24 + 3685: 50,-24 - node: color: '#D381C996' id: BrickTileSteelLineS decals: - 902: -46,11 - 903: -47,11 - 904: -48,11 - 905: -49,11 - 906: -50,11 - 907: -52,11 - 1239: -55,2 - 1245: -57,-3 - 1246: -56,-3 - 1252: -54,-7 - 1253: -53,-7 - 1279: -59,1 - 1924: -47,2 - 1931: -46,-2 - 1932: -47,-2 - 1968: -43,-9 - 2015: -41,11 - 2016: -42,11 - 2032: -45,-11 + 899: -46,11 + 900: -47,11 + 901: -48,11 + 902: -49,11 + 903: -50,11 + 904: -52,11 + 1236: -55,2 + 1242: -57,-3 + 1243: -56,-3 + 1249: -54,-7 + 1250: -53,-7 + 1276: -59,1 + 1902: -47,2 + 1909: -46,-2 + 1910: -47,-2 + 1946: -43,-9 + 1993: -41,11 + 1994: -42,11 + 2010: -45,-11 - node: color: '#DE3A3A96' id: BrickTileSteelLineS decals: - 1664: -6,-19 - 1665: -7,-19 - 1666: -8,-19 - 1742: -20,-17 + 1645: -6,-19 + 1646: -7,-19 + 1647: -8,-19 + 1722: -20,-17 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 3650: -15,-53 - 3792: 1,-64 - 3793: 0,-64 - 3794: -1,-64 + 3578: -15,-53 + 3720: 1,-64 + 3721: 0,-64 + 3722: -1,-64 - node: color: '#52B4E996' id: BrickTileSteelLineW decals: - 3487: 41,-13 - 3488: 41,-14 - 3750: 47,-23 + 3437: 41,-13 + 3438: 41,-14 + 3678: 47,-23 - node: color: '#9FED5896' id: BrickTileSteelLineW decals: - 1527: -8,-29 - 1528: -8,-28 + 1524: -8,-29 + 1525: -8,-28 - node: color: '#D381C996' id: BrickTileSteelLineW decals: - 1248: -55,-4 - 1249: -55,-5 - 1250: -55,-6 - 1277: -58,-2 - 1281: -60,2 - 1941: -50,-8 - 1942: -50,-7 - 1943: -50,-6 - 1944: -50,-5 - 1945: -50,-4 - 1946: -50,-3 - 1947: -50,-2 - 1948: -50,-1 - 1949: -50,0 - 1955: -46,-10 - 1956: -46,-9 - 1957: -46,-8 - 1958: -46,-7 - 1959: -46,-5 - 2071: -45,7 - 2072: -45,8 - 2073: -45,9 + 1245: -55,-4 + 1246: -55,-5 + 1247: -55,-6 + 1274: -58,-2 + 1278: -60,2 + 1919: -50,-8 + 1920: -50,-7 + 1921: -50,-6 + 1922: -50,-5 + 1923: -50,-4 + 1924: -50,-3 + 1925: -50,-2 + 1926: -50,-1 + 1927: -50,0 + 1933: -46,-10 + 1934: -46,-9 + 1935: -46,-8 + 1936: -46,-7 + 1937: -46,-5 + 2049: -45,7 + 2050: -45,8 + 2051: -45,9 - node: color: '#DE3A3A96' id: BrickTileSteelLineW decals: - 2737: -9,-46 + 2713: -9,-46 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 815: 18,12 - 3784: 2,-70 - 3785: 2,-69 - 3786: 2,-68 - 3787: 2,-67 - 3788: 2,-66 - 3789: 2,-65 + 812: 18,12 + 3712: 2,-70 + 3713: 2,-69 + 3714: 2,-68 + 3715: 2,-67 + 3716: 2,-66 + 3717: 2,-65 - node: color: '#334E6DC8' id: BrickTileWhiteBox decals: - 3026: 21,-1 + 2996: 21,-1 - node: color: '#52B4E996' id: BrickTileWhiteBox decals: - 3030: 22,2 + 3000: 22,2 - node: color: '#9FED5896' id: BrickTileWhiteBox decals: - 3028: 22,0 + 2998: 22,0 - node: color: '#A4610696' id: BrickTileWhiteBox decals: - 3032: 25,2 + 3002: 25,2 - node: color: '#D381C996' id: BrickTileWhiteBox decals: - 3031: 21,2 + 3001: 21,2 - node: color: '#D4D4D496' id: BrickTileWhiteBox decals: - 3029: 24,0 + 2999: 24,0 - node: color: '#DE3A3A96' id: BrickTileWhiteBox decals: - 3027: 25,-1 + 2997: 25,-1 - node: color: '#EFB34196' id: BrickTileWhiteBox decals: - 3043: 24,2 + 3013: 24,2 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 2743: 8,-28 - 2764: 5,-39 + 2719: 8,-28 + 2740: 5,-39 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 3506: 30,-17 - 3507: 30,-20 - 3521: 45,-9 - 3730: 49,-10 + 3452: 30,-17 + 3453: 30,-20 + 3467: 45,-9 + 3658: 49,-10 - node: color: '#79150096' id: BrickTileWhiteCornerNe decals: - 2064: -41,-20 - 3395: -33,4 - 3397: -31,1 + 2042: -41,-20 + 3345: -33,4 + 3347: -31,1 - node: color: '#B02E26FF' id: BrickTileWhiteCornerNe decals: - 2727: -4,-45 + 2703: -4,-45 - node: color: '#D381C996' id: BrickTileWhiteCornerNe decals: - 2028: -54,7 + 2006: -54,7 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 1718: -24,-19 + 1698: -24,-19 - node: color: '#EFB34141' id: BrickTileWhiteCornerNe decals: - 1903: -34,-13 + 1881: -34,-13 - node: color: '#EFD54193' id: BrickTileWhiteCornerNe decals: - 3287: 24,21 + 3237: 24,21 - node: color: '#EFD54196' id: BrickTileWhiteCornerNe decals: - 1810: -21,32 - 1832: -25,32 + 1790: -21,32 + 1812: -25,32 - node: color: '#EFD84196' id: BrickTileWhiteCornerNe decals: - 1849: -15,29 + 1827: -15,29 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 762: 40,-28 + 759: 40,-28 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 2744: 3,-28 - 2763: 3,-39 + 2720: 3,-28 + 2739: 3,-39 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 3508: 29,-17 - 3509: 29,-20 - 3520: 43,-9 - 3729: 47,-10 + 3454: 29,-17 + 3455: 29,-20 + 3466: 43,-9 + 3657: 47,-10 - node: color: '#79150096' id: BrickTileWhiteCornerNw decals: - 2065: -47,-20 - 3396: -35,4 + 2043: -47,-20 + 3346: -35,4 - node: color: '#B02E26FF' id: BrickTileWhiteCornerNw decals: - 2730: -6,-45 + 2706: -6,-45 - node: color: '#D381C996' id: BrickTileWhiteCornerNw decals: - 1232: -47,16 - 2027: -56,7 + 1229: -47,16 + 2005: -56,7 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 1717: -31,-19 + 1697: -31,-19 - node: color: '#EFB34141' id: BrickTileWhiteCornerNw decals: - 1904: -35,-13 + 1882: -35,-13 - node: color: '#EFCC4196' id: BrickTileWhiteCornerNw decals: - 2156: -13,32 + 2134: -13,32 - node: color: '#EFD54193' id: BrickTileWhiteCornerNw decals: - 3286: 19,21 + 3236: 19,21 - node: color: '#EFD54196' id: BrickTileWhiteCornerNw decals: - 1811: -23,32 - 1831: -31,32 + 1791: -23,32 + 1811: -31,32 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 760: 38,-28 - 821: 19,14 - 2372: -4,-10 + 757: 38,-28 + 818: 19,14 + 2348: -4,-10 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 2750: 5,-33 - 2756: 8,-30 - 2760: 5,-40 + 2726: 5,-33 + 2732: 8,-30 + 2736: 5,-40 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 3510: 30,-21 - 3511: 30,-18 - 3733: 49,-15 + 3456: 30,-21 + 3457: 30,-18 + 3661: 49,-15 - node: color: '#79150096' id: BrickTileWhiteCornerSe decals: - 2066: -41,-22 - 3398: -31,-1 + 2044: -41,-22 + 3348: -31,-1 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 1719: -24,-21 + 1699: -24,-21 - node: color: '#EFB34141' id: BrickTileWhiteCornerSe decals: - 1905: -34,-14 + 1883: -34,-14 - node: color: '#EFD54193' id: BrickTileWhiteCornerSe decals: - 3288: 24,17 + 3238: 24,17 - node: color: '#EFD54196' id: BrickTileWhiteCornerSe decals: - 1808: -15,27 + 1788: -15,27 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 761: 40,-32 - 820: 20,11 + 758: 40,-32 + 817: 20,11 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 2748: 3,-33 - 2762: 3,-40 + 2724: 3,-33 + 2738: 3,-40 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 3512: 29,-18 - 3513: 29,-21 - 3731: 47,-11 - 3732: 48,-15 + 3458: 29,-18 + 3459: 29,-21 + 3659: 47,-11 + 3660: 48,-15 - node: color: '#79150096' id: BrickTileWhiteCornerSw decals: - 2067: -47,-22 - 3399: -35,-1 + 2045: -47,-22 + 3349: -35,-1 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 1720: -31,-21 + 1700: -31,-21 - node: color: '#EFB34141' id: BrickTileWhiteCornerSw decals: - 1906: -35,-14 + 1884: -35,-14 - node: color: '#EFCC4196' id: BrickTileWhiteCornerSw decals: - 2152: -13,27 - 2172: -5,23 + 2130: -13,27 + 2150: -5,23 - node: color: '#EFD54193' id: BrickTileWhiteCornerSw decals: - 3289: 19,17 + 3239: 19,17 - node: color: '#EFD54196' id: BrickTileWhiteCornerSw decals: - 1813: -23,28 - 1817: -19,27 + 1793: -23,28 + 1797: -19,27 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: - 759: 38,-32 - 819: 19,11 - 3415: -4,-11 + 756: 38,-32 + 816: 19,11 + 3365: -4,-11 - node: color: '#79150096' id: BrickTileWhiteInnerNe decals: - 3404: -33,1 + 3354: -33,1 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 1715: -29,-14 - 1758: -22,-23 + 1695: -29,-14 + 1738: -22,-23 - node: color: '#EFCC4196' id: BrickTileWhiteInnerNe decals: - 2150: -3,23 - 2295: -3,21 + 2128: -3,23 + 2271: -3,21 - node: color: '#EFD84196' id: BrickTileWhiteInnerNe decals: - 1855: -21,29 + 1833: -21,29 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNw decals: - 1706: -31,-6 - 1716: -25,-14 - 1756: -18,-23 - 1757: -17,-22 + 1686: -31,-6 + 1696: -25,-14 + 1736: -18,-23 + 1737: -17,-22 - node: color: '#EFCC4196' id: BrickTileWhiteInnerNw decals: - 2294: -4,21 + 2270: -4,21 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 2753: 5,-30 + 2729: 5,-30 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 1710: -29,-6 - 1884: -31,-17 + 1690: -29,-6 + 1862: -31,-17 - node: color: '#EFCC4196' id: BrickTileWhiteInnerSe decals: - 2175: -3,23 - 2273: -3,27 + 2153: -3,23 + 2249: -3,27 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 3742: 48,-11 + 3670: 48,-11 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSw decals: - 1709: -25,-6 + 1689: -25,-6 - node: color: '#EFCC4196' id: BrickTileWhiteInnerSw decals: - 2169: -5,27 - 2174: -4,23 + 2147: -5,27 + 2152: -4,23 - node: color: '#EFD54196' id: BrickTileWhiteInnerSw decals: - 1816: -19,28 + 1796: -19,28 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 2751: 5,-32 - 2752: 5,-31 - 2757: 8,-29 + 2727: 5,-32 + 2728: 5,-31 + 2733: 8,-29 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 2854: 45,-25 - 2855: 45,-24 - 2856: 45,-23 - 2857: 45,-21 - 2858: 45,-20 - 2861: 45,-19 - 2862: 45,-18 - 2863: 45,-17 - 3522: 45,-11 - 3523: 45,-12 - 3524: 45,-13 - 3525: 45,-15 - 3727: 45,-14 - 3734: 49,-14 - 3735: 49,-13 - 3736: 49,-12 - 3737: 49,-11 + 2824: 45,-25 + 2825: 45,-24 + 2826: 45,-23 + 2827: 45,-21 + 2828: 45,-20 + 2831: 45,-19 + 2832: 45,-18 + 2833: 45,-17 + 3468: 45,-11 + 3469: 45,-12 + 3470: 45,-13 + 3471: 45,-15 + 3655: 45,-14 + 3662: 49,-14 + 3663: 49,-13 + 3664: 49,-12 + 3665: 49,-11 - node: color: '#79150096' id: BrickTileWhiteLineE decals: - 3403: -31,0 - 3410: -33,3 - 3411: -33,2 + 3353: -31,0 + 3360: -33,3 + 3361: -33,2 - node: color: '#B02E26FF' id: BrickTileWhiteLineE decals: - 2728: -4,-46 + 2704: -4,-46 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 854: -33,-21 - 855: -33,-19 - 856: -33,-18 - 857: -33,-16 - 1691: -22,-6 - 1692: -22,-5 - 1731: -24,-20 + 851: -33,-21 + 852: -33,-19 + 853: -33,-18 + 854: -33,-16 + 1671: -22,-6 + 1672: -22,-5 + 1711: -24,-20 - node: color: '#EFCC4196' id: BrickTileWhiteLineE decals: - 2148: -3,24 - 2149: -3,25 + 2126: -3,24 + 2127: -3,25 - node: color: '#EFD54193' id: BrickTileWhiteLineE decals: - 3290: 24,18 - 3291: 24,19 - 3292: 24,20 + 3240: 24,18 + 3241: 24,19 + 3242: 24,20 - node: color: '#EFD54196' id: BrickTileWhiteLineE decals: - 1809: -21,31 + 1789: -21,31 - node: color: '#EFD84196' id: BrickTileWhiteLineE decals: - 1856: -21,30 + 1834: -21,30 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 767: 40,-31 - 768: 40,-30 - 769: 40,-29 - 817: 20,12 - 818: 20,13 + 764: 40,-31 + 765: 40,-30 + 766: 40,-29 + 814: 20,12 + 815: 20,13 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 2740: 4,-28 - 2741: 5,-28 - 2742: 6,-28 - 3263: 7,-38 - 3264: 5,-38 - 3265: 3,-38 + 2716: 4,-28 + 2717: 5,-28 + 2718: 6,-28 + 3213: 7,-38 + 3214: 5,-38 + 3215: 3,-38 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 3738: 48,-10 + 3666: 48,-10 - node: color: '#79150096' id: BrickTileWhiteLineN decals: - 2060: -42,-20 - 2061: -43,-20 - 2062: -45,-20 - 2063: -46,-20 - 3409: -34,4 - 3412: -32,1 + 2038: -42,-20 + 2039: -43,-20 + 2040: -45,-20 + 2041: -46,-20 + 3359: -34,4 + 3362: -32,1 - node: color: '#B02E26FF' id: BrickTileWhiteLineN decals: - 2731: -5,-45 + 2707: -5,-45 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 1233: -46,16 - 2026: -55,7 + 1230: -46,16 + 2004: -55,7 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 1695: -23,-3 - 1696: -24,-3 - 1697: -25,-3 - 1698: -26,-3 - 1699: -28,-3 - 1700: -29,-3 - 1701: -30,-3 - 1712: -26,-14 - 1713: -27,-14 - 1714: -28,-14 - 1727: -25,-19 - 1728: -27,-19 - 1729: -29,-19 - 1730: -30,-19 - 1750: -19,-23 - 1751: -20,-23 - 1752: -21,-23 + 1675: -23,-3 + 1676: -24,-3 + 1677: -25,-3 + 1678: -26,-3 + 1679: -28,-3 + 1680: -29,-3 + 1681: -30,-3 + 1692: -26,-14 + 1693: -27,-14 + 1694: -28,-14 + 1707: -25,-19 + 1708: -27,-19 + 1709: -29,-19 + 1710: -30,-19 + 1730: -19,-23 + 1731: -20,-23 + 1732: -21,-23 - node: color: '#EFB3414A' id: BrickTileWhiteLineN decals: - 3065: 22,5 - 3066: 24,5 + 3035: 22,5 + 3036: 24,5 - node: color: '#EFCC4196' id: BrickTileWhiteLineN decals: - 2143: 2,23 - 2144: 1,23 - 2145: 0,23 - 2146: -1,23 - 2147: -2,23 - 2157: -11,32 + 2121: 2,23 + 2122: 1,23 + 2123: 0,23 + 2124: -1,23 + 2125: -2,23 + 2135: -11,32 - node: color: '#EFD54193' id: BrickTileWhiteLineN decals: - 3298: 20,21 - 3299: 21,21 - 3300: 22,21 - 3301: 23,21 + 3248: 20,21 + 3249: 21,21 + 3250: 22,21 + 3251: 23,21 - node: color: '#EFD54196' id: BrickTileWhiteLineN decals: - 1833: -26,32 - 1834: -27,32 - 1835: -28,32 - 1836: -29,32 - 1837: -30,32 + 1813: -27,32 + 1814: -28,32 + 1815: -29,32 + 1816: -30,32 - node: color: '#EFD5692E' id: BrickTileWhiteLineN decals: - 2569: 39,-35 - 2570: 40,-35 - 2571: 41,-35 + 2545: 39,-35 + 2546: 40,-35 + 2547: 41,-35 - node: color: '#EFD84196' id: BrickTileWhiteLineN decals: - 1850: -16,29 - 1851: -18,29 - 1852: -17,29 - 1853: -19,29 - 1854: -20,29 + 1828: -16,29 + 1829: -18,29 + 1830: -17,29 + 1831: -19,29 + 1832: -20,29 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 770: 39,-28 + 767: 39,-28 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 2354: 3,-1 - 2355: 2,-1 - 2356: 1,-1 - 2357: -1,-1 - 2358: -2,-1 - 2359: -3,-1 - 2749: 4,-33 - 2754: 6,-30 - 2755: 7,-30 - 2761: 4,-40 - 3260: 7,-35 - 3261: 5,-35 - 3262: 3,-35 + 2330: 3,-1 + 2331: 2,-1 + 2332: 1,-1 + 2333: -1,-1 + 2334: -2,-1 + 2335: -3,-1 + 2725: 4,-33 + 2730: 6,-30 + 2731: 7,-30 + 2737: 4,-40 + 3210: 7,-35 + 3211: 5,-35 + 3212: 3,-35 - node: color: '#79150096' id: BrickTileWhiteLineS decals: - 2055: -42,-22 - 2056: -43,-22 - 2057: -44,-22 - 2058: -45,-22 - 2059: -46,-22 - 3400: -34,-1 - 3401: -33,-1 - 3402: -32,-1 + 2033: -42,-22 + 2034: -43,-22 + 2035: -44,-22 + 2036: -45,-22 + 2037: -46,-22 + 3350: -34,-1 + 3351: -33,-1 + 3352: -32,-1 - node: color: '#D381C925' id: BrickTileWhiteLineS decals: - 811: -44,6 + 808: -44,6 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 2022: -54,14 - 2023: -55,14 - 2024: -56,14 - 2025: -57,14 + 2000: -54,14 + 2001: -55,14 + 2002: -56,14 + 2003: -57,14 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1707: -26,-6 - 1708: -28,-6 - 1721: -30,-21 - 1722: -29,-21 - 1723: -28,-21 - 1724: -27,-21 - 1725: -26,-21 - 1726: -25,-21 - 1878: -23,-17 - 1879: -24,-17 - 1880: -25,-17 - 1881: -27,-17 - 1882: -29,-17 - 1883: -30,-17 + 1687: -26,-6 + 1688: -28,-6 + 1701: -30,-21 + 1702: -29,-21 + 1703: -28,-21 + 1704: -27,-21 + 1705: -26,-21 + 1706: -25,-21 + 1856: -23,-17 + 1857: -24,-17 + 1858: -25,-17 + 1859: -27,-17 + 1860: -29,-17 + 1861: -30,-17 - node: color: '#EFCC4196' id: BrickTileWhiteLineS decals: - 2138: 2,23 - 2139: 1,23 - 2140: 0,23 - 2141: -1,23 - 2142: -2,23 - 2151: -11,27 - 2163: -10,27 - 2164: -9,27 - 2165: -8,27 - 2166: -7,27 - 2167: -6,27 - 2269: 1,27 - 2270: 0,27 - 2271: -1,27 - 2272: -2,27 + 2116: 2,23 + 2117: 1,23 + 2118: 0,23 + 2119: -1,23 + 2120: -2,23 + 2129: -11,27 + 2141: -10,27 + 2142: -9,27 + 2143: -8,27 + 2144: -7,27 + 2145: -6,27 + 2245: 1,27 + 2246: 0,27 + 2247: -1,27 + 2248: -2,27 - node: color: '#EFD54193' id: BrickTileWhiteLineS decals: - 3293: 22,17 - 3294: 21,17 - 3295: 20,17 + 3243: 22,17 + 3244: 21,17 + 3245: 20,17 - node: color: '#EFD54196' id: BrickTileWhiteLineS decals: - 1814: -21,28 - 1815: -20,28 - 1818: -17,27 - 1819: -16,27 + 1794: -21,28 + 1795: -20,28 + 1798: -17,27 + 1799: -16,27 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 763: 39,-32 - 794: -3,-9 - 2370: -3,-11 - 2371: -4,-11 + 760: 39,-32 + 791: -3,-9 + 2346: -3,-11 + 2347: -4,-11 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 2745: 3,-29 - 2746: 3,-31 - 2747: 3,-32 + 2721: 3,-29 + 2722: 3,-31 + 2723: 3,-32 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 2852: 43,-22 - 2853: 43,-23 - 3279: 43,-25 - 3494: 43,-21 - 3495: 43,-20 - 3496: 43,-18 - 3497: 43,-17 - 3516: 43,-15 - 3517: 43,-13 - 3518: 43,-12 - 3519: 43,-11 - 3739: 48,-12 - 3740: 48,-13 - 3741: 48,-14 + 2822: 43,-22 + 2823: 43,-23 + 3229: 43,-25 + 3444: 43,-21 + 3445: 43,-20 + 3446: 43,-18 + 3447: 43,-17 + 3462: 43,-15 + 3463: 43,-13 + 3464: 43,-12 + 3465: 43,-11 + 3667: 48,-12 + 3668: 48,-13 + 3669: 48,-14 - node: color: '#79150096' id: BrickTileWhiteLineW decals: - 3405: -35,0 - 3406: -35,1 - 3407: -35,2 - 3408: -35,3 + 3355: -35,0 + 3356: -35,1 + 3357: -35,2 + 3358: -35,3 - node: color: '#B02E26FF' id: BrickTileWhiteLineW decals: - 2729: -6,-46 + 2705: -6,-46 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 1231: -47,15 + 1228: -47,15 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 848: -35,-21 - 849: -35,-20 - 850: -35,-19 - 851: -35,-18 - 852: -35,-17 - 853: -35,-16 - 1705: -31,-5 - 1753: -17,-21 - 1754: -17,-20 - 1755: -17,-19 - 1875: -21,-20 - 1876: -21,-22 + 845: -35,-21 + 846: -35,-20 + 847: -35,-19 + 848: -35,-18 + 849: -35,-17 + 850: -35,-16 + 1685: -31,-5 + 1733: -17,-21 + 1734: -17,-20 + 1735: -17,-19 + 1853: -21,-20 + 1854: -21,-22 - node: color: '#EFCC4196' id: BrickTileWhiteLineW decals: - 2153: -13,29 - 2154: -13,30 - 2155: -13,31 - 2168: -5,26 - 2170: -5,25 - 2171: -5,24 - 2173: -4,22 + 2131: -13,29 + 2132: -13,30 + 2133: -13,31 + 2146: -5,26 + 2148: -5,25 + 2149: -5,24 + 2151: -4,22 - node: color: '#EFD54193' id: BrickTileWhiteLineW decals: - 3296: 19,19 - 3297: 19,20 + 3246: 19,19 + 3247: 19,20 - node: color: '#EFD54196' id: BrickTileWhiteLineW decals: - 1812: -23,29 + 1792: -23,29 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 764: 38,-31 - 765: 38,-30 - 766: 38,-29 - 816: 19,13 + 761: 38,-31 + 762: 38,-30 + 763: 38,-29 + 813: 19,13 - node: color: '#FFFFFFFF' id: Bushb1 decals: - 951: -5.0759892,-67.511505 + 948: -5.0759892,-67.511505 - node: color: '#FFFFFFFF' id: Bushb2 decals: - 487: -6.033051,-6.006569 + 484: -6.033051,-6.006569 - node: color: '#FFFFFFFF' id: Bushb3 decals: - 952: 5.128752,-67.43338 + 949: 5.128752,-67.43338 - node: color: '#FFFFFFFF' id: Bushe2 decals: - 961: -4.964998,-66.74588 - 1549: -48.067986,5.0444627 + 958: -4.964998,-66.74588 + 1546: -48.067986,5.0444627 - node: color: '#FFFFFFFF' id: Bushe3 decals: - 927: 49.993763,22.959341 + 924: 49.993763,22.959341 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 926: 48.900013,22.974966 - 960: -5.339998,-66.605255 - 962: 5.097502,-68.605255 - 1550: -46.83361,5.0444627 + 923: 48.900013,22.974966 + 957: -5.339998,-66.605255 + 959: 5.097502,-68.605255 + 1547: -46.83361,5.0444627 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 1547: -46.89611,5.0132127 + 1544: -46.89611,5.0132127 - node: color: '#FFFFFFFF' id: Bushf3 decals: - 1548: -48.14611,4.9663377 + 1545: -48.14611,4.9663377 - node: color: '#FFFFFFFF' id: Bushh1 decals: - 1343: 11.007317,-66.29063 + 1340: 11.007317,-66.29063 - node: color: '#FFFFFFFF' id: Bushh2 decals: - 1344: 11.022942,-68.72813 + 1341: 11.022942,-68.72813 - node: color: '#FFFFFFFF' id: Bushi1 decals: 219: 32.840233,-26.000742 - 394: 8.857405,4.0894966 - 923: 48.025013,28.959341 - 3321: 28.940447,-35.765743 + 391: 8.857405,4.0894966 + 920: 48.025013,28.959341 + 3271: 28.940447,-35.765743 - node: color: '#FFFFFFFF' id: Bushi2 decals: - 1338: 11.038567,-68.5875 + 1335: 11.038567,-68.5875 - node: color: '#FFFFFFFF' id: Bushi3 decals: 218: 34.512108,-25.938242 - 392: 12.107405,4.5426216 - 924: 49.946888,28.959341 - 979: -0.82901984,-67.68338 - 1337: 10.976067,-67.41563 + 389: 12.107405,4.5426216 + 921: 49.946888,28.959341 + 976: -0.82901984,-67.68338 + 1334: 10.976067,-67.41563 - node: color: '#FFFFFFFF' id: Bushi4 decals: - 393: 11.013655,3.2457466 - 978: 0.8428552,-67.55838 - 1336: 10.991692,-65.86875 + 390: 11.013655,3.2457466 + 975: 0.8428552,-67.55838 + 1333: 10.991692,-65.86875 - node: color: '#FFFFFFFF' id: Bushj2 decals: 220: 33.887108,-25.969492 - 964: -5.121248,-68.96463 - 1546: -47.52111,5.1225877 + 961: -5.121248,-68.96463 + 1543: -47.52111,5.1225877 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 963: 5.097502,-65.99588 - 980: -5,-66 + 960: 5.097502,-65.99588 + 977: -5,-66 - node: color: '#FFFFFFFF' id: Bushm2 decals: - 1342: 10.991692,-67.525 + 1339: 10.991692,-67.525 - node: color: '#FFFFFFFF' id: Bushn1 decals: - 488: -6.033051,-6.444069 - 925: 48.978138,29.037466 + 485: -6.033051,-6.444069 + 922: 48.978138,29.037466 - node: color: '#FFFFFFFF' id: Caution decals: - 1070: -27,-1 - 1682: -9,-21 - 2535: -55,17 + 1067: -27,-1 + 1662: -9,-21 + 2511: -55,17 + 3839: -26,32 - node: color: '#DE3A3A96' id: CautionGreyscale decals: - 1684: -7,-18 + 1664: -7,-18 - node: color: '#52B4E996' id: CheckerNESW decals: - 1345: -20,-8 - 1346: -20,-7 - 1347: -19,-7 - 1348: -19,-8 + 1342: -20,-8 + 1343: -20,-7 + 1344: -19,-7 + 1345: -19,-8 - node: color: '#D4D4D428' id: CheckerNESW @@ -2195,69 +2201,69 @@ entities: color: '#D4D4D453' id: CheckerNESW decals: - 1843: -20,30 - 1844: -17,30 - 1845: -16,30 + 1821: -20,30 + 1822: -17,30 + 1823: -16,30 - node: color: '#D4D4D46C' id: CheckerNESW decals: - 1288: 24,-38 - 1289: 24,-37 - 1290: 25,-37 - 1291: 25,-38 - 1292: 26,-38 - 1293: 26,-37 - 1294: 27,-38 - 1295: 27,-37 - 1296: 27,-36 - 1297: 26,-36 - 1298: 25,-36 - 1299: 24,-36 - 1300: 23,-36 - 1301: 23,-35 - 1302: 24,-35 - 1303: 26,-34 - 1304: 24,-34 - 1305: 23,-34 - 1306: 25,-34 - 1307: 26,-33 - 1308: 25,-33 - 1309: 24,-33 - 1310: 23,-33 - 1311: 23,-32 - 1312: 24,-32 - 1313: 25,-32 - 1314: 26,-32 - 1315: 26,-31 - 1316: 25,-31 - 1317: 24,-31 - 1318: 23,-31 + 1285: 24,-38 + 1286: 24,-37 + 1287: 25,-37 + 1288: 25,-38 + 1289: 26,-38 + 1290: 26,-37 + 1291: 27,-38 + 1292: 27,-37 + 1293: 27,-36 + 1294: 26,-36 + 1295: 25,-36 + 1296: 24,-36 + 1297: 23,-36 + 1298: 23,-35 + 1299: 24,-35 + 1300: 26,-34 + 1301: 24,-34 + 1302: 23,-34 + 1303: 25,-34 + 1304: 26,-33 + 1305: 25,-33 + 1306: 24,-33 + 1307: 23,-33 + 1308: 23,-32 + 1309: 24,-32 + 1310: 25,-32 + 1311: 26,-32 + 1312: 26,-31 + 1313: 25,-31 + 1314: 24,-31 + 1315: 23,-31 - node: color: '#D4D4D496' id: CheckerNESW decals: - 3571: 24,-39 - 3572: 25,-39 - 3573: 26,-39 - 3574: 27,-39 - 3575: 26,-35 - 3576: 25,-35 - 3724: 23,-38 - 3725: 23,-37 - 3726: 23,-39 + 3500: 24,-39 + 3501: 25,-39 + 3502: 26,-39 + 3503: 27,-39 + 3504: 26,-35 + 3505: 25,-35 + 3652: 23,-38 + 3653: 23,-37 + 3654: 23,-39 - node: color: '#334E6DC8' id: CheckerNWSE decals: - 618: -63,17 - 619: -64,17 - 620: -65,17 - 621: -66,17 - 622: -67,17 - 623: -68,17 - 624: -69,17 - 625: -62,17 + 615: -63,17 + 616: -64,17 + 617: -65,17 + 618: -66,17 + 619: -67,17 + 620: -68,17 + 621: -69,17 + 622: -62,17 - node: color: '#52B4E996' id: CheckerNWSE @@ -2277,107 +2283,113 @@ entities: 234: 34,-13 235: 35,-13 236: 36,-13 - 1848: -20,30 - 2832: 44,-14 - 2833: 44,-13 - 2834: 44,-12 - 2835: 44,-11 - 2836: 44,-10 - 3531: 44,-18 - 3532: 44,-19 - 3533: 44,-20 - 3534: 44,-21 - 3535: 44,-22 - 3536: 44,-23 - 3537: 44,-24 + 1826: -20,30 + 2808: 44,-14 + 2809: 44,-13 + 2810: 44,-12 + 2811: 44,-11 + 2812: 44,-10 + 3477: 44,-18 + 3478: 44,-19 + 3479: 44,-20 + 3480: 44,-21 + 3481: 44,-22 + 3482: 44,-23 + 3483: 44,-24 + 3799: 34,-19 + 3800: 35,-19 + 3801: 36,-19 + 3802: 37,-19 + 3803: 38,-19 + 3804: 39,-19 - node: color: '#79150096' id: CheckerNWSE decals: - 1671: -9,-16 - 1672: -8,-16 - 1673: -7,-16 - 1674: -6,-16 + 1651: -9,-16 + 1652: -8,-16 + 1653: -7,-16 + 1654: -6,-16 - node: color: '#A4610696' id: CheckerNWSE decals: - 518: 48,16 - 519: 47,16 - 520: 47,17 - 521: 47,18 - 522: 48,18 - 523: 48,17 - 524: 49,16 - 525: 49,17 - 526: 49,18 - 527: 50,18 - 528: 50,17 - 529: 51,18 - 530: 51,17 - 712: 50,16 - 713: 51,16 + 515: 48,16 + 516: 47,16 + 517: 47,17 + 518: 47,18 + 519: 48,18 + 520: 48,17 + 521: 49,16 + 522: 49,17 + 523: 49,18 + 524: 50,18 + 525: 50,17 + 526: 51,18 + 527: 51,17 + 709: 50,16 + 710: 51,16 - node: color: '#D381C93E' id: CheckerNWSE decals: - 319: -45,2 - 320: -45,3 - 321: -44,3 - 322: -44,2 - 323: -43,2 - 324: -43,3 - 325: -42,3 - 326: -42,2 - 327: -42,4 - 328: -43,4 - 329: -44,4 - 330: -45,4 - 331: -45,5 - 332: -44,5 - 333: -43,5 - 334: -42,5 + 316: -45,2 + 317: -45,3 + 318: -44,3 + 319: -44,2 + 320: -43,2 + 321: -43,3 + 322: -42,3 + 323: -42,2 + 324: -42,4 + 325: -43,4 + 326: -44,4 + 327: -45,4 + 328: -45,5 + 329: -44,5 + 330: -43,5 + 331: -42,5 - node: color: '#D381C996' id: CheckerNWSE decals: - 337: -54,8 - 338: -55,8 - 339: -56,8 - 340: -57,8 - 341: -57,9 - 342: -56,9 - 343: -55,9 - 344: -54,9 - 345: -54,10 - 346: -55,10 - 347: -56,10 - 348: -57,10 - 349: -57,11 - 350: -56,11 - 351: -55,11 - 352: -54,11 - 353: -54,12 - 354: -55,12 - 355: -56,12 - 356: -57,12 - 357: -57,13 - 358: -56,13 - 359: -55,13 - 360: -54,13 + 334: -54,8 + 335: -55,8 + 336: -56,8 + 337: -57,8 + 338: -57,9 + 339: -56,9 + 340: -55,9 + 341: -54,9 + 342: -54,10 + 343: -55,10 + 344: -56,10 + 345: -57,10 + 346: -57,11 + 347: -56,11 + 348: -55,11 + 349: -54,11 + 350: -54,12 + 351: -55,12 + 352: -56,12 + 353: -57,12 + 354: -57,13 + 355: -56,13 + 356: -55,13 + 357: -54,13 - node: color: '#D4D4D406' id: CheckerNWSE decals: - 2410: -33,-4 - 2411: -33,-3 - 2412: -34,-3 - 2413: -35,-3 - 2414: -35,-4 - 2415: -34,-4 - 2416: -35,-5 - 2417: -34,-5 - 2418: -33,-5 + 2386: -33,-4 + 2387: -33,-3 + 2388: -34,-3 + 2389: -35,-3 + 2390: -35,-4 + 2391: -34,-4 + 2392: -35,-5 + 2393: -34,-5 + 2394: -33,-5 - node: color: '#D4D4D428' id: CheckerNWSE @@ -2392,176 +2404,176 @@ entities: 171: 10,14 172: 11,14 173: 12,14 - 364: 14,-14 - 365: 14,-13 - 366: 14,-12 - 1087: 1,-55 - 1088: 0,-55 - 1089: -1,-55 - 1090: -1,-56 - 1091: 0,-56 - 1092: 1,-56 - 1093: 1,-57 - 1094: 0,-57 - 1095: -1,-57 - 1096: 0,-58 - 1097: 0,-54 + 361: 14,-14 + 362: 14,-13 + 363: 14,-12 + 1084: 1,-55 + 1085: 0,-55 + 1086: -1,-55 + 1087: -1,-56 + 1088: 0,-56 + 1089: 1,-56 + 1090: 1,-57 + 1091: 0,-57 + 1092: -1,-57 + 1093: 0,-58 + 1094: 0,-54 - node: color: '#DE3A3A96' id: CheckerNWSE decals: - 1846: -16,30 - 1847: -17,30 + 1824: -16,30 + 1825: -17,30 - node: color: '#EFB34196' id: CheckerNWSE decals: - 421: 10,17 - 422: 9,17 - 423: 8,17 - 424: 8,18 - 425: 9,18 - 426: 10,18 - 427: 10,19 - 428: 9,19 - 429: 8,19 - 430: 8,20 - 431: 8,21 - 432: 9,21 - 433: 9,20 - 434: 10,20 - 435: 10,21 + 418: 10,17 + 419: 9,17 + 420: 8,17 + 421: 8,18 + 422: 9,18 + 423: 10,18 + 424: 10,19 + 425: 9,19 + 426: 8,19 + 427: 8,20 + 428: 8,21 + 429: 9,21 + 430: 9,20 + 431: 10,20 + 432: 10,21 - node: color: '#FFEF9292' id: CheckerNWSE decals: - 2818: 44,-28 - 2819: 44,-29 - 2820: 44,-30 - 2821: 44,-31 - 2822: 44,-32 - 2823: 44,-33 - 2824: 44,-34 + 2794: 44,-28 + 2795: 44,-29 + 2796: 44,-30 + 2797: 44,-31 + 2798: 44,-32 + 2799: 44,-33 + 2800: 44,-34 - node: cleanable: True color: '#00000069' id: Damaged decals: - 2785: -58,26 - 2786: -59,26 - 2787: -60,27 + 2761: -58,26 + 2762: -59,26 + 2763: -60,27 - node: angle: 1.5707963267948966 rad color: '#79150096' id: Delivery decals: - 2782: -7,-47 + 2758: -7,-47 - node: color: '#DE3A3A96' id: Delivery decals: - 2932: -32,-20 - 3413: -32,2 - 3414: -31,2 - 3746: 51,-21 + 2902: -32,-20 + 3363: -32,2 + 3364: -31,2 + 3674: 51,-21 - node: color: '#FFFFFFFF' id: Delivery decals: 148: 7,-26 - 399: -25,35 - 400: -25,36 - 401: -26,36 - 402: -26,35 - 1326: 51,10 - 1327: 51,8 - 1331: 51,12 - 1521: -46,17 - 1591: 41,19 - 1592: 40,19 - 1593: 39,19 - 1804: -21,26 - 1805: -23,26 - 1973: -41,-5 - 2572: 41,-35 - 2930: 42,6 - 2931: -18,26 - 3067: 0,30 - 3078: 23,3 - 3091: 38,1 - 3346: -21,43 - 3353: -17,47 - 3354: -18,48 - 3355: -16,48 - 3431: 17,-21 - 3432: 16,-21 - 3433: 15,-21 - 3434: 1,-27 - 3435: 0,-27 - 3436: -1,-27 - 3437: -1,-22 - 3438: 0,-22 - 3439: 1,-22 - 3448: -13,-25 - 3449: -13,-24 - 3450: -13,-23 - 3451: -19,7 - 3452: -19,8 - 3453: -19,9 - 3454: -13,7 - 3455: -13,8 - 3456: -13,9 - 3475: 18,7 - 3476: 18,8 - 3477: 18,9 - 3478: 14,7 - 3479: 14,8 - 3480: 14,9 - 3481: 18,23 - 3482: 18,24 - 3483: 18,25 - 3598: 1,-75 - 3599: 0,-75 - 3600: -1,-75 - 3601: 1,-60 - 3602: 0,-60 - 3603: -1,-60 - 3604: 1,-53 - 3605: 0,-53 - 3606: -1,-53 - 3607: -1,-44 - 3608: 0,-44 - 3609: 1,-44 - 3616: 4,-56 - 3617: 4,-55 - 3618: 4,-54 - 3619: -4,-56 - 3620: -4,-55 - 3621: -4,-54 + 396: -25,35 + 397: -25,36 + 398: -26,36 + 399: -26,35 + 1323: 51,10 + 1324: 51,8 + 1328: 51,12 + 1518: -46,17 + 1588: 41,19 + 1589: 40,19 + 1590: 39,19 + 1784: -21,26 + 1785: -23,26 + 1951: -41,-5 + 2548: 41,-35 + 2900: 42,6 + 2901: -18,26 + 3037: 0,30 + 3048: 23,3 + 3061: 38,1 + 3296: -21,43 + 3303: -17,47 + 3304: -18,48 + 3305: -16,48 + 3381: 17,-21 + 3382: 16,-21 + 3383: 15,-21 + 3384: 1,-27 + 3385: 0,-27 + 3386: -1,-27 + 3387: -1,-22 + 3388: 0,-22 + 3389: 1,-22 + 3398: -13,-25 + 3399: -13,-24 + 3400: -13,-23 + 3401: -19,7 + 3402: -19,8 + 3403: -19,9 + 3404: -13,7 + 3405: -13,8 + 3406: -13,9 + 3425: 18,7 + 3426: 18,8 + 3427: 18,9 + 3428: 14,7 + 3429: 14,8 + 3430: 14,9 + 3431: 18,23 + 3432: 18,24 + 3433: 18,25 + 3527: 1,-75 + 3528: 0,-75 + 3529: -1,-75 + 3530: 1,-60 + 3531: 0,-60 + 3532: -1,-60 + 3533: 1,-53 + 3534: 0,-53 + 3535: -1,-53 + 3536: -1,-44 + 3537: 0,-44 + 3538: 1,-44 + 3545: 4,-56 + 3546: 4,-55 + 3547: 4,-54 + 3548: -4,-56 + 3549: -4,-55 + 3550: -4,-54 - node: color: '#52B4E996' id: DeliveryGreyscale decals: - 3514: 31,-20 - 3515: 31,-18 + 3460: 31,-20 + 3461: 31,-18 - node: color: '#D381C941' id: DeliveryGreyscale decals: - 3327: -53,0 - 3328: -56,0 + 3277: -53,0 + 3278: -56,0 - node: color: '#D381C996' id: DeliveryGreyscale decals: - 1240: -56,1 + 1237: -56,1 - node: cleanable: True color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 3238: -61,17 - 3239: -70,17 + 3188: -61,17 + 3189: -70,17 - node: cleanable: True color: '#FFFFFFFF' @@ -2577,157 +2589,175 @@ entities: 52: 18,-51 53: 17,-51 54: 17,-51 - 2455: -45,-32 - 2456: -46,-32 - 2457: -46,-33 - 2458: -47,-33 - 2459: -46,-34 - 2460: -48,-32 - 2461: -49,-31 - 2462: -46,-30 - 2463: -49,-33 - 2464: -49,-32 - 2465: -48,-33 - 2466: -50,-32 - 2467: -50,-31 - 2468: -47,-32 - 2469: -48,-31 - 2470: -47,-34 - 2471: -47,-35 - 2472: -46,-35 - 2473: -45,-34 - 2474: -44,-34 - 2475: -44,-32 - 2476: -46,-31 - 2477: -49,-30 - 2478: -52,-30 - 2479: -52,-33 - 2480: -45,-29 - 2481: -31,-31 - 2482: -31,-32 - 2483: -29,-32 - 2484: -32,-32 - 2485: -35,-32 - 2486: -34,-32 - 2487: -39,-32 - 2488: -40,-31 - 2489: -34,-31 - 2490: -20,-35 - 2491: -11,-45 - 2492: -11,-44 - 2493: -13,-45 - 2494: -14,-45 - 2501: 53,-7 - 2502: 53,-9 - 2503: 53,-10 - 2504: 53,-11 - 2505: 54,-11 - 2506: 55,-12 - 2507: 55,-15 - 2508: 50,-6 - 2509: 47,-5 - 2510: 33,-5 - 2511: 33,-6 - 2512: 31,-7 - 2513: 29,-8 - 2514: 33,-3 - 2515: 30,-10 - 2516: 31,-2 - 2517: 30,-1 - 2518: 32,1 - 2519: 31,2 - 2520: 57,-25 - 2521: 59,-42 - 2522: 58,-43 - 2523: 56,-43 - 2524: 47,-43 - 2525: 45,-41 - 2526: 31,-40 - 2527: 30,-40 - 2539: 36,20 - 2540: 37,20 - 2541: 35,21 - 2542: 32,20 - 2543: 30,20 - 2544: 27,21 - 2545: 31,17 - 2546: 32,11 - 2547: 29,12 - 2556: -31,-35 - 2557: -33,-36 - 2558: -30,-35 - 2559: -17,-38 - 2560: -17,-37 - 2561: -18,-35 - 2562: -13,-46 - 2563: -12,-47 - 2564: -8,-50 - 2565: -8,-52 - 2566: -15,-49 - 2629: 13,-46 - 2630: 14,-47 - 2631: 15,-45 - 2632: 17,-44 - 2633: 19,-47 - 2634: 11,-46 - 2635: 10,-47 - 2636: 10,-49 - 2637: 13,-40 - 2638: 12,-40 - 2639: 11,-41 - 2640: 5,-51 - 2774: 5,-43 - 2775: 6,-43 - 2776: -3,-43 - 2777: -6,-41 - 2778: -13,-40 - 2779: -12,-41 - 2780: -12,-42 - 2781: -14,-41 - 2791: 41,-50 - 2792: 42,-52 - 2793: 41,-49 - 2794: 38,-52 - 2795: 22,-49 - 2939: -59,44 - 2940: -59,45 - 2941: -60,46 - 2942: -58,47 - 2943: -57,44 - 2944: -58,43 - 2945: -59,40 - 2946: -60,41 - 2947: -60,42 - 2948: -61,43 - 2949: -61,44 - 2950: -62,45 - 2951: -62,47 - 2952: -63,47 - 2953: -61,48 - 2954: -61,49 - 2955: -62,50 - 2956: -62,51 - 2957: -58,52 - 2958: -58,51 - 2959: -59,51 - 2960: -59,50 - 2961: -58,49 - 2962: -53,46 - 2963: -56,46 - 2964: -58,37 - 2965: -59,37 - 2966: -60,39 - 2967: -59,36 - 3234: 40,-48 - 3235: 41,-45 - 3236: 40,-44 - 3237: 43,-46 - 3240: -23,-33 - 3241: -24,-33 - 3566: 27,-41 - 3567: 22,-41 - 3568: 28,-42 - 3569: 28,-41 + 2431: -45,-32 + 2432: -46,-32 + 2433: -46,-33 + 2434: -47,-33 + 2435: -46,-34 + 2436: -48,-32 + 2437: -49,-31 + 2438: -46,-30 + 2439: -49,-33 + 2440: -49,-32 + 2441: -48,-33 + 2442: -50,-32 + 2443: -50,-31 + 2444: -47,-32 + 2445: -48,-31 + 2446: -47,-34 + 2447: -47,-35 + 2448: -46,-35 + 2449: -45,-34 + 2450: -44,-34 + 2451: -44,-32 + 2452: -46,-31 + 2453: -49,-30 + 2454: -52,-30 + 2455: -52,-33 + 2456: -45,-29 + 2457: -31,-31 + 2458: -31,-32 + 2459: -29,-32 + 2460: -32,-32 + 2461: -35,-32 + 2462: -34,-32 + 2463: -39,-32 + 2464: -40,-31 + 2465: -34,-31 + 2466: -20,-35 + 2467: -11,-45 + 2468: -11,-44 + 2469: -13,-45 + 2470: -14,-45 + 2477: 53,-7 + 2478: 53,-9 + 2479: 53,-10 + 2480: 53,-11 + 2481: 54,-11 + 2482: 55,-12 + 2483: 55,-15 + 2484: 50,-6 + 2485: 47,-5 + 2486: 33,-5 + 2487: 33,-6 + 2488: 31,-7 + 2489: 29,-8 + 2490: 33,-3 + 2491: 30,-10 + 2492: 31,-2 + 2493: 30,-1 + 2494: 32,1 + 2495: 31,2 + 2496: 57,-25 + 2497: 59,-42 + 2498: 58,-43 + 2499: 56,-43 + 2500: 47,-43 + 2501: 45,-41 + 2502: 31,-40 + 2503: 30,-40 + 2515: 36,20 + 2516: 37,20 + 2517: 35,21 + 2518: 32,20 + 2519: 30,20 + 2520: 27,21 + 2521: 31,17 + 2522: 32,11 + 2523: 29,12 + 2532: -31,-35 + 2533: -33,-36 + 2534: -30,-35 + 2535: -17,-38 + 2536: -17,-37 + 2537: -18,-35 + 2538: -13,-46 + 2539: -12,-47 + 2540: -8,-50 + 2541: -8,-52 + 2542: -15,-49 + 2605: 13,-46 + 2606: 14,-47 + 2607: 15,-45 + 2608: 17,-44 + 2609: 19,-47 + 2610: 11,-46 + 2611: 10,-47 + 2612: 10,-49 + 2613: 13,-40 + 2614: 12,-40 + 2615: 11,-41 + 2616: 5,-51 + 2750: 5,-43 + 2751: 6,-43 + 2752: -3,-43 + 2753: -6,-41 + 2754: -13,-40 + 2755: -12,-41 + 2756: -12,-42 + 2757: -14,-41 + 2767: 41,-50 + 2768: 42,-52 + 2769: 41,-49 + 2770: 38,-52 + 2771: 22,-49 + 2909: -59,44 + 2910: -59,45 + 2911: -60,46 + 2912: -58,47 + 2913: -57,44 + 2914: -58,43 + 2915: -59,40 + 2916: -60,41 + 2917: -60,42 + 2918: -61,43 + 2919: -61,44 + 2920: -62,45 + 2921: -62,47 + 2922: -63,47 + 2923: -61,48 + 2924: -61,49 + 2925: -62,50 + 2926: -62,51 + 2927: -58,52 + 2928: -58,51 + 2929: -59,51 + 2930: -59,50 + 2931: -58,49 + 2932: -53,46 + 2933: -56,46 + 2934: -58,37 + 2935: -59,37 + 2936: -60,39 + 2937: -59,36 + 3184: 40,-48 + 3185: 41,-45 + 3186: 40,-44 + 3187: 43,-46 + 3190: -23,-33 + 3191: -24,-33 + 3495: 27,-41 + 3496: 22,-41 + 3497: 28,-42 + 3498: 28,-41 + 3814: -13,-16 + 3815: -12,-17 + 3816: -11,-16 + 3817: -11,-13 + 3818: -10,-15 + 3819: -11,-15 + 3820: -10,-16 + 3821: -10,-15 + 3822: -9,-15 + 3823: -10,-13 + 3824: -11,-18 + 3825: -11,-19 + 3826: -11,-20 + 3827: -11,-20 + 3828: -11,-21 + 3829: -13,-19 + 3830: -13,-20 + 3831: -12,-14 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -2744,8 +2774,8 @@ entities: color: '#FFFFFFFF' id: DirtHeavy decals: - 3092: 37,-2 - 3093: 37,2 + 3062: 37,-2 + 3063: 37,2 - node: cleanable: True color: '#FFFFFFFF' @@ -2756,46 +2786,44 @@ entities: 86: 13,11 133: -51,-30 149: -39,-14 - 458: -59,19 - 459: -60,22 - 460: -60,23 - 581: 51,0 - 582: 50,0 - 583: 49,-1 - 584: 49,3 - 834: -5,-25 - 835: -4,-25 - 1631: -39,9 - 1649: -10,-15 - 1680: -7,-16 - 2238: -1,13 - 2314: 52,-38 - 2315: 52,-38 - 2421: 53,-22 - 2422: 53,-23 - 2428: -46,-30 - 2429: -45,-30 - 2430: -45,-32 - 2431: -46,-33 - 2432: -46,-33 - 2433: -50,-33 - 2434: -48,-32 - 2548: 30,12 - 2549: 27,11 - 2550: 30,18 - 2551: 29,21 - 2723: -63,-10 - 2788: -59,26 - 2789: -60,26 - 2924: 45,9 - 3138: 43,2 - 3139: 45,0 - 3140: 45,-1 - 3141: 48,4 - 3188: 40,-2 - 3329: -59,20 - 3330: -59,22 - 3331: -59,22 + 455: -59,19 + 456: -60,22 + 457: -60,23 + 578: 51,0 + 579: 50,0 + 580: 49,-1 + 581: 49,3 + 831: -5,-25 + 832: -4,-25 + 1628: -39,9 + 1660: -7,-16 + 2214: -1,13 + 2290: 52,-38 + 2291: 52,-38 + 2397: 53,-22 + 2398: 53,-23 + 2404: -46,-30 + 2405: -45,-30 + 2406: -45,-32 + 2407: -46,-33 + 2408: -46,-33 + 2409: -50,-33 + 2410: -48,-32 + 2524: 30,12 + 2525: 27,11 + 2526: 30,18 + 2527: 29,21 + 2699: -63,-10 + 2764: -59,26 + 2765: -60,26 + 2894: 45,9 + 3101: 48,4 + 3279: -59,20 + 3280: -59,22 + 3281: -59,22 + 3811: -12,-16 + 3812: -13,-17 + 3813: -12,-15 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -2811,39 +2839,39 @@ entities: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 3561: 5,16 - 3562: 0,12 - 3563: -2,14 - 3564: 2,14 - 3565: 8,14 + 3490: 5,16 + 3491: 0,12 + 3492: -2,14 + 3493: 2,14 + 3494: 8,14 - node: color: '#FFFFFFFF' id: DirtLight decals: - 279: -23,-6 - 280: -23,-8 - 281: -28,-20 - 282: -25,-19 - 283: -29,-16 - 284: -30,-15 - 285: -24,-15 - 286: -23,-12 - 287: -32,-11 - 514: -38,8 - 515: -38,6 - 516: -38,5 - 517: -39,12 - 859: -30,-20 - 860: -21,-19 - 861: -33,-20 - 862: -33,-17 - 863: -32,-20 - 3099: 37,1 - 3100: 37,-1 - 3101: 38,0 - 3102: 36,0 - 3103: 36,-1 - 3104: 40,0 + 276: -23,-6 + 277: -23,-8 + 278: -28,-20 + 279: -25,-19 + 280: -29,-16 + 281: -30,-15 + 282: -24,-15 + 283: -23,-12 + 284: -32,-11 + 511: -38,8 + 512: -38,6 + 513: -38,5 + 514: -39,12 + 856: -30,-20 + 857: -21,-19 + 858: -33,-20 + 859: -33,-17 + 860: -32,-20 + 3069: 37,1 + 3070: 37,-1 + 3071: 38,0 + 3072: 36,0 + 3073: 36,-1 + 3074: 40,0 - node: cleanable: True color: '#FFFFFFFF' @@ -2895,278 +2923,266 @@ entities: 153: -38,-14 154: -38,-18 155: -39,-19 - 362: 11,-21 - 363: 12,-21 - 373: 15,-14 - 374: 15,-15 - 375: 15,-12 - 376: 15,-11 - 377: 16,-9 - 378: 17,-2 - 379: 17,0 - 380: 17,1 - 381: 16,2 - 382: 16,-5 - 412: -26,31 - 413: -27,30 - 414: -23,31 - 415: -23,29 - 416: -21,29 - 417: -18,29 - 418: -22,27 - 419: -24,30 - 420: -29,31 - 451: -16,12 - 452: -16,23 - 453: -23,24 - 454: -39,24 - 455: -42,22 - 456: -43,21 - 457: -56,16 - 463: -58,20 - 464: -59,18 - 465: -60,17 - 466: -59,25 - 467: -60,24 - 468: -56,24 - 469: -57,20 - 588: 47,-1 - 589: 48,-2 - 590: 49,-2 - 591: 51,1 - 592: 50,1 - 593: 51,2 - 594: 48,2 - 595: 47,0 - 596: 44,4 - 597: 49,4 - 598: 43,5 - 599: 43,6 - 600: 55,12 - 601: 54,11 - 602: 53,11 - 603: 55,13 - 604: 55,9 - 605: 49,14 - 606: 50,13 - 607: 41,6 - 608: 41,5 - 609: 40,5 - 610: 37,4 - 611: 36,5 - 678: -22,25 - 679: -17,18 - 680: -37,4 - 681: -37,-11 - 682: -37,-15 - 683: -19,-20 - 684: -17,-14 - 685: -17,-7 - 686: -16,-5 - 694: -16,7 - 696: -16,4 - 697: -15,9 - 698: -16,0 - 831: -9,-25 - 832: -8,-25 - 833: -8,-25 - 838: -4,-24 - 839: -1,-25 - 840: 7,-21 - 841: 16,-25 - 842: 16,-25 - 843: 13,-25 - 892: 7,-20 - 893: 8,-20 - 894: 9,-20 - 895: 9,-21 - 896: 10,-23 - 897: 12,-23 - 898: -6,-23 - 899: -25,-23 - 900: -34,-23 - 901: -37,-24 - 1071: -10,-55 - 1072: -14,-56 - 1073: -19,-55 - 1074: -7,-54 - 1075: -2,-54 - 1076: -3,-57 - 1077: 2,-59 - 1078: -3,-64 - 1079: 0,-61 - 1080: -3,-66 - 1081: -3,-71 - 1082: -1,-73 - 1083: 2,-71 - 1084: 1,-55 - 1085: -1,-47 - 1086: 0,-45 - 1155: 20,24 - 1156: 15,25 - 1157: 16,27 - 1158: 34,23 - 1159: 38,24 - 1160: 44,26 - 1161: 45,25 - 1162: 52,25 - 1163: 53,26 - 1164: 52,21 - 1165: 44,21 - 1166: 41,20 - 1167: 52,14 - 1168: 48,18 - 1169: 49,16 - 1170: 45,7 - 1171: 20,8 - 1172: 32,7 - 1173: 34,8 - 1174: 16,8 - 1175: 5,8 - 1176: -7,9 - 1177: -8,8 - 1216: 7,-22 - 1217: 5,-23 - 1218: 4,-23 - 1219: 7,-24 - 1220: 23,-23 - 1221: 18,-28 - 1222: 21,-35 - 1223: 19,-34 - 1632: -38,9 - 1633: -39,8 - 1634: -39,7 - 1635: -39,-1 - 1651: -10,-16 - 1652: -10,-14 - 1653: -11,-14 - 1654: -10,-13 - 1655: -11,-13 - 1656: -8,-12 - 1657: -8,-14 - 1658: -9,-13 - 1659: -10,-13 - 1660: -11,-17 - 1661: -11,-18 - 1677: -9,-16 - 1678: -8,-16 - 1679: -8,-16 - 2003: -39,-12 - 2004: -39,-8 - 2005: -40,-7 - 2006: -39,-8 - 2008: -39,-9 - 2009: -39,-3 - 2010: -39,3 - 2242: 1,13 - 2243: 0,14 - 2244: 0,15 - 2245: 0,15 - 2246: 1,15 - 2247: 3,14 - 2248: 5,15 - 2249: 7,13 - 2250: 9,14 - 2251: 11,12 - 2252: 11,14 - 2253: 5,17 - 2254: 4,17 - 2255: 4,18 - 2256: -4,17 - 2257: -4,19 - 2258: -3,20 - 2259: -2,17 - 2296: 3,19 - 2297: 4,20 - 2299: -4,21 - 2300: -3,22 - 2301: -3,24 - 2302: -2,21 - 2303: -2,20 - 2304: -3,23 - 2305: -5,28 - 2306: -5,27 - 2307: -11,28 - 2308: -12,29 - 2309: -13,30 - 2310: -13,31 - 2311: -12,32 - 2312: -22,31 - 2313: -30,30 - 2316: 51,-38 - 2317: 51,-38 - 2326: 49,-39 - 2442: -52,-35 - 2443: -52,-35 - 2444: -52,-32 - 2445: -49,-31 - 2446: -49,-31 - 2447: -48,-32 - 2448: -48,-32 - 2449: -45,-33 - 2450: -45,-33 - 2451: -45,-33 - 2452: -46,-32 - 2453: -46,-32 - 2454: -46,-32 - 2552: 28,21 - 2553: 31,18 - 2554: 31,12 - 2555: 27,12 - 2925: 44,9 - 2926: 46,8 - 2927: 44,10 - 2928: 45,12 - 3145: 45,3 - 3146: 46,3 - 3147: 43,3 - 3148: 42,3 - 3149: 44,2 - 3150: 45,1 - 3151: 46,-1 - 3152: 45,-2 - 3153: 46,1 - 3154: 47,2 - 3155: 48,1 - 3156: 51,4 - 3157: 48,3 - 3158: 46,2 - 3159: 40,2 - 3171: 49,6 - 3172: 48,7 - 3173: 53,6 - 3174: 45,5 - 3175: 41,8 - 3176: 40,9 - 3177: 39,8 - 3178: 41,13 - 3179: 41,15 - 3180: 40,16 - 3181: 56,7 - 3182: 41,1 - 3183: 41,0 - 3184: 42,2 - 3191: 40,-1 - 3202: 56,12 - 3203: 54,15 - 3204: 49,17 - 3205: 55,7 - 3206: 49,9 - 3207: 50,11 - 3208: 37,7 - 3540: 43,-19 - 3541: 43,-23 - 3542: 41,-24 - 3644: 35,-23 - 3645: 34,-25 - 3646: 33,-23 - 3647: 33,-21 - 3648: 33,-22 - 3801: -33,8 - 3802: -34,9 - 3803: -35,8 - 3804: -35,7 - 3805: -37,8 + 359: 11,-21 + 360: 12,-21 + 370: 15,-14 + 371: 15,-15 + 372: 15,-12 + 373: 15,-11 + 374: 16,-9 + 375: 17,-2 + 376: 17,0 + 377: 17,1 + 378: 16,2 + 379: 16,-5 + 409: -26,31 + 410: -27,30 + 411: -23,31 + 412: -23,29 + 413: -21,29 + 414: -18,29 + 415: -22,27 + 416: -24,30 + 417: -29,31 + 448: -16,12 + 449: -16,23 + 450: -23,24 + 451: -39,24 + 452: -42,22 + 453: -43,21 + 454: -56,16 + 460: -58,20 + 461: -59,18 + 462: -60,17 + 463: -59,25 + 464: -60,24 + 465: -56,24 + 466: -57,20 + 585: 47,-1 + 586: 48,-2 + 587: 49,-2 + 588: 51,1 + 589: 50,1 + 590: 51,2 + 591: 48,2 + 592: 47,0 + 593: 44,4 + 594: 49,4 + 595: 43,5 + 596: 43,6 + 597: 55,12 + 598: 54,11 + 599: 53,11 + 600: 55,13 + 601: 55,9 + 602: 49,14 + 603: 50,13 + 604: 41,6 + 605: 41,5 + 606: 40,5 + 607: 37,4 + 608: 36,5 + 675: -22,25 + 676: -17,18 + 677: -37,4 + 678: -37,-11 + 679: -37,-15 + 680: -19,-20 + 681: -17,-14 + 682: -17,-7 + 683: -16,-5 + 691: -16,7 + 693: -16,4 + 694: -15,9 + 695: -16,0 + 828: -9,-25 + 829: -8,-25 + 830: -8,-25 + 835: -4,-24 + 836: -1,-25 + 837: 7,-21 + 838: 16,-25 + 839: 16,-25 + 840: 13,-25 + 889: 7,-20 + 890: 8,-20 + 891: 9,-20 + 892: 9,-21 + 893: 10,-23 + 894: 12,-23 + 895: -6,-23 + 896: -25,-23 + 897: -34,-23 + 898: -37,-24 + 1068: -10,-55 + 1069: -14,-56 + 1070: -19,-55 + 1071: -7,-54 + 1072: -2,-54 + 1073: -3,-57 + 1074: 2,-59 + 1075: -3,-64 + 1076: 0,-61 + 1077: -3,-66 + 1078: -3,-71 + 1079: -1,-73 + 1080: 2,-71 + 1081: 1,-55 + 1082: -1,-47 + 1083: 0,-45 + 1152: 20,24 + 1153: 15,25 + 1154: 16,27 + 1155: 34,23 + 1156: 38,24 + 1157: 44,26 + 1158: 45,25 + 1159: 52,25 + 1160: 53,26 + 1161: 52,21 + 1162: 44,21 + 1163: 41,20 + 1164: 52,14 + 1165: 48,18 + 1166: 49,16 + 1167: 45,7 + 1168: 20,8 + 1169: 32,7 + 1170: 34,8 + 1171: 16,8 + 1172: 5,8 + 1173: -7,9 + 1174: -8,8 + 1213: 7,-22 + 1214: 5,-23 + 1215: 4,-23 + 1216: 7,-24 + 1217: 23,-23 + 1218: 18,-28 + 1219: 21,-35 + 1220: 19,-34 + 1629: -38,9 + 1630: -39,8 + 1631: -39,7 + 1632: -39,-1 + 1640: -8,-12 + 1641: -8,-14 + 1642: -9,-13 + 1657: -9,-16 + 1658: -8,-16 + 1659: -8,-16 + 1981: -39,-12 + 1982: -39,-8 + 1983: -40,-7 + 1984: -39,-8 + 1986: -39,-9 + 1987: -39,-3 + 1988: -39,3 + 2218: 1,13 + 2219: 0,14 + 2220: 0,15 + 2221: 0,15 + 2222: 1,15 + 2223: 3,14 + 2224: 5,15 + 2225: 7,13 + 2226: 9,14 + 2227: 11,12 + 2228: 11,14 + 2229: 5,17 + 2230: 4,17 + 2231: 4,18 + 2232: -4,17 + 2233: -4,19 + 2234: -3,20 + 2235: -2,17 + 2272: 3,19 + 2273: 4,20 + 2275: -4,21 + 2276: -3,22 + 2277: -3,24 + 2278: -2,21 + 2279: -2,20 + 2280: -3,23 + 2281: -5,28 + 2282: -5,27 + 2283: -11,28 + 2284: -12,29 + 2285: -13,30 + 2286: -13,31 + 2287: -12,32 + 2288: -22,31 + 2289: -30,30 + 2292: 51,-38 + 2293: 51,-38 + 2302: 49,-39 + 2418: -52,-35 + 2419: -52,-35 + 2420: -52,-32 + 2421: -49,-31 + 2422: -49,-31 + 2423: -48,-32 + 2424: -48,-32 + 2425: -45,-33 + 2426: -45,-33 + 2427: -45,-33 + 2428: -46,-32 + 2429: -46,-32 + 2430: -46,-32 + 2528: 28,21 + 2529: 31,18 + 2530: 31,12 + 2531: 27,12 + 2895: 44,9 + 2896: 46,8 + 2897: 44,10 + 2898: 45,12 + 3105: 45,3 + 3106: 46,3 + 3107: 43,3 + 3108: 42,3 + 3109: 46,-1 + 3110: 46,1 + 3111: 47,2 + 3112: 48,1 + 3113: 51,4 + 3114: 48,3 + 3115: 46,2 + 3116: 40,2 + 3128: 49,6 + 3129: 48,7 + 3130: 53,6 + 3131: 45,5 + 3132: 41,8 + 3133: 40,9 + 3134: 39,8 + 3135: 41,13 + 3136: 41,15 + 3137: 40,16 + 3138: 56,7 + 3139: 41,1 + 3140: 41,0 + 3141: 42,2 + 3142: 40,-1 + 3153: 56,12 + 3154: 54,15 + 3155: 49,17 + 3156: 55,7 + 3157: 49,9 + 3158: 50,11 + 3159: 37,7 + 3486: 43,-19 + 3487: 43,-23 + 3488: 41,-24 + 3573: 35,-23 + 3574: 34,-25 + 3575: 33,-23 + 3576: 33,-22 + 3729: -33,8 + 3730: -34,9 + 3731: -35,8 + 3732: -35,7 + 3733: -37,8 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -3188,19 +3204,19 @@ entities: color: '#FFFFFFFF' id: DirtMedium decals: - 275: -26,-19 - 276: -25,-20 - 277: -28,-19 - 278: -23,-5 - 511: -38,7 - 512: -39,10 - 513: -39,11 - 858: -31,-20 - 3094: 36,-2 - 3095: 38,-2 - 3096: 36,2 - 3097: 38,2 - 3098: 37,1 + 272: -26,-19 + 273: -25,-20 + 274: -28,-19 + 275: -23,-5 + 508: -38,7 + 509: -39,10 + 510: -39,11 + 855: -31,-20 + 3064: 36,-2 + 3065: 38,-2 + 3066: 36,2 + 3067: 38,2 + 3068: 37,1 - node: cleanable: True color: '#FFFFFFFF' @@ -3219,51 +3235,48 @@ entities: 134: -50,-33 150: -39,-15 151: -39,-16 - 372: 14,-14 - 409: -23,30 - 410: -22,29 - 411: -25,31 - 461: -58,21 - 462: -59,25 - 585: 50,2 - 586: 50,4 - 587: 49,0 - 693: -16,6 - 695: -14,7 - 836: -3,-25 - 837: -6,-25 - 1215: 6,-22 - 1650: -11,-16 - 2007: -40,-8 - 2239: 0,13 - 2240: -1,14 - 2241: 1,14 - 2298: -3,21 - 2318: 52,-36 - 2319: 52,-37 - 2320: 56,-37 - 2321: 55,-38 - 2322: 47,-36 - 2323: 48,-36 - 2324: 50,-39 - 2325: 50,-39 - 2423: 53,-21 - 2424: 53,-24 - 2435: -46,-32 - 2436: -46,-34 - 2437: -45,-33 - 2438: -47,-30 - 2439: -49,-31 - 2440: -51,-33 - 2441: -52,-34 - 2724: -64,-10 - 2725: -62,-9 - 2726: -60,-12 - 3142: 49,4 - 3143: 44,3 - 3144: 40,3 - 3189: 41,-2 - 3190: 42,-2 + 369: 14,-14 + 406: -23,30 + 407: -22,29 + 408: -25,31 + 458: -58,21 + 459: -59,25 + 582: 50,2 + 583: 50,4 + 584: 49,0 + 690: -16,6 + 692: -14,7 + 833: -3,-25 + 834: -6,-25 + 1212: 6,-22 + 1985: -40,-8 + 2215: 0,13 + 2216: -1,14 + 2217: 1,14 + 2274: -3,21 + 2294: 52,-36 + 2295: 52,-37 + 2296: 56,-37 + 2297: 55,-38 + 2298: 47,-36 + 2299: 48,-36 + 2300: 50,-39 + 2301: 50,-39 + 2399: 53,-21 + 2400: 53,-24 + 2411: -46,-32 + 2412: -46,-34 + 2413: -45,-33 + 2414: -47,-30 + 2415: -49,-31 + 2416: -51,-33 + 2417: -52,-34 + 2700: -64,-10 + 2701: -62,-9 + 2702: -60,-12 + 3102: 49,4 + 3103: 44,3 + 3104: 40,3 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -3276,172 +3289,169 @@ entities: color: '#FED83DFF' id: Donk decals: - 2419: -62.43933,-13.441491 + 2395: -62.43933,-13.441491 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: 217: 34.965233,-25.985117 - 1339: 11.007317,-66.54063 + 1336: 11.007317,-66.54063 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 976: -0.48526984,-68.87088 - 977: 0.23348016,-66.02713 + 973: -0.48526984,-68.87088 + 974: 0.23348016,-66.02713 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 975: 0.7647302,-68.49588 - 1341: 11.007317,-69.05625 + 972: 0.7647302,-68.49588 + 1338: 11.007317,-69.05625 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: - 921: 48.118763,22.943716 + 918: 48.118763,22.943716 - node: color: '#FFFFFFFF' id: Flowersy1 decals: 215: 33.152733,-25.953867 - 973: 0.6866052,-66.792755 - 3320: 29.018572,-35.56262 + 970: 0.6866052,-66.792755 + 3270: 29.018572,-35.56262 - node: color: '#FFFFFFFF' id: Flowersy2 decals: 216: 33.933983,-26.047617 - 390: 12.076155,3.7926216 - 974: -0.76651984,-68.074005 - 1340: 11.038567,-68.22813 + 387: 12.076155,3.7926216 + 971: -0.76651984,-68.074005 + 1337: 11.038567,-68.22813 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 922: 49.540638,22.974966 - 972: -0.48526984,-65.65213 + 919: 49.540638,22.974966 + 969: -0.48526984,-65.65213 - node: color: '#FFFFFFFF' id: Flowersy4 decals: - 391: 11.34178,4.3394966 - 484: -5.970551,-6.928444 - 485: -5.986176,-6.053444 - 714: 9.393604,3.3875775 - 971: -0.26651984,-69.93338 - 3319: 29.924822,-37.81262 + 388: 11.34178,4.3394966 + 481: -5.970551,-6.928444 + 482: -5.986176,-6.053444 + 711: 9.393604,3.3875775 + 968: -0.26651984,-69.93338 + 3269: 29.924822,-37.81262 - node: color: '#00000026' id: FullTileOverlayGreyscale decals: - 3673: 15,-7 - 3674: 16,-7 - 3675: 17,-7 - 3676: 17,-6 - 3677: 16,-6 - 3678: 15,-6 + 3601: 15,-7 + 3602: 16,-7 + 3603: 17,-7 + 3604: 17,-6 + 3605: 16,-6 + 3606: 15,-6 - node: color: '#0000004A' id: FullTileOverlayGreyscale decals: - 3679: 17,-5 - 3680: 17,-6 - 3681: 17,-7 - 3682: 16,-7 - 3683: 15,-7 - 3684: 15,-6 - 3685: 16,-6 - 3686: 16,-5 - 3687: 15,-5 - 3688: 15,-4 - 3689: 16,-4 - 3690: 17,-4 - 3691: 17,-3 - 3692: 16,-3 - 3693: 15,-3 - 3694: 15,-2 - 3695: 17,-2 - 3696: 16,-2 - 3697: 16,-1 - 3698: 17,-1 - 3699: 15,-1 - 3700: 15,0 - 3701: 15,1 - 3702: 15,2 - 3703: 15,3 - 3704: 15,4 - 3705: 16,4 - 3706: 17,4 - 3707: 17,3 - 3708: 16,3 - 3709: 16,2 - 3710: 17,2 - 3711: 17,1 - 3712: 16,1 - 3713: 16,0 - 3714: 17,0 - 3715: 17,5 - 3716: 16,5 - 3717: 15,5 - 3718: 17,-8 - 3719: 16,-8 - 3720: 15,-8 - 3721: 26,0 + 3607: 17,-5 + 3608: 17,-6 + 3609: 17,-7 + 3610: 16,-7 + 3611: 15,-7 + 3612: 15,-6 + 3613: 16,-6 + 3614: 16,-5 + 3615: 15,-5 + 3616: 15,-4 + 3617: 16,-4 + 3618: 17,-4 + 3619: 17,-3 + 3620: 16,-3 + 3621: 15,-3 + 3622: 15,-2 + 3623: 17,-2 + 3624: 16,-2 + 3625: 16,-1 + 3626: 17,-1 + 3627: 15,-1 + 3628: 15,0 + 3629: 15,1 + 3630: 15,2 + 3631: 15,3 + 3632: 15,4 + 3633: 16,4 + 3634: 17,4 + 3635: 17,3 + 3636: 16,3 + 3637: 16,2 + 3638: 17,2 + 3639: 17,1 + 3640: 16,1 + 3641: 16,0 + 3642: 17,0 + 3643: 17,5 + 3644: 16,5 + 3645: 15,5 + 3646: 17,-8 + 3647: 16,-8 + 3648: 15,-8 + 3649: 26,0 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale decals: - 489: 0,3 - 490: 1,3 - 491: 2,3 - 492: 3,3 - 493: -1,3 - 494: -2,3 - 495: -3,3 - 2767: 5,-36 - 2768: 3,-36 - 2769: 5,-37 - 2770: 3,-37 - 3258: 7,-37 - 3259: 7,-36 + 486: 0,3 + 487: 1,3 + 488: 2,3 + 489: 3,3 + 490: -1,3 + 491: -2,3 + 492: -3,3 + 2743: 5,-36 + 2744: 3,-36 + 2745: 5,-37 + 2746: 3,-37 + 3208: 7,-37 + 3209: 7,-36 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: 221: 46,-22 237: 33,-16 - 247: 46,-10 - 248: 42,-24 - 2847: 33,-22 - 2859: 46,-17 - 2860: 46,-19 - 2869: 46,-18 - 3728: 48,-16 + 244: 46,-10 + 245: 42,-24 + 2817: 33,-22 + 2829: 46,-17 + 2830: 46,-19 + 2839: 46,-18 + 3656: 48,-16 - node: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 531: 48,15 - 538: 42,6 - 539: 42,5 - 550: 44,4 - 551: 47,8 - 552: 47,7 - 3079: 37,3 - 3080: 39,-1 - 3081: 39,0 - 3082: 36,-2 - 3083: 37,-2 - 3084: 38,-2 - 3085: 38,2 - 3086: 37,2 - 3087: 36,2 - 3160: 49,5 - 3161: 48,5 - 3185: 40,-2 - 3186: 41,-2 - 3187: 42,-2 + 528: 48,15 + 535: 42,6 + 536: 42,5 + 547: 44,4 + 548: 47,8 + 549: 47,7 + 3049: 37,3 + 3050: 39,-1 + 3051: 39,0 + 3052: 36,-2 + 3053: 37,-2 + 3054: 38,-2 + 3055: 38,2 + 3056: 37,2 + 3057: 36,2 + 3117: 49,5 + 3118: 48,5 - node: color: '#D0BF4AA7' id: FullTileOverlayGreyscale @@ -3452,84 +3462,84 @@ entities: color: '#D381C93E' id: FullTileOverlayGreyscale decals: - 318: -46,3 + 315: -46,3 - node: color: '#D381C996' id: FullTileOverlayGreyscale decals: - 507: -39,10 + 504: -39,10 - node: color: '#D4D4D406' id: FullTileOverlayGreyscale decals: - 2391: 41,-10 - 2392: 40,-10 - 2393: 39,-10 - 2394: 38,-10 - 2395: 37,-10 - 2396: 36,-10 - 2397: 36,-9 - 2398: 36,-8 - 2399: 36,-7 - 2400: 36,-6 - 2401: 38,-9 - 2402: 38,-8 - 2403: 38,-7 - 2404: 38,-6 - 2405: 40,-9 - 2406: 40,-8 - 2407: 40,-7 - 2408: 40,-6 + 2367: 41,-10 + 2368: 40,-10 + 2369: 39,-10 + 2370: 38,-10 + 2371: 37,-10 + 2372: 36,-10 + 2373: 36,-9 + 2374: 36,-8 + 2375: 36,-7 + 2376: 36,-6 + 2377: 38,-9 + 2378: 38,-8 + 2379: 38,-7 + 2380: 38,-6 + 2381: 40,-9 + 2382: 40,-8 + 2383: 40,-7 + 2384: 40,-6 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 254: -33,-13 - 255: -33,-10 - 256: -33,-7 - 257: -21,-13 - 258: -21,-10 - 259: -21,-7 - 273: -26,-18 - 274: -28,-18 - 288: -22,-21 - 289: -22,-19 + 251: -33,-13 + 252: -33,-10 + 253: -33,-7 + 254: -21,-13 + 255: -21,-10 + 256: -21,-7 + 270: -26,-18 + 271: -28,-18 + 285: -22,-21 + 286: -22,-19 - node: color: '#EFCC4196' id: FullTileOverlayGreyscale decals: - 2216: -2,14 - 2217: 2,14 - 2218: 1,13 - 2219: 0,13 - 2220: -1,13 - 2221: -1,14 - 2222: 0,14 - 2223: 1,14 - 2224: 1,15 - 2225: 0,15 - 2226: -1,15 - 2227: 0,12 + 2194: -2,14 + 2195: 2,14 + 2196: 1,13 + 2197: 0,13 + 2198: -1,13 + 2199: -1,14 + 2200: 0,14 + 2201: 1,14 + 2202: 1,15 + 2203: 0,15 + 2204: -1,15 + 2205: 0,12 - node: color: '#EFD54193' id: FullTileOverlayGreyscale decals: - 3281: 8,14 - 3282: 5,16 - 3302: -14,28 + 3231: 8,14 + 3232: 5,16 + 3252: -14,28 - node: color: '#EFD84196' id: FullTileOverlayGreyscale decals: - 1857: -19,30 - 1858: -18,30 - 1859: -15,30 + 1835: -19,30 + 1836: -18,30 + 1837: -15,30 - node: cleanable: True color: '#169C9CFF' id: Gene decals: - 2420: 53.01786,-22.012398 + 2396: 53.01786,-22.012398 - node: color: '#FFFFFFFF' id: Grassb1 @@ -3540,95 +3550,100 @@ entities: id: Grassb2 decals: 214: 33.699608,-25.985117 - 954: -5.121248,-69.02713 + 951: -5.121248,-69.02713 - node: color: '#FFFFFFFF' id: Grassb3 decals: - 953: 5.175627,-68.99588 + 950: 5.175627,-68.99588 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 486: -5.939301,-7.022194 - 956: 5.144377,-65.90213 + 483: -5.939301,-7.022194 + 953: 5.144377,-65.90213 - node: color: '#FFFFFFFF' id: Grassb5 decals: 213: 32.824608,-26.016367 - 955: -5.105623,-65.949005 + 952: -5.105623,-65.949005 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 389: 11.06053,2.6519966 - 969: -0.84464484,-69.58963 - 3313: 29.893572,-37.234493 - 3316: 29.924822,-35.203243 + 386: 11.06053,2.6519966 + 966: -0.84464484,-69.58963 + 3263: 29.893572,-37.234493 + 3266: 29.924822,-35.203243 - node: color: '#FFFFFFFF' id: Grassd2 decals: 211: 35.121483,-26.016367 - 388: 10.02928,3.2613716 - 919: 50,29 - 920: 48,23 - 965: 0.9053552,-65.02713 - 970: 0.8272302,-69.83963 - 1335: 10.976067,-66.05625 - 3314: 29.002947,-37.109493 + 385: 10.02928,3.2613716 + 916: 50,29 + 917: 48,23 + 962: 0.9053552,-65.02713 + 967: 0.8272302,-69.83963 + 1332: 10.976067,-66.05625 + 3264: 29.002947,-37.109493 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 387: 11.107405,3.8082466 - 966: -0.92276984,-64.99588 - 3315: 29.018572,-35.15637 + 384: 11.107405,3.8082466 + 963: -0.92276984,-64.99588 + 3265: 29.018572,-35.15637 - node: color: '#FFFFFFFF' id: Grasse1 decals: 210: 34.449608,-26.000742 - 385: 10.37303,4.2613716 - 386: 11.919905,3.4176216 - 967: 0.48348016,-65.511505 - 968: -0.71964484,-67.042755 - 1334: 11.054192,-66.97813 - 1543: -46.974236,5.0132127 + 382: 10.37303,4.2613716 + 383: 11.919905,3.4176216 + 964: 0.48348016,-65.511505 + 965: -0.71964484,-67.042755 + 1331: 11.054192,-66.97813 + 1540: -46.974236,5.0132127 - node: color: '#FFFFFFFF' id: Grasse2 decals: 209: 33.683983,-26.016367 - 383: 9.31053,4.0426216 - 384: 11.357405,4.8394966 - 915: 49,23 - 916: 49,29 - 1333: 11.007317,-67.97813 - 1542: -47.98986,4.9819627 - 3312: 29.065447,-38.00012 - 3317: 29.049822,-36.15637 + 380: 9.31053,4.0426216 + 381: 11.357405,4.8394966 + 912: 49,23 + 913: 49,29 + 1330: 11.007317,-67.97813 + 1539: -47.98986,4.9819627 + 3262: 29.065447,-38.00012 + 3267: 29.049822,-36.15637 - node: color: '#FFFFFFFF' id: Grasse3 decals: 208: 32.949608,-25.985117 - 482: -6.001801,-6.928444 - 483: -6.017426,-6.131569 - 917: 50,23 - 918: 48,29 - 1332: 10.976067,-68.97813 - 3311: 29.846697,-37.93762 - 3318: 29.909197,-36.18762 + 479: -6.001801,-6.928444 + 480: -6.017426,-6.131569 + 914: 50,23 + 915: 48,29 + 1329: 10.976067,-68.97813 + 3261: 29.846697,-37.93762 + 3268: 29.909197,-36.18762 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 245: 33,-17 - 246: 34,-17 - 2870: 47,-17 - 2871: 48,-17 + 2840: 47,-17 + 2841: 48,-17 + 3792: 40,-17 + 3793: 39,-17 + 3794: 38,-17 + 3795: 37,-17 + 3796: 36,-17 + 3797: 35,-17 + 3798: 34,-17 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale @@ -3642,15 +3657,15 @@ entities: color: '#A4610696' id: HalfTileOverlayGreyscale decals: - 577: 47,14 - 578: 48,14 - 579: 49,14 - 2921: 45,9 - 2922: 44,9 - 3193: 56,15 - 3194: 55,15 - 3195: 54,15 - 3196: 53,15 + 574: 47,14 + 575: 48,14 + 576: 49,14 + 2891: 45,9 + 2892: 44,9 + 3144: 56,15 + 3145: 55,15 + 3146: 54,15 + 3147: 53,15 - node: color: '#D0BF4AA7' id: HalfTileOverlayGreyscale @@ -3662,16 +3677,16 @@ entities: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 306: -42,14 - 307: -41,14 - 308: -40,14 - 309: -39,14 - 310: -38,14 - 508: -33,9 - 509: -32,9 - 1636: -43,0 - 1637: -42,0 - 3800: -34,9 + 303: -42,14 + 304: -41,14 + 305: -40,14 + 306: -39,14 + 307: -38,14 + 505: -33,9 + 506: -32,9 + 1633: -43,0 + 1634: -42,0 + 3728: -34,9 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale @@ -3682,27 +3697,32 @@ entities: color: '#EFCC4196' id: HalfTileOverlayGreyscale decals: - 2122: 8,32 - 2123: 7,32 - 2124: 6,32 - 2125: 5,32 - 2126: 4,32 - 2187: 5,21 - 2188: 4,21 - 2189: 3,21 - 2190: 2,21 - 2191: 1,21 - 2192: 0,21 - 2193: -1,21 - 2194: -2,21 - 2214: 6,15 - 2215: 4,15 + 2100: 8,32 + 2101: 7,32 + 2102: 6,32 + 2103: 5,32 + 2104: 4,32 + 2165: 5,21 + 2166: 4,21 + 2167: 3,21 + 2168: 2,21 + 2169: 1,21 + 2170: 0,21 + 2171: -1,21 + 2172: -2,21 + 2192: 6,15 + 2193: 4,15 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 2845: 34,-21 - 2846: 33,-21 + 3781: 34,-21 + 3782: 35,-21 + 3783: 36,-21 + 3784: 37,-21 + 3785: 38,-21 + 3786: 39,-21 + 3787: 40,-21 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 @@ -3714,9 +3734,9 @@ entities: color: '#A4610696' id: HalfTileOverlayGreyscale180 decals: - 544: 44,5 - 545: 45,5 - 557: 47,12 + 541: 44,5 + 542: 45,5 + 554: 47,12 - node: color: '#D0BF4AA7' id: HalfTileOverlayGreyscale180 @@ -3728,16 +3748,16 @@ entities: color: '#D381C93E' id: HalfTileOverlayGreyscale180 decals: - 335: -36,2 + 332: -36,2 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 302: -38,11 - 303: -42,13 - 304: -41,13 - 305: -40,13 - 1997: -42,-11 + 299: -38,11 + 300: -42,13 + 301: -41,13 + 302: -40,13 + 1975: -42,-11 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 @@ -3748,27 +3768,27 @@ entities: color: '#EFCC4196' id: HalfTileOverlayGreyscale180 decals: - 2127: 8,23 - 2128: 7,23 - 2129: 6,23 - 2130: 5,23 - 2131: 4,23 - 2179: 4,17 - 2180: 3,17 - 2181: 1,17 - 2182: 2,17 - 2183: 0,17 - 2184: -1,17 - 2185: -2,17 - 2186: -3,17 - 2211: 5,13 - 2212: 4,13 + 2105: 8,23 + 2106: 7,23 + 2107: 6,23 + 2108: 5,23 + 2109: 4,23 + 2157: 4,17 + 2158: 3,17 + 2159: 1,17 + 2160: 2,17 + 2161: 0,17 + 2162: -1,17 + 2163: -2,17 + 2164: -3,17 + 2189: 5,13 + 2190: 4,13 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 497: -4,1 - 498: -3,2 + 494: -4,1 + 495: -3,2 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 @@ -3786,24 +3806,24 @@ entities: 10: 50,-28 11: 47,-27 12: 47,-26 - 2811: 43,-27 - 2812: 43,-29 - 2813: 43,-30 - 2814: 43,-31 - 2815: 43,-33 - 2816: 43,-34 + 2787: 43,-27 + 2788: 43,-29 + 2789: 43,-30 + 2790: 43,-31 + 2791: 43,-33 + 2792: 43,-34 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 541: 43,6 - 542: 43,7 - 543: 43,8 - 553: 48,7 - 554: 48,8 - 555: 48,9 - 556: 48,10 - 3162: 48,6 + 538: 43,6 + 539: 43,7 + 540: 43,8 + 550: 48,7 + 551: 48,8 + 552: 48,9 + 553: 48,10 + 3119: 48,6 - node: color: '#D0BF4AA7' id: HalfTileOverlayGreyscale270 @@ -3823,7 +3843,7 @@ entities: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 311: -39,12 + 308: -39,12 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale270 @@ -3837,37 +3857,37 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 267: -32,-13 - 268: -32,-12 - 269: -32,-11 - 270: -32,-10 - 271: -32,-9 - 272: -32,-8 - 1689: -32,-14 - 1690: -32,-7 + 264: -32,-13 + 265: -32,-12 + 266: -32,-11 + 267: -32,-10 + 268: -32,-9 + 269: -32,-8 + 1669: -32,-14 + 1670: -32,-7 - node: color: '#EFCC4196' id: HalfTileOverlayGreyscale270 decals: - 2176: -5,18 - 2177: -5,19 - 2178: -5,20 - 2201: 9,14 - 2213: 3,14 + 2154: -5,18 + 2155: -5,19 + 2156: -5,20 + 2179: 9,14 + 2191: 3,14 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 decals: - 496: 3,2 - 687: -15,3 + 493: 3,2 + 684: -15,3 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 244: 35,-20 - 2872: 49,-18 - 2873: 49,-19 - 3503: 35,-18 + 2842: 49,-18 + 2843: 49,-19 + 3790: 41,-20 + 3791: 41,-18 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 @@ -3879,26 +3899,26 @@ entities: 28: 52,-31 29: 52,-32 30: 52,-33 - 2804: 45,-34 - 2805: 45,-32 - 2806: 45,-31 - 2807: 45,-30 - 2808: 45,-29 - 2809: 45,-28 - 2810: 45,-27 + 2780: 45,-34 + 2781: 45,-32 + 2782: 45,-31 + 2783: 45,-30 + 2784: 45,-29 + 2785: 45,-28 + 2786: 45,-27 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 532: 41,5 - 533: 41,6 - 534: 41,7 - 535: 41,8 - 536: 41,9 - 537: 41,10 - 547: 46,6 - 548: 46,7 - 549: 46,8 + 529: 41,5 + 530: 41,6 + 531: 41,7 + 532: 41,8 + 533: 41,9 + 534: 41,10 + 544: 46,6 + 545: 46,7 + 546: 46,8 - node: color: '#D0BF4AA7' id: HalfTileOverlayGreyscale90 @@ -3912,8 +3932,8 @@ entities: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 300: -37,12 - 301: -37,13 + 297: -37,12 + 298: -37,13 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale90 @@ -3924,22 +3944,22 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 260: -22,-13 - 261: -22,-12 - 262: -22,-11 - 263: -22,-10 - 264: -22,-9 - 265: -22,-8 - 266: -22,-7 - 1688: -22,-14 + 257: -22,-13 + 258: -22,-12 + 259: -22,-11 + 260: -22,-10 + 261: -22,-9 + 262: -22,-8 + 263: -22,-7 + 1668: -22,-14 - node: color: '#EFCC4196' id: HalfTileOverlayGreyscale90 decals: - 2199: 6,18 - 2200: 6,20 - 2209: 7,13 - 2210: 7,14 + 2177: 6,18 + 2178: 6,20 + 2187: 7,13 + 2188: 7,14 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -3951,304 +3971,277 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 559: 54,11 - 703: 43,6 + 556: 54,11 + 700: 43,6 - node: color: '#FFFFFFFF' id: LoadingArea decals: 143: 3,-26 - 510: -33,9 - 2877: -18,27 + 507: -33,9 + 2847: -18,27 - node: angle: 1.5707963267948966 rad color: '#D381C996' id: LoadingAreaGreyscale decals: - 1972: -42,-5 + 1950: -42,-5 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNe decals: - 3019: -116,21 - 3020: -116,25 + 2989: -116,21 + 2990: -116,25 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNw decals: - 3017: -108,21 - 3021: -108,25 + 2987: -108,21 + 2991: -108,25 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSe decals: - 3016: -116,30 - 3022: -116,27 + 2986: -116,30 + 2992: -116,27 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSw decals: - 3018: -108,30 - 3023: -108,27 + 2988: -108,30 + 2993: -108,27 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 2990: -116,22 - 2991: -116,23 - 2992: -116,24 - 2993: -116,26 - 2994: -116,28 - 2995: -116,29 + 2960: -116,22 + 2961: -116,23 + 2962: -116,24 + 2963: -116,26 + 2964: -116,28 + 2965: -116,29 - node: color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 3009: -109,21 - 3010: -110,21 - 3011: -111,21 - 3012: -112,21 - 3013: -113,21 - 3014: -114,21 - 3015: -115,21 + 2979: -109,21 + 2980: -110,21 + 2981: -111,21 + 2982: -112,21 + 2983: -113,21 + 2984: -114,21 + 2985: -115,21 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 3002: -109,30 - 3003: -110,30 - 3004: -111,30 - 3005: -112,30 - 3006: -113,30 - 3007: -114,30 - 3008: -115,30 + 2972: -109,30 + 2973: -110,30 + 2974: -111,30 + 2975: -112,30 + 2976: -113,30 + 2977: -114,30 + 2978: -115,30 - node: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 1515: -41,2 - 1516: -41,3 - 1517: -41,4 - 1518: -41,5 - 2996: -108,22 - 2997: -108,23 - 2998: -108,24 - 2999: -108,26 - 3000: -108,28 - 3001: -108,29 - 3326: 35,18 - - node: - color: '#52B4E996' - id: MiniTileOverlay - decals: - 3543: 40,-21 - 3544: 40,-20 - 3545: 41,-20 - 3546: 41,-21 - 3547: 40,-18 - 3548: 40,-17 - 3549: 41,-17 - 3550: 41,-18 - 3551: 38,-18 - 3552: 37,-18 - 3553: 37,-17 - 3554: 38,-17 - 3555: 38,-20 - 3556: 37,-20 - 3557: 37,-21 - 3558: 38,-21 - - node: - color: '#52B4E996' - id: MonoOverlay - decals: - 2839: 34,-20 - 2840: 33,-19 - 2841: 34,-18 + 1512: -41,2 + 1513: -41,3 + 1514: -41,4 + 1515: -41,5 + 2966: -108,22 + 2967: -108,23 + 2968: -108,24 + 2969: -108,26 + 2970: -108,28 + 2971: -108,29 + 3276: 35,18 - node: color: '#80C71F95' id: MonoOverlay decals: - 1522: 47,-30 - 1523: 48,-29 - 1524: 49,-28 - 1525: 49,-30 - 1526: 47,-28 + 1519: 47,-30 + 1520: 48,-29 + 1521: 49,-28 + 1522: 49,-30 + 1523: 47,-28 - node: color: '#D4D4D40C' id: PavementCheckerAOverlay decals: - 2898: 35,-34 - 2899: 32,-33 - 2900: 31,-29 + 2868: 35,-34 + 2869: 32,-33 + 2870: 31,-29 - node: color: '#D4D4D428' id: PavementCheckerAOverlay decals: - 2887: 29,-34 - 2888: 30,-32 - 2889: 28,-34 - 2890: 28,-27 - 2891: 30,-29 - 2892: 32,-27 - 2893: 33,-28 - 2894: 33,-31 - 2895: 33,-30 - 2896: 34,-34 - 2897: 33,-33 + 2857: 29,-34 + 2858: 30,-32 + 2859: 28,-34 + 2860: 28,-27 + 2861: 30,-29 + 2862: 32,-27 + 2863: 33,-28 + 2864: 33,-31 + 2865: 33,-30 + 2866: 34,-34 + 2867: 33,-33 - node: color: '#D4D4D40C' id: PavementCheckerBOverlay decals: - 2911: 33,-34 - 2912: 28,-32 - 2913: 31,-27 - 2914: 32,-28 + 2881: 33,-34 + 2882: 28,-32 + 2883: 31,-27 + 2884: 32,-28 - node: color: '#D4D4D412' id: PavementCheckerBOverlay decals: - 2902: 30,-33 - 2903: 30,-34 - 2904: 29,-32 - 2905: 28,-33 - 2906: 30,-31 - 2907: 28,-28 - 2908: 30,-27 - 2909: 30,-28 - 2910: 31,-29 + 2872: 30,-33 + 2873: 30,-34 + 2874: 29,-32 + 2875: 28,-33 + 2876: 30,-31 + 2877: 28,-28 + 2878: 30,-27 + 2879: 30,-28 + 2880: 31,-29 - node: color: '#D4D4D428' id: PavementCheckerBOverlay decals: - 2881: 35,-30 - 2882: 32,-29 - 2883: 31,-28 - 2884: 29,-28 - 2885: 30,-30 - 2886: 29,-33 - 2901: 31,-33 + 2851: 35,-30 + 2852: 32,-29 + 2853: 31,-28 + 2854: 29,-28 + 2855: 30,-30 + 2856: 29,-33 + 2871: 31,-33 - node: cleanable: True color: '#169C9CFF' id: Prima decals: - 2721: 4.4262443,-52.031498 + 2697: 4.4262443,-52.031498 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 470: -1,-8 - 471: -1,-7 - 472: -1,-6 - 473: -1,-5 - 474: -1,-4 - 475: -1,-3 - 502: -3,1 - 503: -4,0 - 616: -74,18 - 617: -73,18 - 880: -1,-21 - 881: -1,-20 - 882: -1,-19 - 883: -1,-18 - 884: -1,-17 - 885: -1,-16 - 886: -1,-15 - 887: -1,-14 - 888: -1,-13 - 889: -1,-12 - 890: -1,-11 - 891: -1,-10 + 467: -1,-8 + 468: -1,-7 + 469: -1,-6 + 470: -1,-5 + 471: -1,-4 + 472: -1,-3 + 499: -3,1 + 500: -4,0 + 613: -74,18 + 614: -73,18 + 877: -1,-21 + 878: -1,-20 + 879: -1,-19 + 880: -1,-18 + 881: -1,-17 + 882: -1,-16 + 883: -1,-15 + 884: -1,-14 + 885: -1,-13 + 886: -1,-12 + 887: -1,-11 + 888: -1,-10 - node: color: '#52B4E92E' id: QuarterTileOverlayGreyscale decals: - 1012: 4,-66 + 1009: 4,-66 - node: color: '#52B4E944' id: QuarterTileOverlayGreyscale decals: - 1066: -3,-59 - 1067: -3,-58 - 1068: -3,-57 + 1063: -3,-59 + 1064: -3,-58 + 1065: -3,-57 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 2838: 44,-15 - 2867: 48,-19 - 3538: 44,-25 + 2814: 44,-15 + 2837: 48,-19 + 3484: 44,-25 - node: color: '#79150096' id: QuarterTileOverlayGreyscale decals: - 938: 45,26 - 939: 48,27 - 2678: 37,26 - 2679: 36,26 - 2680: 35,26 - 2681: 34,26 - 2682: 33,26 - 2683: 32,26 - 2684: 20,26 - 2685: 21,26 - 2686: 22,26 - 2687: 23,26 - 2688: 24,26 - 2689: 25,26 - 2690: 26,26 - 2691: 27,26 - 2692: 28,26 - 2693: 29,26 - 2694: 30,26 - 2695: 31,26 - 2878: 19,26 + 935: 45,26 + 936: 48,27 + 2654: 37,26 + 2655: 36,26 + 2656: 35,26 + 2657: 34,26 + 2658: 33,26 + 2659: 32,26 + 2660: 20,26 + 2661: 21,26 + 2662: 22,26 + 2663: 23,26 + 2664: 24,26 + 2665: 25,26 + 2666: 26,26 + 2667: 27,26 + 2668: 28,26 + 2669: 29,26 + 2670: 30,26 + 2671: 31,26 + 2848: 19,26 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale decals: - 580: 50,14 - 635: 27,9 - 636: 25,9 - 637: 26,9 - 638: 21,9 - 639: 20,9 - 640: 19,9 - 3088: 37,1 - 3089: 37,0 - 3090: 37,-1 - 3105: 51,4 - 3106: 50,4 - 3107: 49,4 - 3108: 48,4 - 3109: 48,3 - 3110: 47,3 - 3111: 46,3 - 3112: 45,3 - 3113: 44,3 - 3114: 43,3 - 3115: 42,3 - 3116: 41,3 - 3117: 40,3 + 577: 50,14 + 632: 27,9 + 633: 25,9 + 634: 26,9 + 635: 21,9 + 636: 20,9 + 637: 19,9 + 3058: 37,1 + 3059: 37,0 + 3060: 37,-1 + 3075: 51,4 + 3076: 50,4 + 3077: 49,4 + 3078: 48,4 + 3079: 48,3 + 3080: 47,3 + 3081: 46,3 + 3082: 45,3 + 3083: 44,3 + 3084: 43,3 + 3085: 42,3 + 3086: 41,3 + 3087: 40,3 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale decals: - 313: -35,11 - 314: -35,12 - 315: -35,13 - 316: -35,14 - 317: -35,15 - 1598: -31,9 - 1600: -37,9 - 1601: -38,9 - 1602: -39,9 - 1603: -39,8 - 1604: -39,7 - 1605: -39,6 - 1979: -40,-4 - 1980: -39,-4 - 1981: -39,-3 + 310: -35,11 + 311: -35,12 + 312: -35,13 + 313: -35,14 + 314: -35,15 + 1595: -31,9 + 1597: -37,9 + 1598: -38,9 + 1599: -39,9 + 1600: -39,8 + 1601: -39,7 + 1602: -39,6 + 1957: -40,-4 + 1958: -39,-4 + 1959: -39,-3 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale @@ -4256,254 +4249,252 @@ entities: 178: 15,-5 179: 15,-6 180: 15,-7 - 367: 15,-14 - 368: 15,-13 - 369: 15,-12 - 370: 15,-11 - 371: 15,-15 - 1119: -3,-54 - 1126: -2,-52 - 1127: -2,-51 - 1128: -2,-50 - 1129: -2,-49 - 1130: -2,-48 - 1131: -2,-47 - 1132: -2,-46 - 1178: -17,11 - 1179: -17,12 - 1180: -17,13 - 1181: -17,14 - 1182: -17,15 - 1183: -17,17 - 1184: -17,16 - 1185: -17,18 - 1186: -17,19 - 1187: -17,20 - 1188: -17,21 - 1367: 6,-22 - 1368: 6,-21 - 1369: 6,-20 - 1370: 7,-20 - 1371: 8,-20 - 1372: 9,-20 - 1373: 6,-23 - 1374: 5,-23 - 1375: 4,-23 - 1376: 3,-23 - 1397: -4,10 - 1398: -5,10 - 1399: -6,10 - 1400: -7,10 - 1401: -7,9 - 1402: -8,9 - 1403: -9,9 - 1404: -10,9 - 1405: -11,9 - 1406: -12,9 - 1432: -31,25 - 1433: -29,25 - 1434: -30,25 - 1435: -28,25 - 1436: -27,25 - 1437: -26,25 - 1438: -25,25 - 1439: -24,25 - 1463: -22,-23 - 1464: -23,-23 - 1465: -24,-23 - 1466: -25,-23 - 1467: -26,-23 - 1471: 10,-23 - 1472: 11,-23 - 1473: 12,-23 - 1474: 13,-23 - 1475: 14,-23 - 1490: 36,10 - 1491: 36,11 - 1492: 37,11 - 1493: 38,11 - 1630: 8,7 - 2080: -39,-19 - 2081: -39,-20 - 2082: -39,-21 - 2083: -39,-22 - 2084: -39,-23 - 2119: -10,-23 - 2120: -11,-23 - 2121: -12,-23 - 2332: -28,9 - 2333: -29,9 - 2334: -30,9 - 2335: -17,5 - 2336: -17,4 - 2337: -17,3 - 2338: -18,9 - 2341: -17,9 - 2591: 15,12 - 2592: 15,11 - 2593: 15,9 - 2595: 15,-22 - 2596: 15,-23 - 2599: -17,-23 - 2624: 15,23 - 2625: 15,24 - 2626: 15,25 - 2627: 15,27 - 2628: 15,28 - 2642: -1,-41 - 2643: -1,-40 - 2644: -1,-39 - 2645: -1,-38 - 2646: -1,-37 - 2647: -1,-36 - 2648: -1,-35 - 2649: -1,-34 - 2650: -1,-33 - 2651: -1,-32 - 2652: -1,-31 - 2653: -1,-30 - 2654: -1,-29 - 2655: -1,-28 - 3663: -10,-54 - 3664: -9,-54 - 3665: -8,-54 - 3666: -7,-54 - 3667: -6,-54 - 3668: -5,-54 - 3669: -17,-54 - 3670: -18,-54 - 3671: -19,-54 + 364: 15,-14 + 365: 15,-13 + 366: 15,-12 + 367: 15,-11 + 368: 15,-15 + 1116: -3,-54 + 1123: -2,-52 + 1124: -2,-51 + 1125: -2,-50 + 1126: -2,-49 + 1127: -2,-48 + 1128: -2,-47 + 1129: -2,-46 + 1175: -17,11 + 1176: -17,12 + 1177: -17,13 + 1178: -17,14 + 1179: -17,15 + 1180: -17,17 + 1181: -17,16 + 1182: -17,18 + 1183: -17,19 + 1184: -17,20 + 1185: -17,21 + 1364: 6,-22 + 1365: 6,-21 + 1366: 6,-20 + 1367: 7,-20 + 1368: 8,-20 + 1369: 9,-20 + 1370: 6,-23 + 1371: 5,-23 + 1372: 4,-23 + 1373: 3,-23 + 1394: -4,10 + 1395: -5,10 + 1396: -6,10 + 1397: -7,10 + 1398: -7,9 + 1399: -8,9 + 1400: -9,9 + 1401: -10,9 + 1402: -11,9 + 1403: -12,9 + 1429: -31,25 + 1430: -29,25 + 1431: -30,25 + 1432: -28,25 + 1433: -27,25 + 1434: -26,25 + 1435: -25,25 + 1436: -24,25 + 1460: -22,-23 + 1461: -23,-23 + 1462: -24,-23 + 1463: -25,-23 + 1464: -26,-23 + 1468: 10,-23 + 1469: 11,-23 + 1470: 12,-23 + 1471: 13,-23 + 1472: 14,-23 + 1487: 36,10 + 1488: 36,11 + 1489: 37,11 + 1490: 38,11 + 1627: 8,7 + 2058: -39,-19 + 2059: -39,-20 + 2060: -39,-21 + 2061: -39,-22 + 2062: -39,-23 + 2097: -10,-23 + 2098: -11,-23 + 2099: -12,-23 + 2308: -28,9 + 2309: -29,9 + 2310: -30,9 + 2311: -17,5 + 2312: -17,4 + 2313: -17,3 + 2314: -18,9 + 2317: -17,9 + 2567: 15,12 + 2568: 15,11 + 2569: 15,9 + 2571: 15,-22 + 2572: 15,-23 + 2575: -17,-23 + 2600: 15,23 + 2601: 15,24 + 2602: 15,25 + 2603: 15,27 + 2604: 15,28 + 2618: -1,-41 + 2619: -1,-40 + 2620: -1,-39 + 2621: -1,-38 + 2622: -1,-37 + 2623: -1,-36 + 2624: -1,-35 + 2625: -1,-34 + 2626: -1,-33 + 2627: -1,-32 + 2628: -1,-31 + 2629: -1,-30 + 2630: -1,-29 + 2631: -1,-28 + 3591: -10,-54 + 3592: -9,-54 + 3593: -8,-54 + 3594: -7,-54 + 3595: -6,-54 + 3596: -5,-54 + 3597: -17,-54 + 3598: -18,-54 + 3599: -19,-54 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale decals: - 1013: -3,-61 - 1014: -3,-62 - 1015: -3,-63 - 1016: -3,-64 - 1017: -3,-65 - 1018: -3,-66 - 1019: -4,-66 - 1020: -4,-67 - 1021: -4,-68 - 1022: -4,-69 - 1023: -3,-70 - 1024: -3,-71 - 1025: -3,-72 - 1026: -3,-73 - 1027: -3,-74 + 1010: -3,-61 + 1011: -3,-62 + 1012: -3,-63 + 1013: -3,-64 + 1014: -3,-65 + 1015: -3,-66 + 1016: -4,-66 + 1017: -4,-67 + 1018: -4,-68 + 1019: -4,-69 + 1020: -3,-70 + 1021: -3,-71 + 1022: -3,-72 + 1023: -3,-73 + 1024: -3,-74 - node: color: '#D4D4D441' id: QuarterTileOverlayGreyscale decals: - 948: 43,26 - 949: 47,26 + 945: 43,26 + 946: 47,26 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale decals: - 1551: 51,22 - 1552: 50,22 - 1553: 49,22 - 1554: 48,22 - 1555: 47,22 - 1563: 52,23 - 1564: 52,22 - 1582: 41,18 - 1583: 40,18 - 1584: 39,18 + 1548: 51,22 + 1549: 50,22 + 1550: 49,22 + 1551: 48,22 + 1552: 47,22 + 1560: 52,23 + 1561: 52,22 + 1579: 41,18 + 1580: 40,18 + 1581: 39,18 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 654: -17,-17 - 655: -17,-16 - 656: -17,-15 - 657: -17,-14 - 658: -17,-13 - 659: -17,-12 - 660: -17,-11 - 661: -17,-10 - 662: -17,-9 - 663: -17,-8 - 664: -17,-7 - 665: -17,-6 - 701: -18,1 - 702: -18,2 - 1638: -11,-16 - 1639: -11,-15 - 1640: -11,-14 - 1641: -11,-13 - 1642: -11,-12 - 1648: -10,-12 + 651: -17,-17 + 652: -17,-16 + 653: -17,-15 + 654: -17,-14 + 655: -17,-13 + 656: -17,-12 + 657: -17,-11 + 658: -17,-10 + 659: -17,-9 + 660: -17,-8 + 661: -17,-7 + 662: -17,-6 + 698: -18,1 + 699: -18,2 + 3834: -13,-14 + 3835: -13,-15 + 3836: -13,-16 + 3837: -13,-17 - node: color: '#EFCC4196' id: QuarterTileOverlayGreyscale decals: - 2207: 9,13 - 2228: -1,11 - 2229: -2,11 - 2230: -3,11 - 2231: -4,11 + 2185: 9,13 + 2206: -1,11 + 2207: -2,11 + 2208: -3,11 + 2209: -4,11 - node: color: '#FF994193' id: QuarterTileOverlayGreyscale decals: - 3657: -13,-54 - 3658: -12,-54 - 3659: -14,-54 - 3660: -15,-54 - 3661: -16,-54 - 3662: -11,-54 + 3585: -13,-54 + 3586: -12,-54 + 3587: -14,-54 + 3588: -15,-54 + 3589: -16,-54 + 3590: -11,-54 - node: color: '#FFEF9292' id: QuarterTileOverlayGreyscale decals: - 2825: 44,-35 + 2801: 44,-35 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: - 688: -15,4 + 685: -15,4 - node: color: '#52B4E92E' id: QuarterTileOverlayGreyscale180 decals: - 997: 3,-61 - 998: 3,-62 - 999: 3,-63 - 1000: 3,-64 - 1001: 3,-65 - 1002: 4,-66 - 1003: 4,-67 - 1004: 4,-68 - 1005: 4,-69 - 1006: 3,-70 - 1007: 3,-71 - 1008: 3,-72 - 1009: 3,-73 - 1010: 3,-74 - 1011: 3,-69 + 994: 3,-61 + 995: 3,-62 + 996: 3,-63 + 997: 3,-64 + 998: 3,-65 + 999: 4,-66 + 1000: 4,-67 + 1001: 4,-68 + 1002: 4,-69 + 1003: 3,-70 + 1004: 3,-71 + 1005: 3,-72 + 1006: 3,-73 + 1007: 3,-74 + 1008: 3,-69 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 249: 41,-25 - 250: 40,-25 - 251: 39,-25 - 252: 38,-25 - 253: 37,-25 - 2837: 44,-9 - 2868: 47,-18 - 3530: 44,-17 + 246: 41,-25 + 247: 40,-25 + 248: 39,-25 + 249: 38,-25 + 250: 37,-25 + 2813: 44,-9 + 2838: 47,-18 + 3476: 44,-17 - node: color: '#79150096' id: QuarterTileOverlayGreyscale180 decals: - 931: 56,20 - 932: 54,20 - 933: 52,20 - 936: 56,22 + 928: 56,20 + 929: 54,20 + 930: 52,20 + 933: 56,22 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 @@ -4511,195 +4502,195 @@ entities: 13: 47,-27 23: 52,-26 31: 50,-33 - 3627: 35,-25 - 3628: 34,-25 - 3629: 33,-25 + 3556: 35,-25 + 3557: 34,-25 + 3558: 33,-25 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 decals: - 628: 41,11 - 641: 34,7 - 642: 33,7 - 643: 32,7 - 644: 31,7 - 645: 30,7 - 646: 29,7 - 647: 28,7 - 649: 38,4 - 650: 41,13 - 651: 41,14 - 652: 41,15 - 653: 41,16 + 625: 41,11 + 638: 34,7 + 639: 33,7 + 640: 32,7 + 641: 31,7 + 642: 30,7 + 643: 29,7 + 644: 28,7 + 646: 38,4 + 647: 41,13 + 648: 41,14 + 649: 41,15 + 650: 41,16 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 1447: -28,7 - 1448: -29,7 - 1449: -30,7 - 1450: -31,7 - 1451: -32,7 - 1452: -33,7 - 1453: -34,7 - 1468: 9,-20 - 1469: 9,-21 - 1470: 9,-22 - 1497: -14,-2 - 1498: -15,-2 - 1499: -15,-3 - 1500: -15,-4 - 1501: -15,-5 - 1502: -15,-6 - 1503: -15,-7 - 1504: -15,-8 - 1505: -15,-9 - 1506: -15,5 - 1507: -15,6 - 1508: -15,7 - 1509: -14,7 - 1510: 10,7 - 1511: 9,7 - 1512: 8,7 - 1606: -12,7 - 1607: -11,7 - 1608: -10,7 - 1609: -9,7 - 1610: -8,7 - 1611: -8,8 - 1612: -7,8 - 1613: -6,8 - 1614: -5,8 - 1615: -5,9 - 1616: -4,9 - 1617: -3,9 - 1618: -2,9 - 1619: -1,9 - 2104: -28,-25 - 2105: -29,-25 - 2620: -28,23 - 2621: -29,23 - 2622: -30,23 - 2623: -31,23 - 2671: 1,-43 - 2672: 2,-78 - 2673: 2,-77 - 2674: 2,-76 - 3630: 32,-25 - 3631: 31,-25 - 3632: 30,-25 - 3633: 29,-25 - 3634: 28,-25 - 3635: 27,-25 - 3636: 26,-25 - 3637: 25,-25 - 3638: 23,-25 - 3639: 24,-25 - 3640: 22,-25 - 3641: 21,-25 - 3642: 20,-25 - 3643: 19,-25 + 1444: -28,7 + 1445: -29,7 + 1446: -30,7 + 1447: -31,7 + 1448: -32,7 + 1449: -33,7 + 1450: -34,7 + 1465: 9,-20 + 1466: 9,-21 + 1467: 9,-22 + 1494: -14,-2 + 1495: -15,-2 + 1496: -15,-3 + 1497: -15,-4 + 1498: -15,-5 + 1499: -15,-6 + 1500: -15,-7 + 1501: -15,-8 + 1502: -15,-9 + 1503: -15,5 + 1504: -15,6 + 1505: -15,7 + 1506: -14,7 + 1507: 10,7 + 1508: 9,7 + 1509: 8,7 + 1603: -12,7 + 1604: -11,7 + 1605: -10,7 + 1606: -9,7 + 1607: -8,7 + 1608: -8,8 + 1609: -7,8 + 1610: -6,8 + 1611: -5,8 + 1612: -5,9 + 1613: -4,9 + 1614: -3,9 + 1615: -2,9 + 1616: -1,9 + 2082: -28,-25 + 2083: -29,-25 + 2596: -28,23 + 2597: -29,23 + 2598: -30,23 + 2599: -31,23 + 2647: 1,-43 + 2648: 2,-78 + 2649: 2,-77 + 2650: 2,-76 + 3559: 32,-25 + 3560: 31,-25 + 3561: 30,-25 + 3562: 29,-25 + 3563: 28,-25 + 3564: 27,-25 + 3565: 26,-25 + 3566: 25,-25 + 3567: 23,-25 + 3568: 24,-25 + 3569: 22,-25 + 3570: 21,-25 + 3571: 20,-25 + 3572: 19,-25 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale180 decals: - 1028: -4,-69 - 1060: 3,-59 - 1061: 3,-58 - 1062: 3,-57 + 1025: -4,-69 + 1057: 3,-59 + 1058: 3,-58 + 1059: 3,-57 - node: color: '#D4D4D441' id: QuarterTileOverlayGreyscale180 decals: - 943: 56,21 - 944: 55,20 - 945: 53,20 + 940: 56,21 + 941: 55,20 + 942: 53,20 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 decals: - 1556: 46,23 - 1557: 46,24 - 1558: 47,24 - 1559: 48,24 - 1560: 49,24 - 1561: 50,24 - 1562: 51,24 - 1585: 39,20 - 1586: 40,20 - 1587: 41,20 + 1553: 46,23 + 1554: 46,24 + 1555: 47,24 + 1556: 48,24 + 1557: 49,24 + 1558: 50,24 + 1559: 51,24 + 1582: 39,20 + 1583: 40,20 + 1584: 41,20 - node: color: '#EFB3414A' id: QuarterTileOverlayGreyscale180 decals: - 3057: 19,6 - 3058: 20,6 - 3059: 20,7 - 3060: 21,7 - 3061: 22,7 + 3027: 19,6 + 3028: 20,6 + 3029: 20,7 + 3030: 21,7 + 3031: 22,7 - node: color: '#EFB34160' id: QuarterTileOverlayGreyscale180 decals: - 2573: 17,19 - 2574: 17,20 - 2575: 17,21 + 2549: 17,19 + 2550: 17,20 + 2551: 17,21 - node: color: '#FFEF9292' id: QuarterTileOverlayGreyscale180 decals: - 2826: 44,-27 + 2802: 44,-27 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: - 613: -74,16 - 614: -73,16 - 615: -72,16 + 610: -74,16 + 611: -73,16 + 612: -72,16 - node: color: '#52B4E92E' id: QuarterTileOverlayGreyscale270 decals: - 981: -3,-74 - 982: -3,-73 - 983: -3,-72 - 984: -3,-71 - 985: -3,-70 - 986: -3,-69 - 987: -4,-69 - 988: -4,-68 - 989: -4,-67 - 990: -4,-66 - 991: -3,-65 - 992: -3,-64 - 993: -3,-63 - 994: -3,-62 - 995: -3,-61 + 978: -3,-74 + 979: -3,-73 + 980: -3,-72 + 981: -3,-71 + 982: -3,-70 + 983: -3,-69 + 984: -4,-69 + 985: -4,-68 + 986: -4,-67 + 987: -4,-66 + 988: -3,-65 + 989: -3,-64 + 990: -3,-63 + 991: -3,-62 + 992: -3,-61 - node: color: '#79150096' id: QuarterTileOverlayGreyscale270 decals: - 928: 42,20 - 929: 44,20 - 930: 46,20 - 1572: 47,24 - 1573: 48,24 - 1574: 49,24 - 1575: 50,24 - 1576: 51,24 - 1577: 52,24 - 1578: 52,23 - 1588: 41,20 - 1589: 40,20 - 1590: 39,20 + 925: 42,20 + 926: 44,20 + 927: 46,20 + 1569: 47,24 + 1570: 48,24 + 1571: 49,24 + 1572: 50,24 + 1573: 51,24 + 1574: 52,24 + 1575: 52,23 + 1585: 41,20 + 1586: 40,20 + 1587: 39,20 - node: color: '#9FED584A' id: QuarterTileOverlayGreyscale270 decals: - 3215: 39,16 - 3216: 39,15 - 3217: 39,14 - 3218: 39,13 + 3165: 39,16 + 3166: 39,15 + 3167: 39,14 + 3168: 39,13 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 @@ -4710,39 +4701,32 @@ entities: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: - 558: 48,12 - 648: 36,4 - 3131: 45,-2 - 3132: 45,-1 - 3133: 45,0 - 3134: 45,1 - 3135: 45,2 - 3136: 44,2 - 3137: 43,2 - 3163: 49,6 - 3164: 50,6 - 3165: 54,6 - 3166: 51,6 - 3167: 52,6 - 3168: 53,6 - 3169: 55,6 - 3170: 56,6 + 555: 48,12 + 645: 36,4 + 3120: 49,6 + 3121: 50,6 + 3122: 54,6 + 3123: 51,6 + 3124: 52,6 + 3125: 53,6 + 3126: 55,6 + 3127: 56,6 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 312: -39,13 - 1982: -39,1 - 1983: -39,2 - 1984: -39,3 - 1985: -39,4 - 1986: -40,-8 - 1987: -39,-8 - 1988: -39,-9 - 1989: -39,-10 - 1990: -39,-11 - 1991: -39,-12 - 1992: -40,-7 + 309: -39,13 + 1960: -39,1 + 1961: -39,2 + 1962: -39,3 + 1963: -39,4 + 1964: -40,-8 + 1965: -39,-8 + 1966: -39,-9 + 1967: -39,-10 + 1968: -39,-11 + 1969: -39,-12 + 1970: -40,-7 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 @@ -4750,190 +4734,190 @@ entities: 181: 15,2 182: 15,3 183: 15,4 - 1098: -5,-56 - 1099: -6,-56 - 1100: -7,-56 - 1101: -8,-56 - 1102: -9,-56 - 1103: -10,-56 - 1104: -11,-56 - 1105: -12,-56 - 1106: -13,-56 - 1107: -14,-56 - 1108: -15,-56 - 1109: -16,-56 - 1110: -17,-56 - 1111: -18,-56 - 1112: -19,-56 - 1141: 20,23 - 1142: 21,23 - 1143: 22,23 - 1144: 23,23 - 1145: 24,23 - 1146: 25,23 - 1147: 27,23 - 1148: 28,23 - 1149: 29,23 - 1150: 30,23 - 1151: 34,23 - 1152: 35,23 - 1153: 36,23 - 1154: 37,23 - 1413: -44,19 - 1414: -44,20 - 1415: -44,21 - 1416: -44,22 - 1417: -44,23 - 1418: -44,24 - 1419: -44,25 - 1440: -20,7 - 1441: -21,7 - 1442: -22,7 - 1443: -23,7 - 1444: -24,7 - 1445: -25,7 - 1446: -26,7 - 1454: -39,-25 - 1455: -38,-25 - 1456: -37,-25 - 1457: -36,-25 - 1458: -35,-25 - 1459: -34,-25 - 1460: -33,-25 - 1461: -32,-25 - 1462: -31,-25 - 1513: 12,7 - 1514: 13,7 - 1620: 1,9 - 1621: 2,9 - 1622: 3,9 - 1623: 4,9 - 1624: 5,9 - 1625: 5,8 - 1626: 6,8 - 1627: 7,8 - 1628: 8,8 - 1629: 8,7 - 2100: -39,-17 - 2101: -39,-16 - 2102: -39,-15 - 2103: -39,-14 - 2106: -26,-25 - 2107: -25,-25 - 2108: -24,-25 - 2109: -23,-25 - 2110: -22,-25 - 2111: -21,-25 - 2112: -20,-25 - 2113: -19,-25 - 2114: -18,-25 - 2115: -17,-25 - 2116: -16,-25 - 2117: -15,-25 - 2118: -14,-25 - 2342: -17,7 - 2343: -18,7 - 2583: 15,14 - 2584: 15,15 - 2585: 15,16 - 2586: 15,17 - 2587: 15,18 - 2588: 15,19 - 2589: 15,20 - 2590: 15,21 - 2600: -17,-22 - 2614: -24,23 - 2615: -23,23 - 2616: -22,23 - 2617: -21,23 - 2618: -20,23 - 2619: -19,23 - 2670: -1,-43 - 2675: -2,-78 - 2676: -2,-77 - 2677: -2,-76 + 1095: -5,-56 + 1096: -6,-56 + 1097: -7,-56 + 1098: -8,-56 + 1099: -9,-56 + 1100: -10,-56 + 1101: -11,-56 + 1102: -12,-56 + 1103: -13,-56 + 1104: -14,-56 + 1105: -15,-56 + 1106: -16,-56 + 1107: -17,-56 + 1108: -18,-56 + 1109: -19,-56 + 1138: 20,23 + 1139: 21,23 + 1140: 22,23 + 1141: 23,23 + 1142: 24,23 + 1143: 25,23 + 1144: 27,23 + 1145: 28,23 + 1146: 29,23 + 1147: 30,23 + 1148: 34,23 + 1149: 35,23 + 1150: 36,23 + 1151: 37,23 + 1410: -44,19 + 1411: -44,20 + 1412: -44,21 + 1413: -44,22 + 1414: -44,23 + 1415: -44,24 + 1416: -44,25 + 1437: -20,7 + 1438: -21,7 + 1439: -22,7 + 1440: -23,7 + 1441: -24,7 + 1442: -25,7 + 1443: -26,7 + 1451: -39,-25 + 1452: -38,-25 + 1453: -37,-25 + 1454: -36,-25 + 1455: -35,-25 + 1456: -34,-25 + 1457: -33,-25 + 1458: -32,-25 + 1459: -31,-25 + 1510: 12,7 + 1511: 13,7 + 1617: 1,9 + 1618: 2,9 + 1619: 3,9 + 1620: 4,9 + 1621: 5,9 + 1622: 5,8 + 1623: 6,8 + 1624: 7,8 + 1625: 8,8 + 1626: 8,7 + 2078: -39,-17 + 2079: -39,-16 + 2080: -39,-15 + 2081: -39,-14 + 2084: -26,-25 + 2085: -25,-25 + 2086: -24,-25 + 2087: -23,-25 + 2088: -22,-25 + 2089: -21,-25 + 2090: -20,-25 + 2091: -19,-25 + 2092: -18,-25 + 2093: -17,-25 + 2094: -16,-25 + 2095: -15,-25 + 2096: -14,-25 + 2318: -17,7 + 2319: -18,7 + 2559: 15,14 + 2560: 15,15 + 2561: 15,16 + 2562: 15,17 + 2563: 15,18 + 2564: 15,19 + 2565: 15,20 + 2566: 15,21 + 2576: -17,-22 + 2590: -24,23 + 2591: -23,23 + 2592: -22,23 + 2593: -21,23 + 2594: -20,23 + 2595: -19,23 + 2646: -1,-43 + 2651: -2,-78 + 2652: -2,-77 + 2653: -2,-76 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale270 decals: - 1043: 4,-69 - 1057: -3,-59 - 1058: -3,-58 - 1059: -3,-57 + 1040: 4,-69 + 1054: -3,-59 + 1055: -3,-58 + 1056: -3,-57 - node: color: '#D4D4D441' id: QuarterTileOverlayGreyscale270 decals: - 946: 45,20 - 947: 43,20 + 943: 45,20 + 944: 43,20 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 699: -18,-1 - 700: -18,0 + 696: -18,-1 + 697: -18,0 - node: color: '#DF81C96C' id: QuarterTileOverlayGreyscale270 decals: - 3130: 48,4 + 3100: 48,4 - node: color: '#EFB3414A' id: QuarterTileOverlayGreyscale270 decals: - 3052: 27,6 - 3053: 26,6 - 3054: 26,7 - 3055: 25,7 - 3056: 24,7 + 3022: 27,6 + 3023: 26,6 + 3024: 26,7 + 3025: 25,7 + 3026: 24,7 - node: color: '#EFCC4196' id: QuarterTileOverlayGreyscale270 decals: - 2208: 9,15 + 2186: 9,15 - node: color: '#EFD54193' id: QuarterTileOverlayGreyscale270 decals: - 3280: 6,13 + 3230: 6,13 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: - 476: 1,-8 - 477: 1,-7 - 478: 1,-6 - 479: 1,-5 - 480: 1,-4 - 481: 1,-3 - 500: 3,1 - 501: -4,1 - 504: 4,0 - 691: -15,2 - 868: 1,-10 - 869: 1,-11 - 870: 1,-12 - 871: 1,-13 - 872: 1,-14 - 873: 1,-15 - 874: 1,-16 - 875: 1,-17 - 876: 1,-18 - 877: 1,-19 - 878: 1,-20 - 879: 1,-21 + 473: 1,-8 + 474: 1,-7 + 475: 1,-6 + 476: 1,-5 + 477: 1,-4 + 478: 1,-3 + 497: 3,1 + 498: -4,1 + 501: 4,0 + 688: -15,2 + 865: 1,-10 + 866: 1,-11 + 867: 1,-12 + 868: 1,-13 + 869: 1,-14 + 870: 1,-15 + 871: 1,-16 + 872: 1,-17 + 873: 1,-18 + 874: 1,-19 + 875: 1,-20 + 876: 1,-21 - node: color: '#52B4E92E' id: QuarterTileOverlayGreyscale90 decals: - 996: -4,-66 + 993: -4,-66 - node: color: '#52B4E944' id: QuarterTileOverlayGreyscale90 decals: - 1063: 3,-59 - 1064: 3,-58 - 1065: 3,-57 + 1060: 3,-59 + 1061: 3,-58 + 1062: 3,-57 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -4943,29 +4927,29 @@ entities: 240: 39,-23 241: 40,-23 242: 41,-23 - 3622: 35,-23 - 3623: 34,-23 - 3624: 33,-23 - 3625: 32,-23 - 3626: 31,-23 + 3551: 35,-23 + 3552: 34,-23 + 3553: 33,-23 + 3554: 32,-23 + 3555: 31,-23 - node: color: '#79150096' id: QuarterTileOverlayGreyscale90 decals: - 934: 56,26 - 935: 56,24 - 937: 53,26 - 940: 50,27 - 1565: 51,22 - 1566: 50,22 - 1567: 49,22 - 1568: 48,22 - 1569: 47,22 - 1570: 46,22 - 1571: 46,23 - 1579: 41,18 - 1580: 40,18 - 1581: 39,18 + 931: 56,26 + 932: 56,24 + 934: 53,26 + 937: 50,27 + 1562: 51,22 + 1563: 50,22 + 1564: 49,22 + 1565: 48,22 + 1566: 47,22 + 1567: 46,22 + 1568: 46,23 + 1576: 41,18 + 1577: 40,18 + 1578: 39,18 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 @@ -4975,280 +4959,286 @@ entities: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 629: 34,9 - 630: 33,9 - 631: 32,9 - 632: 31,9 - 633: 30,9 - 634: 29,9 + 626: 34,9 + 627: 33,9 + 628: 32,9 + 629: 31,9 + 630: 30,9 + 631: 29,9 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 1599: -35,9 - 2530: -55,17 - 2531: -56,17 - 2532: -57,17 - 2533: -54,17 + 1596: -35,9 + 2506: -55,17 + 2507: -56,17 + 2508: -57,17 + 2509: -54,17 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 decals: - 1113: 10,-54 - 1114: 9,-54 - 1115: 7,-54 - 1116: 8,-54 - 1117: 5,-54 - 1118: 3,-54 - 1120: 2,-47 - 1121: 2,-48 - 1122: 2,-49 - 1123: 2,-50 - 1124: 2,-51 - 1125: 2,-52 - 1378: -3,-23 - 1379: -4,-23 - 1380: -5,-23 - 1381: -6,-23 - 1382: -7,-23 - 1383: -8,-23 - 1384: -13,-23 - 1385: -14,-23 - 1386: 5,10 - 1387: 6,10 - 1388: 7,10 - 1389: 4,10 - 1390: 7,9 - 1391: 8,9 - 1392: 9,9 - 1393: 10,9 - 1394: 11,9 - 1395: 12,9 - 1396: 13,9 - 1420: -44,25 - 1421: -43,25 - 1422: -42,25 - 1423: -41,25 - 1424: -40,25 - 1425: -39,25 - 1426: -38,25 - 1427: -37,25 - 1428: -36,25 - 1429: -35,25 - 1430: -34,25 - 1431: -33,25 - 1476: 30,-23 - 1477: 29,-23 - 1478: 28,-23 - 1479: 27,-23 - 1480: 26,-23 - 1481: 25,-23 - 1482: 24,-23 - 1483: 23,-23 - 1484: 22,-23 - 1485: 21,-23 - 1486: 20,-23 - 1487: 19,-23 - 1488: 18,-23 - 1494: -15,1 - 1495: -15,0 - 1496: -14,0 - 1860: -15,21 - 1861: -15,20 - 1862: -15,19 - 1863: -15,18 - 1864: -15,17 - 1865: -15,16 - 1866: -15,15 - 1867: -15,14 - 1868: -15,13 - 1869: -15,12 - 1870: -15,11 - 2086: -28,-23 - 2087: -29,-23 - 2088: -30,-23 - 2089: -31,-23 - 2090: -32,-23 - 2091: -33,-23 - 2092: -34,-23 - 2093: -35,-23 - 2094: -36,-23 - 2095: -37,-23 - 2096: -37,-22 - 2097: -37,-21 - 2098: -37,-20 - 2099: -37,-19 - 2327: -20,9 - 2328: -21,9 - 2329: -22,9 - 2330: -23,9 - 2331: -24,9 - 2339: -14,9 - 2340: -15,9 - 2579: 17,14 - 2580: 17,13 - 2581: 17,12 - 2582: 17,11 - 2594: 17,9 - 2597: 17,-22 - 2598: 17,-23 - 2601: -18,-23 - 2602: -15,-23 - 2603: -15,-22 - 2604: -15,-21 - 2605: -15,-20 - 2606: -15,-19 - 2607: -15,-17 - 2608: -15,-16 - 2609: -15,-15 - 2610: -15,-14 - 2611: -15,-13 - 2612: -15,-12 - 2613: -15,-11 - 2656: 1,-28 - 2657: 1,-29 - 2658: 1,-30 - 2659: 1,-31 - 2660: 1,-32 - 2661: 1,-33 - 2662: 1,-34 - 2663: 1,-35 - 2664: 1,-36 - 2665: 1,-37 - 2666: 1,-38 - 2667: 1,-39 - 2668: 1,-40 - 2669: 1,-41 + 1110: 10,-54 + 1111: 9,-54 + 1112: 7,-54 + 1113: 8,-54 + 1114: 5,-54 + 1115: 3,-54 + 1117: 2,-47 + 1118: 2,-48 + 1119: 2,-49 + 1120: 2,-50 + 1121: 2,-51 + 1122: 2,-52 + 1375: -3,-23 + 1376: -4,-23 + 1377: -5,-23 + 1378: -6,-23 + 1379: -7,-23 + 1380: -8,-23 + 1381: -13,-23 + 1382: -14,-23 + 1383: 5,10 + 1384: 6,10 + 1385: 7,10 + 1386: 4,10 + 1387: 7,9 + 1388: 8,9 + 1389: 9,9 + 1390: 10,9 + 1391: 11,9 + 1392: 12,9 + 1393: 13,9 + 1417: -44,25 + 1418: -43,25 + 1419: -42,25 + 1420: -41,25 + 1421: -40,25 + 1422: -39,25 + 1423: -38,25 + 1424: -37,25 + 1425: -36,25 + 1426: -35,25 + 1427: -34,25 + 1428: -33,25 + 1473: 30,-23 + 1474: 29,-23 + 1475: 28,-23 + 1476: 27,-23 + 1477: 26,-23 + 1478: 25,-23 + 1479: 24,-23 + 1480: 23,-23 + 1481: 22,-23 + 1482: 21,-23 + 1483: 20,-23 + 1484: 19,-23 + 1485: 18,-23 + 1491: -15,1 + 1492: -15,0 + 1493: -14,0 + 1838: -15,21 + 1839: -15,20 + 1840: -15,19 + 1841: -15,18 + 1842: -15,17 + 1843: -15,16 + 1844: -15,15 + 1845: -15,14 + 1846: -15,13 + 1847: -15,12 + 1848: -15,11 + 2064: -28,-23 + 2065: -29,-23 + 2066: -30,-23 + 2067: -31,-23 + 2068: -32,-23 + 2069: -33,-23 + 2070: -34,-23 + 2071: -35,-23 + 2072: -36,-23 + 2073: -37,-23 + 2074: -37,-22 + 2075: -37,-21 + 2076: -37,-20 + 2077: -37,-19 + 2303: -20,9 + 2304: -21,9 + 2305: -22,9 + 2306: -23,9 + 2307: -24,9 + 2315: -14,9 + 2316: -15,9 + 2555: 17,14 + 2556: 17,13 + 2557: 17,12 + 2558: 17,11 + 2570: 17,9 + 2573: 17,-22 + 2574: 17,-23 + 2577: -18,-23 + 2578: -15,-23 + 2579: -15,-22 + 2580: -15,-21 + 2581: -15,-20 + 2582: -15,-19 + 2583: -15,-17 + 2584: -15,-16 + 2585: -15,-15 + 2586: -15,-14 + 2587: -15,-13 + 2588: -15,-12 + 2589: -15,-11 + 2632: 1,-28 + 2633: 1,-29 + 2634: 1,-30 + 2635: 1,-31 + 2636: 1,-32 + 2637: 1,-33 + 2638: 1,-34 + 2639: 1,-35 + 2640: 1,-36 + 2641: 1,-37 + 2642: 1,-38 + 2643: 1,-39 + 2644: 1,-40 + 2645: 1,-41 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale90 decals: - 1029: 3,-61 - 1030: 3,-62 - 1031: 3,-63 - 1032: 3,-64 - 1033: 3,-65 - 1034: 4,-66 - 1035: 4,-67 - 1036: 4,-68 - 1037: 4,-69 - 1038: 3,-70 - 1039: 3,-71 - 1040: 3,-72 - 1041: 3,-73 - 1042: 3,-74 + 1026: 3,-61 + 1027: 3,-62 + 1028: 3,-63 + 1029: 3,-64 + 1030: 3,-65 + 1031: 4,-66 + 1032: 4,-67 + 1033: 4,-68 + 1034: 4,-69 + 1035: 3,-70 + 1036: 3,-71 + 1037: 3,-72 + 1038: 3,-73 + 1039: 3,-74 - node: color: '#D4D4D441' id: QuarterTileOverlayGreyscale90 decals: - 941: 55,26 - 942: 56,25 - 950: 51,26 + 938: 55,26 + 939: 56,25 + 947: 51,26 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale90 decals: - 2696: 20,26 - 2697: 21,26 - 2698: 22,26 - 2699: 23,26 - 2700: 24,26 - 2701: 25,26 - 2702: 26,26 - 2703: 27,26 - 2704: 28,26 - 2705: 29,26 - 2706: 37,26 - 2707: 36,26 - 2708: 35,26 - 2709: 34,26 - 2710: 33,26 - 2711: 32,26 - 2712: 31,26 - 2713: 30,26 - 2879: 19,26 + 2672: 20,26 + 2673: 21,26 + 2674: 22,26 + 2675: 23,26 + 2676: 24,26 + 2677: 25,26 + 2678: 26,26 + 2679: 27,26 + 2680: 28,26 + 2681: 29,26 + 2682: 37,26 + 2683: 36,26 + 2684: 35,26 + 2685: 34,26 + 2686: 33,26 + 2687: 32,26 + 2688: 31,26 + 2689: 30,26 + 2849: 19,26 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 666: -37,-17 - 667: -37,-16 - 668: -37,-15 - 669: -37,-14 - 670: -37,-13 - 671: -37,-12 - 672: -37,-11 - 673: -37,-10 - 674: -37,-9 - 675: -37,-8 - 676: -37,-7 - 677: -37,-6 - 1643: -8,-15 - 1644: -8,-14 - 1645: -8,-13 - 1646: -8,-12 - 1647: -9,-12 + 663: -37,-17 + 664: -37,-16 + 665: -37,-15 + 666: -37,-14 + 667: -37,-13 + 668: -37,-12 + 669: -37,-11 + 670: -37,-10 + 671: -37,-9 + 672: -37,-8 + 673: -37,-7 + 674: -37,-6 + 1635: -8,-15 + 1636: -8,-14 + 1637: -8,-13 + 1638: -8,-12 + 1639: -9,-12 + 3832: -10,-12 + 3833: -11,-12 - node: color: '#DF81C96C' id: QuarterTileOverlayGreyscale90 decals: - 3118: 40,3 - 3119: 41,3 - 3120: 42,3 - 3121: 43,3 - 3122: 44,3 - 3123: 45,3 - 3124: 46,3 - 3125: 47,3 - 3126: 48,4 - 3127: 49,4 - 3128: 50,4 - 3129: 51,4 + 3088: 40,3 + 3089: 41,3 + 3090: 42,3 + 3091: 43,3 + 3092: 44,3 + 3093: 45,3 + 3094: 46,3 + 3095: 47,3 + 3096: 48,4 + 3097: 49,4 + 3098: 50,4 + 3099: 51,4 - node: color: '#EFB34160' id: QuarterTileOverlayGreyscale90 decals: - 2576: 17,17 - 2577: 17,16 - 2578: 17,15 + 2552: 17,17 + 2553: 17,16 + 2554: 17,15 - node: color: '#EFCC4196' id: QuarterTileOverlayGreyscale90 decals: - 2232: 1,11 - 2233: 2,11 - 2234: 3,11 - 2235: 4,11 - 2279: -15,23 - 2280: -15,24 - 2281: -15,25 - 2282: -16,25 - 2283: -17,25 - 2284: -18,25 - 2285: -19,25 - 2286: -20,25 + 2210: 1,11 + 2211: 2,11 + 2212: 4,11 + 2255: -15,23 + 2256: -15,24 + 2257: -15,25 + 2258: -16,25 + 2259: -17,25 + 2260: -18,25 + 2261: -19,25 + 2262: -20,25 + - node: + color: '#EFD24193' + id: QuarterTileOverlayGreyscale90 + decals: + 3840: 3,11 - node: color: '#FFFFFFFF' id: Remains decals: - 2714: -63.989975,-10.123885 + 2690: -63.989975,-10.123885 - node: color: '#FFFFFFFF' id: Rock01 decals: - 957: -5.089998,-68.511505 - 959: 5.097502,-68.08963 + 954: -5.089998,-68.511505 + 956: 5.097502,-68.08963 - node: color: '#FFFFFFFF' id: Rock03 decals: - 1544: -47.98986,4.9975877 + 1541: -47.98986,4.9975877 - node: color: '#FFFFFFFF' id: Rock04 decals: - 958: 5.097502,-66.74588 - 1545: -47.02111,4.9975877 + 955: 5.097502,-66.74588 + 1542: -47.02111,4.9975877 - node: cleanable: True color: '#FFFFFFFF' @@ -5271,65 +5261,65 @@ entities: color: '#80C71FFF' id: Sirius decals: - 2720: -9.970831,-51.964848 + 2696: -9.970831,-51.964848 - node: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 752: -3,10 + 749: -3,10 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 753: -2,10 + 750: -2,10 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 754: -1,10 + 751: -1,10 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 755: 0,10 + 752: 0,10 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 756: 1,10 + 753: 1,10 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 757: 2,10 + 754: 2,10 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 758: 3,10 + 755: 3,10 - node: color: '#FFFFFFFF' id: StandClear decals: - 336: -40,-1 - 1749: -23,-20 - 1803: -22,26 + 333: -40,-1 + 1729: -23,-20 + 1783: -22,26 - node: color: '#D381C996' id: StandClearGreyscale decals: - 1243: -53,1 - 1950: -49,1 + 1240: -53,1 + 1928: -49,1 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 2842: 32,-17 + 2815: 32,-17 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale decals: - 2919: 43,9 + 2889: 43,9 - node: color: '#D0BF4AA7' id: ThreeQuarterTileOverlayGreyscale @@ -5339,29 +5329,29 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale decals: - 299: -43,14 - 1996: -43,-10 + 296: -43,14 + 1974: -43,-10 - node: color: '#EFCC4196' id: ThreeQuarterTileOverlayGreyscale decals: - 2195: -5,21 - 2205: 3,15 + 2173: -5,21 + 2183: 3,15 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2844: 35,-21 + 3788: 41,-21 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2830: 45,-35 + 2806: 45,-35 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 decals: - 546: 46,5 + 543: 46,5 - node: color: '#D0BF4AA7' id: ThreeQuarterTileOverlayGreyscale180 @@ -5371,30 +5361,30 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1977: -37,11 - 1995: -41,-11 + 1955: -37,11 + 1973: -41,-11 - node: color: '#EFCC4196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2196: 6,17 - 2206: 7,12 + 2174: 6,17 + 2184: 7,12 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2843: 32,-21 - 2866: 48,-18 + 2816: 32,-21 + 2836: 48,-18 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2829: 43,-35 + 2805: 43,-35 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale270 decals: - 540: 43,5 + 537: 43,5 - node: color: '#D0BF4AA7' id: ThreeQuarterTileOverlayGreyscale270 @@ -5404,32 +5394,32 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 297: -39,11 - 298: -43,13 - 2000: -43,-11 + 294: -39,11 + 295: -43,13 + 1978: -43,-11 - node: color: '#EFCC4196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2198: -5,17 - 2202: 6,12 - 2203: 3,13 + 2176: -5,17 + 2180: 6,12 + 2181: 3,13 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 decals: - 499: 4,1 + 496: 4,1 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2874: 49,-17 - 3502: 35,-17 + 2844: 49,-17 + 3789: 41,-17 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2920: 46,9 + 2890: 46,9 - node: color: '#D0BF4AA7' id: ThreeQuarterTileOverlayGreyscale90 @@ -5439,46 +5429,46 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1976: -37,14 - 1999: -41,-10 + 1954: -37,14 + 1977: -41,-10 - node: color: '#EFCC4196' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2197: 6,21 - 2204: 7,15 + 2175: 6,21 + 2182: 7,15 - node: cleanable: True color: '#B02E26FF' id: Tunnel decals: - 2426: 32.016933,17.019823 + 2402: 32.016933,17.019823 - node: color: '#FFFFFFFF' id: VentSmall decals: - 795: -3,-9 + 792: -3,-9 - node: cleanable: True color: '#835432FF' id: Waffle decals: - 2715: -15.97007,-46.029713 + 2691: -15.97007,-46.029713 - node: color: '#FFFFFFFF' id: WarnBox decals: - 2036: -25,2 - 3219: 12,-55 - 3220: -25,-36 - 3221: 23,-47 - 3222: 20,28 - 3223: 5,-71 - 3224: -5,-71 - 3225: -5,-64 - 3226: 5,-64 - 3227: 39,-47 - 3352: -17,48 + 2014: -25,2 + 3169: 12,-55 + 3170: -25,-36 + 3171: 23,-47 + 3172: 20,28 + 3173: 5,-71 + 3174: -5,-71 + 3175: -5,-64 + 3176: 5,-64 + 3177: 39,-47 + 3302: -17,48 - node: color: '#FFFFFFFF' id: WarnCorner @@ -5505,953 +5495,946 @@ entities: color: '#DE3A3A96' id: WarnCornerGreyscaleNE decals: - 1694: -22,-3 + 1674: -22,-3 - node: color: '#D381C996' id: WarnCornerGreyscaleNW decals: - 1278: -58,-1 + 1275: -58,-1 - node: color: '#DE3A3A96' id: WarnCornerGreyscaleNW decals: - 1702: -31,-3 + 1682: -31,-3 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 3826: -33,21 + 3754: -33,21 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 3823: -31,21 + 3751: -31,21 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 3827: -33,19 + 3755: -33,19 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 3822: -31,19 + 3750: -31,19 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 721: -30,34 - 864: -12,2 - 1366: -2,31 - 3332: -2,24 - 3392: -19,40 - 3821: -8,29 + 718: -30,34 + 861: -12,2 + 1363: -2,31 + 3282: -2,24 + 3342: -19,40 + 3749: -8,29 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 844: -8,2 - 1365: 2,31 - 2137: 2,24 - 3380: -27,38 - 3391: -15,40 - 3820: -5,29 + 841: -8,2 + 1362: 2,31 + 2115: 2,24 + 3330: -27,38 + 3341: -15,40 + 3748: -5,29 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 1053: -2,-78 - 1364: -2,36 - 3390: -19,42 - 3834: -29,-1 + 1050: -2,-78 + 1361: -2,36 + 3340: -19,42 + 3762: -29,-1 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 730: -30,36 - 1052: 2,-78 - 1363: 2,36 - 2568: 40,-35 - 3379: -27,40 - 3389: -15,42 - 3830: -25,-1 + 727: -30,36 + 1049: 2,-78 + 1360: 2,36 + 2544: 40,-35 + 3329: -27,40 + 3339: -15,42 + 3758: -25,-1 - node: color: '#52B4E996' id: WarnFullGreyscale decals: - 3500: 36,-19 - 3501: 42,-19 + 3449: 42,-19 - node: color: '#D381C996' id: WarnFullGreyscale decals: - 2021: -58,0 + 1999: -58,0 - node: color: '#FFFFFFFF' id: WarnFullGreyscale decals: - 3063: 23,6 - 3283: 5,16 - 3285: 18,18 - 3303: -14,28 - 3304: -24,30 - 3305: -24,31 - 3306: -22,27 - 3307: -32,30 - 3308: -32,31 - 3309: -22,33 - 3310: -12,33 + 3033: 23,6 + 3233: 5,16 + 3235: 18,18 + 3253: -14,28 + 3254: -24,30 + 3255: -24,31 + 3256: -22,27 + 3257: -32,30 + 3258: -32,31 + 3259: -22,33 + 3260: -12,33 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 720: -30,36 - 726: -30,35 - 746: -100,20 - 747: -100,21 - 865: -12,3 - 866: -12,4 - 867: -12,5 - 912: -54,16 - 1356: -2,32 - 1357: -2,33 - 1358: -2,34 - 1359: -2,35 - 1764: -15,-18 - 1768: -37,-18 - 1772: -37,5 - 1777: -15,6 - 1778: -15,10 - 1779: -15,22 - 1783: 17,6 - 1784: 17,10 - 1785: 41,12 - 1793: 17,22 - 1794: 17,26 - 1795: 17,-9 - 1807: -21,26 - 1872: -15,-3 - 1913: -54,6 - 1916: -52,1 - 1917: -48,1 - 2135: -2,25 - 2292: -3,26 - 2293: -3,22 - 2534: -54,17 - 2875: 45,-16 - 3071: 3,34 - 3072: 3,35 - 3073: 3,36 - 3197: 56,15 - 3198: 56,14 - 3199: 56,13 - 3200: 56,12 - 3201: 56,11 - 3388: -19,41 - 3440: 1,-13 - 3825: -33,20 + 717: -30,36 + 723: -30,35 + 743: -100,20 + 744: -100,21 + 862: -12,3 + 863: -12,4 + 864: -12,5 + 909: -54,16 + 1353: -2,32 + 1354: -2,33 + 1355: -2,34 + 1356: -2,35 + 1744: -15,-18 + 1748: -37,-18 + 1752: -37,5 + 1757: -15,6 + 1758: -15,10 + 1759: -15,22 + 1763: 17,6 + 1764: 17,10 + 1765: 41,12 + 1773: 17,22 + 1774: 17,26 + 1775: 17,-9 + 1787: -21,26 + 1850: -15,-3 + 1891: -54,6 + 1894: -52,1 + 1895: -48,1 + 2113: -2,25 + 2268: -3,26 + 2269: -3,22 + 2510: -54,17 + 2845: 45,-16 + 3041: 3,34 + 3042: 3,35 + 3043: 3,36 + 3148: 56,15 + 3149: 56,14 + 3150: 56,13 + 3151: 56,12 + 3152: 56,11 + 3338: -19,41 + 3390: 1,-13 + 3753: -33,20 - node: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 2865: 45,-22 - 3499: 35,-19 - 3528: 45,-10 - 3560: 41,-19 + 2835: 45,-22 + 3474: 45,-10 + 3489: 41,-19 - node: color: '#9FED5896' id: WarnLineGreyscaleE decals: - 2817: 45,-33 + 2793: 45,-33 - node: color: '#B02E26FF' id: WarnLineGreyscaleE decals: - 2733: -4,-47 + 2709: -4,-47 - node: color: '#D381C996' id: WarnLineGreyscaleE decals: - 1951: -48,-6 - 1953: -45,-1 - 1971: -42,-6 + 1929: -48,-6 + 1931: -45,-1 + 1949: -42,-6 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE decals: - 1693: -22,-4 - 1735: -33,-20 - 1736: -33,-17 - 2738: -8,-47 + 1673: -22,-4 + 1715: -33,-20 + 1716: -33,-17 + 2714: -8,-47 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 1746: -23,-21 - 1747: -23,-20 - 1748: -23,-19 - 1759: -18,-21 - 1760: -18,-20 - 1761: -18,-19 - 1822: -15,28 - 1827: -25,30 - 1828: -25,31 - 2288: 6,19 - 2368: 3,-6 - 3284: 17,18 - 3445: -14,-25 - 3446: -14,-24 - 3447: -14,-23 - 3463: -14,7 - 3464: -14,8 - 3465: -14,9 - 3466: -20,7 - 3467: -20,8 - 3468: -20,9 - 3469: 13,7 - 3470: 13,8 - 3471: 13,9 - 3610: -5,-56 - 3611: -5,-55 - 3612: -5,-54 + 1726: -23,-21 + 1727: -23,-20 + 1728: -23,-19 + 1739: -18,-21 + 1740: -18,-20 + 1741: -18,-19 + 1802: -15,28 + 1807: -25,30 + 1808: -25,31 + 2264: 6,19 + 2344: 3,-6 + 3234: 17,18 + 3395: -14,-25 + 3396: -14,-24 + 3397: -14,-23 + 3413: -14,7 + 3414: -14,8 + 3415: -14,9 + 3416: -20,7 + 3417: -20,8 + 3418: -20,9 + 3419: 13,7 + 3420: 13,8 + 3421: 13,9 + 3539: -5,-56 + 3540: -5,-55 + 3541: -5,-54 - node: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 3529: 44,-9 + 3475: 44,-9 - node: color: '#D381C996' id: WarnLineGreyscaleN decals: - 1136: -54,4 - 1137: -55,4 - 1138: -51,5 - 1229: -46,14 - 1242: -56,4 - 1262: -56,-1 - 1263: -54,-1 - 1264: -53,-1 - 1265: -52,-1 - 2017: -41,12 - 2018: -42,12 + 1133: -54,4 + 1134: -55,4 + 1135: -51,5 + 1226: -46,14 + 1239: -56,4 + 1259: -56,-1 + 1260: -54,-1 + 1261: -53,-1 + 1262: -52,-1 + 1995: -41,12 + 1996: -42,12 - node: color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 1704: -27,-3 - 1732: -26,-19 - 1733: -28,-19 + 1684: -27,-3 + 1712: -26,-19 + 1713: -28,-19 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 1824: -22,32 - 1998: -42,-10 - 2160: -12,32 - 2289: 5,15 - 3064: 23,5 - 3425: 1,-28 - 3426: 0,-28 - 3427: -1,-28 - 3428: 15,-22 - 3429: 16,-22 - 3430: 17,-22 - 3589: 1,-54 - 3590: 0,-54 - 3591: -1,-54 - 3592: -1,-61 - 3593: 0,-61 - 3594: 1,-61 - 3595: 1,-76 - 3596: 0,-76 - 3597: -1,-76 + 1804: -22,32 + 1976: -42,-10 + 2138: -12,32 + 2265: 5,15 + 3034: 23,5 + 3375: 1,-28 + 3376: 0,-28 + 3377: -1,-28 + 3378: 15,-22 + 3379: 16,-22 + 3380: 17,-22 + 3518: 1,-54 + 3519: 0,-54 + 3520: -1,-54 + 3521: -1,-61 + 3522: 0,-61 + 3523: 1,-61 + 3524: 1,-76 + 3525: 0,-76 + 3526: -1,-76 - node: color: '#334E6DC8' id: WarnLineGreyscaleS decals: - 2360: 4,-1 - 2361: -4,-1 - 2362: 0,-1 + 2336: 4,-1 + 2337: -4,-1 + 2338: 0,-1 - node: color: '#9FED5896' id: WarnLineGreyscaleS decals: - 2831: 44,-35 + 2807: 44,-35 - node: color: '#D381C996' id: WarnLineGreyscaleS decals: - 1139: -51,11 - 1140: -45,11 - 1236: -52,2 - 1237: -53,2 - 1238: -54,2 - 1241: -56,2 - 2020: -58,1 + 1136: -51,11 + 1137: -45,11 + 1233: -52,2 + 1234: -53,2 + 1235: -54,2 + 1238: -56,2 + 1998: -58,1 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 1687: -27,-6 - 1885: -26,-17 - 1886: -28,-17 + 1667: -27,-6 + 1863: -26,-17 + 1864: -28,-17 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 1762: -19,-22 - 1763: -20,-22 - 1821: -18,27 - 1823: -22,28 - 1877: -21,-22 - 2158: -12,27 - 2287: 5,17 - 3062: 23,7 - 3416: 17,-20 - 3417: 16,-20 - 3418: 15,-20 - 3419: 1,-21 - 3420: 0,-21 - 3421: -1,-21 - 3422: -1,-26 - 3423: 0,-26 - 3424: 1,-26 - 3577: 1,-74 - 3578: 0,-74 - 3579: -1,-74 - 3580: 1,-59 - 3581: 0,-59 - 3582: -1,-59 - 3583: 1,-52 - 3584: 0,-52 - 3585: -1,-52 - 3586: 1,-43 - 3587: 0,-43 - 3588: -1,-43 + 1742: -19,-22 + 1743: -20,-22 + 1801: -18,27 + 1803: -22,28 + 1855: -21,-22 + 2136: -12,27 + 2263: 5,17 + 3032: 23,7 + 3366: 17,-20 + 3367: 16,-20 + 3368: 15,-20 + 3369: 1,-21 + 3370: 0,-21 + 3371: -1,-21 + 3372: -1,-26 + 3373: 0,-26 + 3374: 1,-26 + 3506: 1,-74 + 3507: 0,-74 + 3508: -1,-74 + 3509: 1,-59 + 3510: 0,-59 + 3511: -1,-59 + 3512: 1,-52 + 3513: 0,-52 + 3514: -1,-52 + 3515: 1,-43 + 3516: 0,-43 + 3517: -1,-43 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: - 2864: 43,-24 - 3498: 43,-19 - 3504: 32,-20 - 3505: 32,-18 - 3526: 43,-14 - 3527: 43,-10 - 3559: 37,-19 + 2834: 43,-24 + 3448: 43,-19 + 3450: 32,-20 + 3451: 32,-18 + 3472: 43,-14 + 3473: 43,-10 - node: color: '#9FED5896' id: WarnLineGreyscaleW decals: - 2827: 43,-28 - 2828: 43,-32 + 2803: 43,-28 + 2804: 43,-32 - node: color: '#B02E26FF' id: WarnLineGreyscaleW decals: - 2732: -6,-47 + 2708: -6,-47 - node: color: '#D381C996' id: WarnLineGreyscaleW decals: - 1952: -46,-6 + 1930: -46,-6 - node: color: '#DE3A3A96' id: WarnLineGreyscaleW decals: - 1703: -31,-4 - 1734: -31,-20 - 1873: -21,-21 - 1874: -21,-19 - 2739: -9,-47 + 1683: -31,-4 + 1714: -31,-20 + 1851: -21,-21 + 1852: -21,-19 + 2715: -9,-47 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 1743: -23,-21 - 1744: -23,-20 - 1745: -23,-19 - 1825: -23,30 - 1826: -23,31 - 1829: -31,30 - 1830: -31,31 - 2159: -13,28 - 2367: 5,-6 - 2536: 19,18 - 3442: -12,-25 - 3443: -12,-24 - 3444: -12,-23 - 3457: -12,7 - 3458: -12,8 - 3459: -12,9 - 3460: -18,7 - 3461: -18,8 - 3462: -18,9 - 3472: 19,7 - 3473: 19,8 - 3474: 19,9 - 3484: 19,23 - 3485: 19,24 - 3486: 19,25 - 3613: 5,-56 - 3614: 5,-55 - 3615: 5,-54 - - node: - color: '#DE3A3A96' - id: WarnLineN - decals: - 1667: -9,-19 + 1723: -23,-21 + 1724: -23,-20 + 1725: -23,-19 + 1805: -23,30 + 1806: -23,31 + 1809: -31,30 + 1810: -31,31 + 2137: -13,28 + 2343: 5,-6 + 2512: 19,18 + 3392: -12,-25 + 3393: -12,-24 + 3394: -12,-23 + 3407: -12,7 + 3408: -12,8 + 3409: -12,9 + 3410: -18,7 + 3411: -18,8 + 3412: -18,9 + 3422: 19,7 + 3423: 19,8 + 3424: 19,9 + 3434: 19,23 + 3435: 19,24 + 3436: 19,25 + 3542: 5,-56 + 3543: 5,-55 + 3544: 5,-54 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 709: -26,-1 - 710: -27,-1 - 711: -28,-1 - 729: -31,36 - 741: -117,18 - 742: -118,18 - 743: -119,18 - 744: -120,18 - 745: -121,18 - 1049: 0,-78 - 1050: 1,-78 - 1051: -1,-78 - 1360: -1,36 - 1361: 0,36 - 1362: 1,36 - 1766: -27,-25 - 1769: -40,-2 - 1773: -36,7 - 1788: 35,7 - 1789: 38,23 - 1799: 2,-25 - 1800: -2,-25 - 1801: 18,-25 - 2567: 39,-35 - 3024: -41,23 - 3209: 43,2 - 3356: -15,48 - 3357: -14,48 - 3358: -13,48 - 3359: -12,48 - 3360: -11,48 - 3361: -19,48 - 3362: -20,48 - 3363: -21,48 - 3364: -22,48 - 3365: -23,48 - 3381: -18,42 - 3382: -17,42 - 3383: -16,42 - 3816: -7,31 - 3817: -6,31 + 706: -26,-1 + 707: -27,-1 + 708: -28,-1 + 726: -31,36 + 738: -117,18 + 739: -118,18 + 740: -119,18 + 741: -120,18 + 742: -121,18 + 1046: 0,-78 + 1047: 1,-78 + 1048: -1,-78 + 1357: -1,36 + 1358: 0,36 + 1359: 1,36 + 1746: -27,-25 + 1749: -40,-2 + 1753: -36,7 + 1768: 35,7 + 1769: 38,23 + 1779: 2,-25 + 1780: -2,-25 + 1781: 18,-25 + 2543: 39,-35 + 2994: -41,23 + 3306: -15,48 + 3307: -14,48 + 3308: -13,48 + 3309: -12,48 + 3310: -11,48 + 3311: -19,48 + 3312: -20,48 + 3313: -21,48 + 3314: -22,48 + 3315: -23,48 + 3331: -18,42 + 3332: -17,42 + 3333: -16,42 + 3744: -7,31 + 3745: -6,31 - node: color: '#DE3A3A96' id: WarnLineS decals: - 1675: -9,-16 + 1655: -9,-16 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 722: -24,34 - 723: -24,35 - 724: -24,36 - 727: -30,34 - 728: -30,35 - 845: -8,3 - 846: -8,4 - 847: -8,5 - 1054: -20,-56 - 1055: -20,-55 - 1056: -20,-54 - 1352: 2,32 - 1353: 2,33 - 1354: 2,34 - 1355: 2,35 - 1765: -17,-18 - 1767: -39,-18 - 1771: -39,5 - 1775: -17,6 - 1776: -17,10 - 1780: -17,22 - 1781: 15,10 - 1782: 15,6 - 1786: 39,12 - 1791: 15,22 - 1792: 15,26 - 1796: 15,-9 - 1806: -23,26 - 1871: -17,-3 - 1914: -56,6 - 1915: -54,1 - 1918: -50,1 - 2136: 2,25 - 2290: -4,22 - 2291: -5,26 - 2364: 3,-8 - 2365: 3,-7 - 2366: 3,-6 - 2876: 43,-16 - 3378: -27,39 - 3384: -15,41 - 3441: -1,-13 - 3824: -31,20 + 719: -24,34 + 720: -24,35 + 721: -24,36 + 724: -30,34 + 725: -30,35 + 842: -8,3 + 843: -8,4 + 844: -8,5 + 1051: -20,-56 + 1052: -20,-55 + 1053: -20,-54 + 1349: 2,32 + 1350: 2,33 + 1351: 2,34 + 1352: 2,35 + 1745: -17,-18 + 1747: -39,-18 + 1751: -39,5 + 1755: -17,6 + 1756: -17,10 + 1760: -17,22 + 1761: 15,10 + 1762: 15,6 + 1766: 39,12 + 1771: 15,22 + 1772: 15,26 + 1776: 15,-9 + 1786: -23,26 + 1849: -17,-3 + 1892: -56,6 + 1893: -54,1 + 1896: -50,1 + 2114: 2,25 + 2266: -4,22 + 2267: -5,26 + 2340: 3,-8 + 2341: 3,-7 + 2342: 3,-6 + 2846: 43,-16 + 3328: -27,39 + 3334: -15,41 + 3391: -1,-13 + 3752: -31,20 + 3780: 40,-36 - node: color: '#DE3A3A96' id: WarnLineW decals: - 1669: -7,-18 + 1649: -7,-18 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 706: -9,2 - 707: -10,2 - 708: -11,2 - 715: -25,34 - 716: -26,34 - 717: -27,34 - 718: -28,34 - 719: -29,34 - 736: -117,15 - 737: -118,15 - 738: -119,15 - 739: -120,15 - 740: -121,15 - 748: -62,40 - 749: -63,40 - 750: -64,40 - 1349: -1,31 - 1350: 0,31 - 1351: 1,31 - 1539: -58,2 - 1540: -59,2 - 1541: -60,2 - 1770: -40,0 - 1774: -36,9 - 1787: 35,9 - 1790: 38,25 - 1797: 2,-23 - 1798: -2,-23 - 1802: 18,-23 - 1912: -42,-2 - 2085: -27,-23 - 2132: 0,24 - 2133: 1,24 - 2134: -1,24 - 2758: 4,-39 - 2765: 5,-39 - 2766: 3,-39 - 3025: -41,25 - 3068: 0,29 - 3069: 1,29 - 3070: -1,29 - 3210: 43,3 - 3366: -16,51 - 3367: -15,51 - 3368: -14,51 - 3369: -13,51 - 3370: -12,51 - 3371: -11,51 - 3372: -18,51 - 3373: -19,51 - 3374: -20,51 - 3375: -21,51 - 3376: -22,51 - 3377: -23,51 - 3385: -16,40 - 3386: -17,40 - 3387: -18,40 - 3393: -43,-2 - 3818: -7,29 - 3819: -6,29 - 3836: 4,37 - 3837: 5,37 - 3838: 6,37 - 3839: -4,37 - 3840: -5,37 - 3841: -6,37 + 703: -9,2 + 704: -10,2 + 705: -11,2 + 712: -25,34 + 713: -26,34 + 714: -27,34 + 715: -28,34 + 716: -29,34 + 733: -117,15 + 734: -118,15 + 735: -119,15 + 736: -120,15 + 737: -121,15 + 745: -62,40 + 746: -63,40 + 747: -64,40 + 1346: -1,31 + 1347: 0,31 + 1348: 1,31 + 1536: -58,2 + 1537: -59,2 + 1538: -60,2 + 1750: -40,0 + 1754: -36,9 + 1767: 35,9 + 1770: 38,25 + 1777: 2,-23 + 1778: -2,-23 + 1782: 18,-23 + 1890: -42,-2 + 2063: -27,-23 + 2110: 0,24 + 2111: 1,24 + 2112: -1,24 + 2734: 4,-39 + 2741: 5,-39 + 2742: 3,-39 + 2995: -41,25 + 3038: 0,29 + 3039: 1,29 + 3040: -1,29 + 3160: 43,3 + 3316: -16,51 + 3317: -15,51 + 3318: -14,51 + 3319: -13,51 + 3320: -12,51 + 3321: -11,51 + 3322: -18,51 + 3323: -19,51 + 3324: -20,51 + 3325: -21,51 + 3326: -22,51 + 3327: -23,51 + 3335: -16,40 + 3336: -17,40 + 3337: -18,40 + 3343: -43,-2 + 3746: -7,29 + 3747: -6,29 + 3764: 4,37 + 3765: 5,37 + 3766: 6,37 + 3767: -4,37 + 3768: -5,37 + 3769: -6,37 + 3838: -26,32 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarningLine decals: - 438: -11,36 - 439: -12,36 - 440: -13,36 - 441: -14,36 - 442: -15,36 - 443: -16,36 - 444: -17,36 - 445: -18,36 - 446: -19,36 - 447: -20,36 - 448: -21,36 - 449: -22,36 - 450: -23,36 + 435: -11,36 + 436: -12,36 + 437: -13,36 + 438: -14,36 + 439: -15,36 + 440: -16,36 + 441: -17,36 + 442: -18,36 + 443: -19,36 + 444: -20,36 + 445: -21,36 + 446: -22,36 + 447: -23,36 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLine decals: - 626: -72,20 + 623: -72,20 - node: color: '#FFFFFFFF' id: WarningLine decals: - 290: -32,11 - 291: -33,11 - 292: -34,11 - 295: -43,0 - 296: -42,0 - 574: 24,15 - 575: 23,15 - 576: 22,15 + 287: -32,11 + 288: -33,11 + 289: -34,11 + 292: -43,0 + 293: -42,0 + 571: 24,15 + 572: 23,15 + 573: 22,15 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLine decals: - 562: 51,0 - 563: 51,1 - 564: 51,2 - 565: 51,3 - 566: 51,-1 - 567: 51,-2 - 689: -15,3 + 559: 51,0 + 560: 51,1 + 561: 51,2 + 562: 51,3 + 563: 51,-1 + 564: 51,-2 + 686: -15,3 - node: color: '#FFFFFFFF' id: WarningLineCorner decals: - 294: -35,11 - 436: -8,31 + 291: -35,11 + 433: -8,31 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCorner decals: - 568: 56,10 - 692: -15,2 + 565: 56,10 + 689: -15,2 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 627: -72,19 + 624: -72,19 - node: color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 293: -31,11 - 437: -5,31 + 290: -31,11 + 434: -5,31 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 690: -15,4 + 687: -15,4 - node: color: '#FFFFFFFF' id: WoodTrimThinBox decals: - 1319: 12,-30 + 1316: 12,-30 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 3652: -12,-51 + 3580: -12,-51 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 3651: -15,-51 + 3579: -15,-51 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 1210: -7,14 + 1207: -7,14 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 1200: -12,19 - 3767: 10,-27 + 1197: -12,19 + 3695: 10,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 830: -23,-27 - 1205: -7,19 + 827: -23,-27 + 1202: -7,19 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 782: -29,11 - 783: -29,12 - 784: -29,13 - 785: -29,14 - 786: -29,15 - 787: -29,16 - 788: -29,17 - 789: -29,18 - 790: -29,19 - 791: -29,20 - 792: -29,21 - 796: -6,-5 - 810: 11,19 - 813: -42,8 - 822: -24,-31 - 823: -24,-30 - 824: -24,-29 - 825: -24,-28 - 1196: -12,15 - 1197: -12,16 - 1198: -12,17 - 1199: -12,18 - 2045: -24,-27 - 2070: -46,-16 - 2348: 24,-21 - 2349: 24,-20 - 2350: 24,-19 - 2351: 24,-18 - 2352: 24,-17 - 2353: 24,-16 - 3655: -12,-52 - 3764: 10,-29 - 3765: 10,-28 + 779: -29,11 + 780: -29,12 + 781: -29,13 + 782: -29,14 + 783: -29,15 + 784: -29,16 + 785: -29,17 + 786: -29,18 + 787: -29,19 + 788: -29,20 + 789: -29,21 + 793: -6,-5 + 807: 11,19 + 810: -42,8 + 819: -24,-31 + 820: -24,-30 + 821: -24,-29 + 822: -24,-28 + 1193: -12,15 + 1194: -12,16 + 1195: -12,17 + 1196: -12,18 + 2023: -24,-27 + 2048: -46,-16 + 2324: 24,-21 + 2325: 24,-20 + 2326: 24,-19 + 2327: 24,-18 + 2328: 24,-17 + 2329: 24,-16 + 3583: -12,-52 + 3692: 10,-29 + 3693: 10,-28 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 793: -3,-9 - 812: -44,6 - 826: -24,-28 - 827: -25,-28 - 828: -26,-28 - 829: -27,-28 - 1189: -7,19 - 1190: -8,19 - 1191: -9,19 - 1192: -10,19 - 1193: -11,19 - 1194: -12,19 - 1195: -13,19 - 1211: -8,14 - 1212: -9,14 - 1213: -10,14 - 1214: -11,14 - 1282: 17,-38 - 1283: 16,-38 - 1284: 18,-38 - 1285: 19,-38 - 1286: 20,-38 - 1287: 21,-38 - 2041: -20,-1 - 2042: -21,-1 - 2043: -22,-1 - 2044: -23,-1 - 2046: -23,-28 - 2076: -41,9 - 2077: -44,9 - 2078: -43,9 - 2916: 43,12 - 2917: 44,12 - 2918: 45,12 - 3245: 11,-38 - 3246: 10,-38 - 3247: 9,-38 - 3248: -25,10 - 3249: -26,10 - 3250: -27,10 - 3649: -15,-53 - 3653: -13,-51 - 3654: -14,-51 + 790: -3,-9 + 809: -44,6 + 823: -24,-28 + 824: -25,-28 + 825: -26,-28 + 826: -27,-28 + 1186: -7,19 + 1187: -8,19 + 1188: -9,19 + 1189: -10,19 + 1190: -11,19 + 1191: -12,19 + 1192: -13,19 + 1208: -8,14 + 1209: -9,14 + 1210: -10,14 + 1211: -11,14 + 1279: 17,-38 + 1280: 16,-38 + 1281: 18,-38 + 1282: 19,-38 + 1283: 20,-38 + 1284: 21,-38 + 2019: -20,-1 + 2020: -21,-1 + 2021: -22,-1 + 2022: -23,-1 + 2024: -23,-28 + 2054: -41,9 + 2055: -44,9 + 2056: -43,9 + 2886: 43,12 + 2887: 44,12 + 2888: 45,12 + 3195: 11,-38 + 3196: 10,-38 + 3197: 9,-38 + 3198: -25,10 + 3199: -26,10 + 3200: -27,10 + 3577: -15,-53 + 3581: -13,-51 + 3582: -14,-51 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 798: -3,-3 - 799: -4,-3 - 800: -5,-3 - 801: -7,-3 - 802: -8,-3 - 1201: -11,19 - 1202: -10,19 - 1203: -9,19 - 1204: -8,19 - 2037: -20,2 - 2038: -21,2 - 2039: -22,2 - 2040: -23,2 - 2068: -47,-16 - 2069: -46,-16 - 2075: -41,7 - 3251: -25,22 - 3252: -26,22 - 3253: -27,22 - 3722: 13,20 - 3723: 12,20 - 3766: 11,-27 - 3768: 12,-27 - 3769: 13,-27 - 3770: 14,-27 - 3771: 15,-27 - 3772: 16,-27 - 3773: 17,-27 - 3774: 18,-27 - 3775: 19,-27 - 3776: 20,-27 - 3777: 21,-27 + 795: -3,-3 + 796: -4,-3 + 797: -5,-3 + 798: -7,-3 + 799: -8,-3 + 1198: -11,19 + 1199: -10,19 + 1200: -9,19 + 1201: -8,19 + 2015: -20,2 + 2016: -21,2 + 2017: -22,2 + 2018: -23,2 + 2046: -47,-16 + 2047: -46,-16 + 2053: -41,7 + 3201: -25,22 + 3202: -26,22 + 3203: -27,22 + 3650: 13,20 + 3651: 12,20 + 3694: 11,-27 + 3696: 12,-27 + 3697: 13,-27 + 3698: 14,-27 + 3699: 15,-27 + 3700: 16,-27 + 3701: 17,-27 + 3702: 18,-27 + 3703: 19,-27 + 3704: 20,-27 + 3705: 21,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 771: -23,11 - 772: -23,12 - 773: -23,13 - 774: -23,14 - 775: -23,15 - 776: -23,16 - 777: -23,17 - 778: -23,18 - 779: -23,19 - 780: -23,20 - 781: -23,21 - 797: -6,-5 - 814: -42,8 - 1206: -7,18 - 1207: -7,17 - 1208: -7,16 - 1209: -7,15 - 3656: -15,-52 + 768: -23,11 + 769: -23,12 + 770: -23,13 + 771: -23,14 + 772: -23,15 + 773: -23,16 + 774: -23,17 + 775: -23,18 + 776: -23,19 + 777: -23,20 + 778: -23,21 + 794: -6,-5 + 811: -42,8 + 1203: -7,18 + 1204: -7,17 + 1205: -7,16 + 1206: -7,15 + 3584: -15,-52 - node: cleanable: True color: '#474F52FF' id: amyjon decals: - 2717: -59.733913,26.110247 + 2693: -59.733913,26.110247 - node: cleanable: True color: '#FFFFFFFF' id: b decals: - 2784: -64,51 + 2760: -64,51 - node: cleanable: True color: '#B02E26FF' id: beepsky decals: - 2528: -51.97618,-34.20235 + 2504: -51.97618,-34.20235 - node: cleanable: True color: '#FFFFFFFF' id: body decals: - 2529: -45.397133,-31.934364 + 2505: -45.397133,-31.934364 - node: cleanable: True color: '#1D1D21FF' id: clawprint decals: - 2496: 51.849873,-10.273688 - 2497: 52.068623,-9.992438 - 2498: 51.849873,-9.726813 - 2499: 52.084248,-9.383063 - 2500: 51.849873,-9.070563 + 2472: 51.849873,-10.273688 + 2473: 52.068623,-9.992438 + 2474: 51.849873,-9.726813 + 2475: 52.084248,-9.383063 + 2476: 51.849873,-9.070563 - node: color: '#DE3A3A96' id: clown decals: - 1668: -9,-13 + 1648: -9,-13 - node: cleanable: True color: '#F38BAAFF' id: clown decals: - 2719: 29.974606,-11.088503 + 2695: 29.974606,-11.088503 - node: cleanable: True color: '#79150096' id: electricdanger decals: - 2641: -10.991777,-32.08159 + 2617: -10.991777,-32.08159 - node: cleanable: True color: '#79150096' id: end decals: - 1686: -60,-9 + 1666: -60,-9 - node: cleanable: True color: '#B02E26FF' id: end decals: - 2425: 32.02958,-5.0098457 + 2401: 32.02958,-5.0098457 - node: cleanable: True color: '#A4610696' id: engie decals: - 1685: 32,-54 + 1665: 32,-54 - node: cleanable: True color: '#F38BAAFF' id: evac decals: - 2495: 36.93115,20.930944 + 2471: 36.93115,20.930944 - node: color: '#A46106FF' id: food decals: - 3570: 26,-41 + 3499: 26,-41 - node: color: '#D4D4D428' id: footprint decals: - 3228: 39.8631,-46.230442 - 3229: 40.128723,-45.902317 - 3230: 39.8631,-45.636692 - 3231: 40.159973,-45.371067 - 3232: 39.909973,-44.996067 - 3233: 40.191223,-44.621067 + 3178: 39.8631,-46.230442 + 3179: 40.128723,-45.902317 + 3180: 39.8631,-45.636692 + 3181: 40.159973,-45.371067 + 3182: 39.909973,-44.996067 + 3183: 40.191223,-44.621067 - node: cleanable: True color: '#FFFFFFFF' id: guy decals: - 2718: -67.988,9.536162 - 2929: 35,-29 + 2694: -67.988,9.536162 + 2899: 35,-29 - node: cleanable: True color: '#DE3A3AFF' id: largebrush decals: - 2783: -64,51 + 2759: -64,51 - node: color: '#D4D4D428' id: matt decals: - 1676: -30,-36 + 1656: -30,-36 - node: cleanable: True color: '#FED83DFF' id: shop decals: - 2716: -66.02228,7.9843655 + 2692: -66.02228,7.9843655 - node: cleanable: True color: '#DE3A3A18' id: splatter decals: - 612: 19,-8 + 609: 19,-8 - node: cleanable: True color: '#B02E26FF' id: stickman decals: - 2722: 9.979055,-45.00161 + 2698: 9.979055,-45.00161 - type: GridAtmosphere version: 2 data: @@ -6525,16 +6508,13 @@ entities: 0: 13107 1: 32768 -4,-4: - 0: 13107 - 1: 34952 + 0: 15291 -4,-5: - 0: 13107 - 1: 34952 + 0: 48059 -5,-4: 0: 48011 -4,-3: - 0: 13107 - 1: 34952 + 0: 15295 -5,-3: 0: 35768 -4,-2: @@ -6550,28 +6530,29 @@ entities: -4,0: 0: 47927 -3,-4: - 0: 65534 + 0: 61439 + -3,-3: + 0: 270 -3,-1: 1: 35 0: 8 - -3,-3: - 0: 238 -3,-5: - 0: 43704 + 0: 15018 -3,-2: 1: 8736 0: 34816 -2,-4: - 0: 13143 + 0: 4375 + 1: 1024 -2,-3: - 0: 17 + 0: 1 -2,-2: 0: 65532 -2,-1: 0: 191 1: 24576 -2,-5: - 0: 16372 + 0: 10096 -2,0: 1: 33860 0: 4352 @@ -6588,7 +6569,7 @@ entities: -1,2: 0: 65520 0,3: - 0: 49073 + 0: 49081 -1,3: 0: 49072 1,1: @@ -6596,7 +6577,7 @@ entities: 1,2: 0: 8190 1,3: - 0: 65532 + 0: 65533 1,4: 0: 63346 2,1: @@ -6725,8 +6706,7 @@ entities: -5,-7: 0: 61681 -4,-6: - 0: 13311 - 1: 32768 + 0: 46079 -5,-6: 0: 64511 -5,-5: @@ -6738,8 +6718,7 @@ entities: -3,-7: 0: 62719 -3,-6: - 0: 35071 - 1: 12288 + 0: 43263 -2,-8: 0: 61695 -2,-7: @@ -6794,7 +6773,7 @@ entities: 4,-11: 0: 65295 4,-10: - 0: 65520 + 0: 65521 4,-9: 0: 65535 -4,-12: @@ -7242,11 +7221,11 @@ entities: 10,-11: 0: 65383 10,-9: - 0: 47280 + 0: 47283 10,-13: 0: 30327 10,-10: - 0: 26210 + 0: 33378 10,-8: 0: 48127 11,-12: @@ -7270,9 +7249,9 @@ entities: 12,-9: 0: 61663 9,-6: - 0: 57583 + 0: 61679 9,-5: - 0: 61182 + 0: 65535 9,-7: 0: 60654 10,-7: @@ -7396,9 +7375,9 @@ entities: 10,-2: 0: 35763 10,-1: - 0: 30479 + 0: 65295 10,0: - 0: 65399 + 0: 65535 11,-3: 0: 49083 11,-2: @@ -7406,7 +7385,7 @@ entities: 11,-1: 0: 65311 11,0: - 0: 65519 + 0: 65535 12,-3: 0: 30579 12,-2: @@ -7436,7 +7415,7 @@ entities: 1: 273 0: 4096 15,-2: - 1: 35064 + 1: 248 16,-4: 1: 1 15,-3: @@ -7880,7 +7859,7 @@ entities: 11,3: 0: 15355 12,4: - 0: 24575 + 0: 8191 13,1: 0: 65286 13,2: @@ -8079,7 +8058,7 @@ entities: 9,2: 0: 65535 10,1: - 0: 48114 + 0: 48115 10,2: 0: 15359 13,5: @@ -8145,7 +8124,7 @@ entities: -8,6: 0: 4095 -8,7: - 1: 7 + 1: 15 0: 65280 -16,4: 0: 240 @@ -8197,8 +8176,8 @@ entities: -7,6: 0: 4095 -7,7: - 0: 65280 - 1: 13 + 1: 1 + 0: 65294 -7,8: 0: 65295 -6,5: @@ -8206,7 +8185,7 @@ entities: -6,6: 0: 20223 -6,7: - 0: 65518 + 0: 65519 -6,8: 0: 61006 -5,8: @@ -9374,8 +9353,8 @@ entities: id: docking43669 localAnchorB: -47.5,-40 localAnchorA: 0.5,0 - damping: 1559.7855 - stiffness: 14000.604 + damping: 1559.79 + stiffness: 14000.643 - proto: AcousticGuitarInstrument entities: - uid: 2133 @@ -9422,7 +9401,6 @@ entities: - 4502 - 5518 - 12511 - - 5808 - uid: 5092 components: - type: Transform @@ -9641,7 +9619,6 @@ entities: - 17872 - 17879 - 17875 - - 11834 - 19862 - 19861 - 19852 @@ -10893,13 +10870,6 @@ entities: - type: Transform pos: 47.5,7.5 parent: 60 - - uid: 7700 - components: - - type: MetaData - name: Cargo Breakroom - - type: Transform - pos: 48.5,19.5 - parent: 60 - uid: 9283 components: - type: MetaData @@ -10907,6 +10877,12 @@ entities: - type: Transform pos: 42.5,5.5 parent: 60 + - uid: 10679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,15.5 + parent: 60 - uid: 11831 components: - type: Transform @@ -10926,12 +10902,11 @@ entities: parent: 60 - proto: AirlockCargoLocked entities: - - uid: 13158 + - uid: 100 components: - - type: MetaData - name: Cargo Breakroom - type: Transform - pos: 48.5,15.5 + rot: 1.5707963267948966 rad + pos: 48.5,19.5 parent: 60 - proto: AirlockChapelLocked entities: @@ -11288,6 +11263,30 @@ entities: linkedPorts: 1435: - DoorStatus: DoorBolt +- proto: AirlockExternalAtmosphericsLocked + entities: + - uid: 12194 + components: + - type: Transform + pos: -26.5,28.5 + parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13627: + - DoorStatus: DoorBolt + - uid: 13627 + components: + - type: Transform + pos: -23.5,28.5 + parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12194: + - DoorStatus: DoorBolt - proto: AirlockExternalEngineeringLocked entities: - uid: 23569 @@ -11896,6 +11895,28 @@ entities: linkedPorts: 1441: - DoorStatus: DoorBolt + - uid: 2167 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2418: + - DoorStatus: DoorBolt + - uid: 2418 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2167: + - DoorStatus: DoorBolt - uid: 3900 components: - type: Transform @@ -11947,10 +11968,11 @@ entities: parent: 7536 - proto: AirlockFreezer entities: - - uid: 13696 + - uid: 13598 components: - type: Transform - pos: -10.5,-16.5 + rot: 3.141592653589793 rad + pos: -12.5,-17.5 parent: 60 - proto: AirlockFreezerKitchenHydroLocked entities: @@ -12730,6 +12752,11 @@ entities: - type: Transform pos: 28.5,10.5 parent: 60 + - uid: 13753 + components: + - type: Transform + pos: 16.5,-39.5 + parent: 60 - uid: 14443 components: - type: MetaData @@ -12895,13 +12922,6 @@ entities: parent: 60 - proto: AirlockMedicalLocked entities: - - uid: 103 - components: - - type: MetaData - name: Triage - - type: Transform - pos: 36.5,-18.5 - parent: 60 - uid: 104 components: - type: MetaData @@ -13127,15 +13147,13 @@ entities: - type: Transform pos: -2.5,-46.5 parent: 60 - - uid: 12757 +- proto: AirlockSecurityLocked + entities: + - uid: 175 components: - - type: MetaData - name: Perma Brig - type: Transform pos: -8.5,-21.5 parent: 60 -- proto: AirlockSecurityLocked - entities: - uid: 1889 components: - type: MetaData @@ -13150,12 +13168,7 @@ entities: - type: Transform pos: -31.5,-19.5 parent: 60 - - uid: 13701 - components: - - type: Transform - pos: -8.5,-19.5 - parent: 60 - - uid: 13727 + - uid: 13881 components: - type: Transform pos: -6.5,-16.5 @@ -13797,14 +13810,6 @@ entities: - type: Transform pos: 11.5,-29.5 parent: 60 - - uid: 3130 - components: - - type: MetaData - name: Medical Examination APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-19.5 - parent: 60 - uid: 3339 components: - type: MetaData @@ -13905,6 +13910,11 @@ entities: - type: Transform pos: -47.5,-22.5 parent: 60 + - uid: 6042 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 60 - uid: 6263 components: - type: MetaData @@ -15111,10 +15121,9 @@ entities: parent: 60 - proto: BaseGasCondenser entities: - - uid: 4326 + - uid: 400 components: - type: Transform - rot: -1.5707963267948966 rad pos: 41.5,-34.5 parent: 60 - uid: 18453 @@ -15124,6 +15133,11 @@ entities: parent: 60 - proto: Beaker entities: + - uid: 2244 + components: + - type: Transform + pos: -12.753071,-14.410143 + parent: 60 - uid: 4133 components: - type: Transform @@ -15271,6 +15285,11 @@ entities: - type: Transform pos: -7.5,-12.5 parent: 60 + - uid: 13760 + components: + - type: Transform + pos: 47.5,16.5 + parent: 60 - uid: 14632 components: - type: Transform @@ -15408,16 +15427,16 @@ entities: - type: InsideEntityStorage - proto: BedsheetMedical entities: + - uid: 402 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 60 - uid: 1502 components: - type: Transform pos: -18.5,-7.5 parent: 60 - - uid: 4491 - components: - - type: Transform - pos: 38.5,-20.5 - parent: 60 - uid: 9005 components: - type: Transform @@ -15428,16 +15447,16 @@ entities: - type: Transform pos: 40.5,-16.5 parent: 60 - - uid: 12354 - components: - - type: Transform - pos: 38.5,-16.5 - parent: 60 - uid: 12508 components: - type: Transform pos: 30.5,-16.5 parent: 60 + - uid: 12758 + components: + - type: Transform + pos: 36.5,-20.5 + parent: 60 - proto: BedsheetMime entities: - uid: 6682 @@ -16535,6 +16554,21 @@ entities: - type: Transform pos: 23.744236,-27.558329 parent: 60 +- proto: ButtonFrameCaution + entities: + - uid: 13637 + components: + - type: Transform + pos: -48.5,15.5 + parent: 60 +- proto: ButtonFrameExit + entities: + - uid: 15263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,14.5 + parent: 60 - proto: CableApcExtension entities: - uid: 23 @@ -16597,11 +16631,26 @@ entities: - type: Transform pos: -11.5,2.5 parent: 60 + - uid: 513 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 60 - uid: 533 components: - type: Transform pos: 41.5,-18.5 parent: 60 + - uid: 547 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 60 + - uid: 549 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 60 - uid: 551 components: - type: Transform @@ -16812,6 +16861,16 @@ entities: - type: Transform pos: -25.5,-21.5 parent: 60 + - uid: 2166 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 60 + - uid: 2179 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 60 - uid: 2216 components: - type: Transform @@ -16837,6 +16896,11 @@ entities: - type: Transform pos: 33.5,-38.5 parent: 60 + - uid: 2399 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 60 - uid: 2529 components: - type: Transform @@ -16897,6 +16961,11 @@ entities: - type: Transform pos: -58.5,-22.5 parent: 60 + - uid: 3182 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 60 - uid: 3246 components: - type: Transform @@ -17002,6 +17071,11 @@ entities: - type: Transform pos: 45.5,-41.5 parent: 60 + - uid: 3729 + components: + - type: Transform + pos: -25.5,28.5 + parent: 60 - uid: 3747 components: - type: Transform @@ -17017,6 +17091,11 @@ entities: - type: Transform pos: -18.5,-37.5 parent: 60 + - uid: 4017 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 60 - uid: 4221 components: - type: Transform @@ -17812,6 +17891,11 @@ entities: - type: Transform pos: 3.5,33.5 parent: 60 + - uid: 7741 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 60 - uid: 7907 components: - type: Transform @@ -22887,6 +22971,11 @@ entities: - type: Transform pos: -12.5,-48.5 parent: 60 + - uid: 11559 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 60 - uid: 11632 components: - type: Transform @@ -22947,6 +23036,11 @@ entities: - type: Transform pos: 9.5,-47.5 parent: 60 + - uid: 11644 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 60 - uid: 11645 components: - type: Transform @@ -23042,6 +23136,11 @@ entities: - type: Transform pos: -45.5,27.5 parent: 60 + - uid: 11724 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 60 - uid: 11758 components: - type: Transform @@ -23602,6 +23701,11 @@ entities: - type: Transform pos: 44.5,-16.5 parent: 60 + - uid: 12354 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 60 - uid: 12362 components: - type: Transform @@ -24437,6 +24541,11 @@ entities: - type: Transform pos: 13.5,5.5 parent: 60 + - uid: 13089 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 60 - uid: 13203 components: - type: Transform @@ -25317,6 +25426,11 @@ entities: - type: Transform pos: 31.5,-51.5 parent: 60 + - uid: 13686 + components: + - type: Transform + pos: -22.5,28.5 + parent: 60 - uid: 13695 components: - type: Transform @@ -25337,6 +25451,21 @@ entities: - type: Transform pos: -8.5,-20.5 parent: 60 + - uid: 13724 + components: + - type: Transform + pos: -24.5,28.5 + parent: 60 + - uid: 13727 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 60 + - uid: 13728 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 60 - uid: 13729 components: - type: Transform @@ -25367,6 +25496,11 @@ entities: - type: Transform pos: -6.5,33.5 parent: 60 + - uid: 13742 + components: + - type: Transform + pos: -23.5,28.5 + parent: 60 - uid: 13747 components: - type: Transform @@ -25402,11 +25536,26 @@ entities: - type: Transform pos: -6.5,-18.5 parent: 60 + - uid: 13786 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 60 - uid: 13892 components: - type: Transform pos: -50.5,15.5 parent: 60 + - uid: 13929 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 60 + - uid: 13933 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 60 - uid: 14345 components: - type: Transform @@ -26112,6 +26261,11 @@ entities: - type: Transform pos: -20.5,17.5 parent: 60 + - uid: 14652 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 60 - uid: 14904 components: - type: Transform @@ -31884,11 +32038,6 @@ entities: parent: 60 - proto: CableApcStack entities: - - uid: 6603 - components: - - type: Transform - pos: 4.182043,13.598589 - parent: 60 - uid: 7186 components: - type: Transform @@ -31914,6 +32063,16 @@ entities: - type: Transform pos: -65.09276,9.579465 parent: 60 + - uid: 13477 + components: + - type: Transform + pos: 6.8387346,15.685855 + parent: 60 + - uid: 13687 + components: + - type: Transform + pos: 6.8387346,15.685855 + parent: 60 - uid: 16074 components: - type: Transform @@ -41085,10 +41244,15 @@ entities: - type: Transform pos: 6.563483,-46.526386 parent: 60 - - uid: 13978 + - uid: 13606 components: - type: Transform - pos: 4.525793,13.457964 + pos: 7.0887346,15.42023 + parent: 60 + - uid: 13634 + components: + - type: Transform + pos: 7.0887346,15.42023 parent: 60 - uid: 16076 components: @@ -41252,11 +41416,6 @@ entities: - type: Transform pos: 43.5,-18.5 parent: 60 - - uid: 895 - components: - - type: Transform - pos: -9.5,-15.5 - parent: 60 - uid: 994 components: - type: Transform @@ -41642,11 +41801,6 @@ entities: - type: Transform pos: 35.5,-18.5 parent: 60 - - uid: 2553 - components: - - type: Transform - pos: 36.5,-19.5 - parent: 60 - uid: 2571 components: - type: Transform @@ -41717,6 +41871,11 @@ entities: - type: Transform pos: 40.5,-18.5 parent: 60 + - uid: 3172 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 60 - uid: 3185 components: - type: Transform @@ -41732,6 +41891,11 @@ entities: - type: Transform pos: 37.5,-9.5 parent: 60 + - uid: 3225 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 60 - uid: 3232 components: - type: Transform @@ -41752,11 +41916,21 @@ entities: - type: Transform pos: -9.5,29.5 parent: 60 + - uid: 3638 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 60 - uid: 3815 components: - type: Transform pos: -7.5,38.5 parent: 60 + - uid: 4108 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 60 - uid: 4457 components: - type: Transform @@ -42042,6 +42216,11 @@ entities: - type: Transform pos: -25.5,-14.5 parent: 60 + - uid: 5833 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 60 - uid: 5879 components: - type: Transform @@ -42087,6 +42266,11 @@ entities: - type: Transform pos: 45.5,-9.5 parent: 60 + - uid: 6140 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 60 - uid: 6161 components: - type: Transform @@ -42097,11 +42281,6 @@ entities: - type: Transform pos: -2.5,-55.5 parent: 60 - - uid: 6177 - components: - - type: Transform - pos: -4.5,-18.5 - parent: 60 - uid: 6196 components: - type: Transform @@ -44257,6 +44436,11 @@ entities: - type: Transform pos: 43.5,-7.5 parent: 60 + - uid: 12300 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 60 - uid: 12306 components: - type: Transform @@ -44357,21 +44541,6 @@ entities: - type: Transform pos: -13.5,-3.5 parent: 60 - - uid: 12559 - components: - - type: Transform - pos: -13.5,-12.5 - parent: 60 - - uid: 12560 - components: - - type: Transform - pos: -13.5,-13.5 - parent: 60 - - uid: 12561 - components: - - type: Transform - pos: -13.5,-14.5 - parent: 60 - uid: 12641 components: - type: Transform @@ -44552,71 +44721,11 @@ entities: - type: Transform pos: -58.5,9.5 parent: 60 - - uid: 13620 - components: - - type: Transform - pos: -4.5,-17.5 - parent: 60 - - uid: 13621 - components: - - type: Transform - pos: -5.5,-17.5 - parent: 60 - uid: 13641 components: - type: Transform pos: -7.5,-20.5 parent: 60 - - uid: 13658 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 60 - - uid: 13671 - components: - - type: Transform - pos: -4.5,-17.5 - parent: 60 - - uid: 13677 - components: - - type: Transform - pos: -7.5,-16.5 - parent: 60 - - uid: 13678 - components: - - type: Transform - pos: -7.5,-10.5 - parent: 60 - - uid: 13679 - components: - - type: Transform - pos: -10.5,-18.5 - parent: 60 - - uid: 13680 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 60 - - uid: 13682 - components: - - type: Transform - pos: -7.5,-17.5 - parent: 60 - - uid: 13683 - components: - - type: Transform - pos: -11.5,-18.5 - parent: 60 - - uid: 13684 - components: - - type: Transform - pos: -8.5,-16.5 - parent: 60 - - uid: 13686 - components: - - type: Transform - pos: -10.5,-17.5 - parent: 60 - uid: 13702 components: - type: Transform @@ -44687,26 +44796,6 @@ entities: - type: Transform pos: -8.5,-19.5 parent: 60 - - uid: 13716 - components: - - type: Transform - pos: -10.5,-16.5 - parent: 60 - - uid: 13718 - components: - - type: Transform - pos: -7.5,-15.5 - parent: 60 - - uid: 13720 - components: - - type: Transform - pos: -8.5,-15.5 - parent: 60 - - uid: 13721 - components: - - type: Transform - pos: -10.5,-15.5 - parent: 60 - uid: 13725 components: - type: Transform @@ -44722,65 +44811,15 @@ entities: - type: Transform pos: -8.5,-18.5 parent: 60 - - uid: 13752 - components: - - type: Transform - pos: -9.5,-13.5 - parent: 60 - - uid: 13753 - components: - - type: Transform - pos: -9.5,-14.5 - parent: 60 - - uid: 13755 - components: - - type: Transform - pos: -9.5,-12.5 - parent: 60 - - uid: 13756 - components: - - type: Transform - pos: -9.5,-11.5 - parent: 60 - - uid: 13757 - components: - - type: Transform - pos: -9.5,-10.5 - parent: 60 - - uid: 13758 - components: - - type: Transform - pos: -10.5,-10.5 - parent: 60 - - uid: 13759 - components: - - type: Transform - pos: -8.5,-10.5 - parent: 60 - - uid: 13760 - components: - - type: Transform - pos: -8.5,-13.5 - parent: 60 - - uid: 13764 - components: - - type: Transform - pos: -10.5,-13.5 - parent: 60 - - uid: 13765 - components: - - type: Transform - pos: -11.5,-13.5 - parent: 60 - uid: 13766 components: - type: Transform - pos: -11.5,-14.5 + pos: -10.5,-16.5 parent: 60 - - uid: 13767 + - uid: 13817 components: - type: Transform - pos: -11.5,-12.5 + pos: -11.5,-16.5 parent: 60 - uid: 14329 components: @@ -44907,6 +44946,21 @@ entities: - type: Transform pos: -23.5,22.5 parent: 60 + - uid: 14696 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 60 + - uid: 14697 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 60 + - uid: 14701 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 60 - uid: 14705 components: - type: Transform @@ -44972,11 +45026,26 @@ entities: - type: Transform pos: -25.5,57.5 parent: 60 + - uid: 15264 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 60 - uid: 15398 components: - type: Transform pos: -23.5,47.5 parent: 60 + - uid: 15442 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 60 + - uid: 15445 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 60 - uid: 15518 components: - type: Transform @@ -44992,6 +45061,26 @@ entities: - type: Transform pos: -44.5,15.5 parent: 60 + - uid: 16060 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 60 + - uid: 16095 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 60 + - uid: 16123 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 60 + - uid: 16131 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 60 - uid: 16175 components: - type: Transform @@ -45637,6 +45726,11 @@ entities: - type: Transform pos: -7.5,2.5 parent: 60 + - uid: 18640 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 60 - uid: 18752 components: - type: Transform @@ -45707,16 +45801,6 @@ entities: - type: Transform pos: -12.5,-3.5 parent: 60 - - uid: 18766 - components: - - type: Transform - pos: -12.5,-12.5 - parent: 60 - - uid: 18768 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 60 - uid: 18769 components: - type: Transform @@ -46307,11 +46391,6 @@ entities: - type: Transform pos: 47.5,-32.5 parent: 60 - - uid: 21041 - components: - - type: Transform - pos: -5.5,-18.5 - parent: 60 - uid: 21139 components: - type: Transform @@ -47249,10 +47328,15 @@ entities: parent: 60 - proto: CableMVStack entities: + - uid: 6601 + components: + - type: Transform + pos: 6.9793596,15.529605 + parent: 60 - uid: 6605 components: - type: Transform - pos: 4.353918,13.536089 + pos: 6.9793596,15.529605 parent: 60 - uid: 7189 components: @@ -47391,10 +47475,10 @@ entities: parent: 60 - proto: CannabisSeeds entities: - - uid: 16123 + - uid: 12355 components: - type: Transform - pos: -10.519617,-17.43405 + pos: -12.431261,-20.388779 parent: 60 - proto: CapacitorStockPart entities: @@ -47771,6 +47855,11 @@ entities: - type: Transform pos: -48.5,-18.5 parent: 60 + - uid: 4257 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 60 - uid: 4263 components: - type: Transform @@ -47826,6 +47915,21 @@ entities: - type: Transform pos: -50.5,-18.5 parent: 60 + - uid: 5752 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 60 + - uid: 5808 + components: + - type: Transform + pos: 20.5,-37.5 + parent: 60 + - uid: 6550 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 60 - uid: 7037 components: - type: Transform @@ -47836,6 +47940,16 @@ entities: - type: Transform pos: -48.5,-20.5 parent: 60 + - uid: 12507 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 60 + - uid: 13679 + components: + - type: Transform + pos: 21.5,-37.5 + parent: 60 - uid: 14147 components: - type: Transform @@ -48078,36 +48192,6 @@ entities: - type: Transform pos: 52.5,-44.5 parent: 60 - - uid: 21580 - components: - - type: Transform - pos: 20.5,-37.5 - parent: 60 - - uid: 21597 - components: - - type: Transform - pos: 19.5,-37.5 - parent: 60 - - uid: 21600 - components: - - type: Transform - pos: 20.5,-38.5 - parent: 60 - - uid: 21601 - components: - - type: Transform - pos: 18.5,-38.5 - parent: 60 - - uid: 21602 - components: - - type: Transform - pos: 18.5,-37.5 - parent: 60 - - uid: 21606 - components: - - type: Transform - pos: 19.5,-38.5 - parent: 60 - proto: CarpetOrange entities: - uid: 4211 @@ -48572,6 +48656,11 @@ entities: - type: Transform pos: -56.5,-18.5 parent: 60 + - uid: 399 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 60 - uid: 1362 components: - type: Transform @@ -51356,6 +51445,11 @@ entities: - type: Transform pos: -60.5,-5.5 parent: 60 + - uid: 15569 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 60 - uid: 16028 components: - type: Transform @@ -51376,6 +51470,11 @@ entities: - type: Transform pos: 6.5,31.5 parent: 60 + - uid: 16096 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 60 - uid: 16146 components: - type: Transform @@ -54528,6 +54627,17 @@ entities: rot: 3.141592653589793 rad pos: 44.5,12.5 parent: 60 + - uid: 13621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,18.5 + parent: 60 + - uid: 13797 + components: + - type: Transform + pos: 4.5,13.5 + parent: 60 - uid: 15697 components: - type: Transform @@ -55178,12 +55288,6 @@ entities: - type: Transform pos: -47.5,12.5 parent: 60 - - uid: 4257 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,3.5 - parent: 60 - uid: 4273 components: - type: Transform @@ -55346,11 +55450,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,-48.5 parent: 60 - - uid: 12271 - components: - - type: Transform - pos: 47.5,18.5 - parent: 60 - uid: 13082 components: - type: Transform @@ -55367,11 +55466,11 @@ entities: - type: Transform pos: 41.5,-0.5 parent: 60 - - uid: 13478 + - uid: 13659 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,16.5 + rot: 1.5707963267948966 rad + pos: 40.575027,3.6337824 parent: 60 - uid: 14191 components: @@ -55516,12 +55615,6 @@ entities: parent: 60 - proto: ChairOfficeLight entities: - - uid: 100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-17.5 - parent: 60 - uid: 128 components: - type: Transform @@ -55579,6 +55672,12 @@ entities: - type: Transform pos: 41.5,-19.5 parent: 60 + - uid: 7695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.567585,-20.270008 + parent: 60 - uid: 9507 components: - type: Transform @@ -55596,6 +55695,11 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-4.5 parent: 60 + - uid: 12561 + components: + - type: Transform + pos: 38.39571,-16.441883 + parent: 60 - uid: 21697 components: - type: Transform @@ -55630,11 +55734,6 @@ entities: parent: 60 - proto: ChairWood entities: - - uid: 175 - components: - - type: Transform - pos: 16.5,-37.5 - parent: 60 - uid: 2847 components: - type: Transform @@ -55743,6 +55842,11 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,-18.5 parent: 60 + - uid: 6559 + components: + - type: Transform + pos: 17.567825,-37.564503 + parent: 60 - uid: 7492 components: - type: Transform @@ -55772,6 +55876,12 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-0.5 parent: 60 + - uid: 13650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.4897,-38.423878 + parent: 60 - uid: 14118 components: - type: Transform @@ -55943,12 +56053,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-29.5 parent: 60 - - uid: 16131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-38.5 - parent: 60 - uid: 24411 components: - type: Transform @@ -55975,15 +56079,15 @@ entities: parent: 60 - proto: CheapRollerBed entities: - - uid: 146 + - uid: 13648 components: - type: Transform - pos: 35.4955,-20.026983 + pos: 34.484013,-20.163263 parent: 60 - - uid: 12300 + - uid: 13649 components: - type: Transform - pos: 35.48971,-19.620663 + pos: 34.452763,-20.522638 parent: 60 - uid: 18779 components: @@ -55995,11 +56099,6 @@ entities: - type: Transform pos: 45.462997,-27.047497 parent: 60 - - uid: 21364 - components: - - type: Transform - pos: 35.4955,-20.448858 - parent: 60 - proto: CheapRollerBedSpawnFolded entities: - uid: 3115 @@ -56045,15 +56144,23 @@ entities: - type: Transform pos: 2.5348077,-76.44673 parent: 60 + - uid: 13678 + components: + - type: Transform + pos: 20.505325,-37.595753 + parent: 60 - uid: 19496 components: - type: Transform pos: 24.51098,26.60742 parent: 60 - - uid: 23669 +- proto: ChurchBell + entities: + - uid: 11333 components: - type: Transform - pos: 19.551128,-37.52751 + rot: 1.5707963267948966 rad + pos: -28.5,20.5 parent: 60 - proto: ChurchOrganInstrument entities: @@ -56077,6 +56184,11 @@ entities: parent: 60 - proto: CigarCase entities: + - uid: 13656 + components: + - type: Transform + pos: 17.510271,-38.33983 + parent: 60 - uid: 20067 components: - type: Transform @@ -58399,15 +58511,10 @@ entities: parent: 60 - proto: ClothingHeadHatFez entities: - - uid: 3180 + - uid: 13611 components: - type: Transform - pos: 41.532803,-36.60932 - parent: 60 - - uid: 7860 - components: - - type: Transform - pos: 41.371563,-36.423416 + pos: 42.399185,-38.15878 parent: 60 - proto: ClothingHeadHatPaper entities: @@ -58505,20 +58612,22 @@ entities: parent: 60 - proto: ClothingHeadHatWelding entities: + - uid: 6584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.3543596,15.57648 + parent: 60 - uid: 9612 components: - type: Transform pos: -34.442913,15.721314 parent: 60 - - uid: 13817 + - uid: 13716 components: - type: Transform - pos: 3.4523659,13.738024 - parent: 60 - - uid: 13818 - components: - - type: Transform - pos: 3.6398659,13.628649 + rot: 3.141592653589793 rad + pos: 6.5262346,15.435855 parent: 60 - uid: 21464 components: @@ -58867,15 +58976,6 @@ entities: - type: Transform pos: -11.221505,22.789167 parent: 60 -- proto: ClothingNeckMantleCMO - entities: - - uid: 17463 - components: - - type: Transform - parent: 7044 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingNeckMantleHOP entities: - uid: 5207 @@ -59066,7 +59166,7 @@ entities: - uid: 3178 components: - type: Transform - pos: 41.548428,-37.343697 + pos: 42.524185,-38.361904 parent: 60 - uid: 4682 components: @@ -59115,6 +59215,18 @@ entities: - type: Transform pos: -47.44876,21.462833 parent: 60 +- proto: ClothingOuterHardsuitSecurity + entities: + - uid: 13624 + components: + - type: Transform + pos: -24.31193,1.3244922 + parent: 60 + - uid: 13662 + components: + - type: Transform + pos: -24.31193,1.3244922 + parent: 60 - proto: ClothingOuterHoodieBlack entities: - uid: 17781 @@ -59228,7 +59340,7 @@ entities: - uid: 3179 components: - type: Transform - pos: 41.610928,-37.92182 + pos: 42.492935,-38.59628 parent: 60 - proto: ClothingShoesLeather entities: @@ -59465,24 +59577,6 @@ entities: - type: Transform pos: -21.5,1.5 parent: 60 - - uid: 2165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-37.5 - parent: 60 - - uid: 2166 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-38.5 - parent: 60 - - uid: 2167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-37.5 - parent: 60 - uid: 2249 components: - type: Transform @@ -59505,12 +59599,30 @@ entities: - type: Transform pos: -43.5,-15.5 parent: 60 + - uid: 4326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-38.5 + parent: 60 - uid: 4329 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,0.5 parent: 60 + - uid: 4532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-38.5 + parent: 60 + - uid: 4902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-37.5 + parent: 60 - uid: 5844 components: - type: Transform @@ -59567,18 +59679,18 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-8.5 parent: 60 - - uid: 11333 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-38.5 - parent: 60 - uid: 12715 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-34.5 parent: 60 + - uid: 13677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-37.5 + parent: 60 - uid: 14117 components: - type: Transform @@ -59756,12 +59868,6 @@ entities: parent: 60 - proto: ComputerCargoOrders entities: - - uid: 11559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,3.5 - parent: 60 - uid: 13084 components: - type: Transform @@ -59808,6 +59914,12 @@ entities: rot: 3.141592653589793 rad pos: -25.5,-30.5 parent: 60 + - uid: 6582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-11.5 + parent: 60 - uid: 8705 components: - type: Transform @@ -60103,12 +60215,6 @@ entities: - type: Transform pos: -1.5,3.5 parent: 60 - - uid: 6387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-11.5 - parent: 60 - proto: ComputerSurveillanceWirelessCameraMonitor entities: - uid: 17202 @@ -60553,33 +60659,11 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 6582 + - uid: 13604 components: - type: Transform - pos: 5.5,13.5 + pos: 4.5,15.5 parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - uid: 17023 components: - type: Transform @@ -61091,6 +61175,16 @@ entities: - 0 - proto: CrateTrashCart entities: + - uid: 13600 + components: + - type: Transform + pos: 47.5,18.5 + parent: 60 + - uid: 17449 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 60 - uid: 21481 components: - type: Transform @@ -62050,11 +62144,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,9.5 parent: 60 - - uid: 5417 - components: - - type: Transform - pos: 6.5,10.5 - parent: 60 - uid: 5690 components: - type: Transform @@ -62079,6 +62168,11 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,14.5 parent: 60 + - uid: 6585 + components: + - type: Transform + pos: 6.5,10.5 + parent: 60 - uid: 7619 components: - type: Transform @@ -62496,17 +62590,17 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-44.5 parent: 60 - - uid: 5420 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,10.5 - parent: 60 - uid: 6091 components: - type: Transform pos: -37.5,1.5 parent: 60 + - uid: 6602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 60 - uid: 8711 components: - type: Transform @@ -64342,12 +64436,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,5.5 parent: 60 - - uid: 5415 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,9.5 - parent: 60 - uid: 5418 components: - type: Transform @@ -64589,6 +64677,12 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,14.5 parent: 60 + - uid: 6603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 60 - uid: 6614 components: - type: Transform @@ -66102,11 +66196,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,1.5 parent: 60 - - uid: 6141 - components: - - type: Transform - pos: 3.5,11.5 - parent: 60 - uid: 6327 components: - type: Transform @@ -66140,6 +66229,11 @@ entities: - type: Transform pos: -56.5,14.5 parent: 60 + - uid: 13756 + components: + - type: Transform + pos: 7.5,10.5 + parent: 60 - uid: 13983 components: - type: Transform @@ -66361,11 +66455,6 @@ entities: - type: Transform pos: -24.5,-5.5 parent: 60 - - uid: 6142 - components: - - type: Transform - pos: 3.5,11.5 - parent: 60 - uid: 6328 components: - type: Transform @@ -66426,6 +66515,11 @@ entities: - type: Transform pos: -73.5,18.5 parent: 60 + - uid: 13757 + components: + - type: Transform + pos: 7.5,10.5 + parent: 60 - uid: 13975 components: - type: Transform @@ -66568,11 +66662,6 @@ entities: - type: Transform pos: -62.5,-15.5 parent: 60 - - uid: 5221 - components: - - type: Transform - pos: 47.5,17.5 - parent: 60 - uid: 10819 components: - type: Transform @@ -66668,7 +66757,7 @@ entities: - uid: 13100 components: - type: Transform - pos: 29.5,-12.5 + pos: 29.5,-14.5 parent: 60 - proto: DresserFilled entities: @@ -66971,6 +67060,11 @@ entities: - type: Transform pos: 51.394554,17.7191 parent: 60 + - uid: 13788 + components: + - type: Transform + pos: -7.5137773,-11.361463 + parent: 60 - uid: 14454 components: - type: Transform @@ -66986,6 +67080,11 @@ entities: - type: Transform pos: -27.035704,-13.425097 parent: 60 + - uid: 16380 + components: + - type: Transform + pos: -7.6075273,-11.314588 + parent: 60 - uid: 20082 components: - type: Transform @@ -67531,11 +67630,6 @@ entities: - type: Transform pos: -10.5,-51.5 parent: 60 - - uid: 13109 - components: - - type: Transform - pos: 43.5,1.5 - parent: 60 - uid: 13258 components: - type: Transform @@ -67626,16 +67720,6 @@ entities: - type: Transform pos: -35.5,-16.5 parent: 60 - - uid: 21724 - components: - - type: Transform - pos: -13.5,-19.5 - parent: 60 - - uid: 21725 - components: - - type: Transform - pos: -13.5,-11.5 - parent: 60 - uid: 21726 components: - type: Transform @@ -68031,16 +68115,6 @@ entities: - 491 - 8774 - 8957 - - uid: 12193 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,1.5 - parent: 60 - - type: DeviceList - devices: - - 21548 - - 9282 - uid: 12733 components: - type: Transform @@ -68066,16 +68140,6 @@ entities: - 11338 - 11339 - 11340 - - uid: 19528 - components: - - type: Transform - pos: 42.5,4.5 - parent: 60 - - type: DeviceList - devices: - - 19529 - - 11131 - - 19522 - uid: 21484 components: - type: Transform @@ -68225,7 +68289,6 @@ entities: - 19060 - 19061 - 19062 - - 11834 - 19862 - 19861 - 19852 @@ -68728,7 +68791,7 @@ entities: - 21733 - proto: FireAxeCabinetFilled entities: - - uid: 15693 + - uid: 7172 components: - type: Transform pos: -25.5,33.5 @@ -68740,20 +68803,20 @@ entities: parent: 60 - proto: FireExtinguisher entities: - - uid: 7741 + - uid: 7720 components: - type: Transform - pos: 44.693237,-0.25845933 + pos: 46.383842,-1.3846426 parent: 60 - - uid: 12191 + - uid: 13608 components: - type: Transform - pos: 44.505737,-0.30533433 + pos: 46.540092,-1.4627676 parent: 60 - - uid: 16060 + - uid: 13663 components: - type: Transform - pos: 44.318237,-0.41470933 + pos: 46.274467,-1.3065176 parent: 60 - proto: FirelockEdge entities: @@ -69546,6 +69609,11 @@ entities: - type: Transform pos: -41.5,-29.5 parent: 60 + - uid: 4127 + components: + - type: Transform + pos: 4.5,12.5 + parent: 60 - uid: 4330 components: - type: Transform @@ -69596,6 +69664,11 @@ entities: - type: Transform pos: 18.5,-24.5 parent: 60 + - uid: 5221 + components: + - type: Transform + pos: 40.5,4.5 + parent: 60 - uid: 5466 components: - type: Transform @@ -69655,11 +69728,6 @@ entities: - type: Transform pos: 44.5,-38.5 parent: 60 - - uid: 5808 - components: - - type: Transform - pos: 36.5,-18.5 - parent: 60 - uid: 5889 components: - type: Transform @@ -69944,11 +70012,6 @@ entities: - type: Transform pos: 40.5,-41.5 parent: 60 - - uid: 11131 - components: - - type: Transform - pos: 43.5,2.5 - parent: 60 - uid: 11338 components: - type: Transform @@ -69979,11 +70042,6 @@ entities: - type: Transform pos: 27.5,-9.5 parent: 60 - - uid: 11834 - components: - - type: Transform - pos: 50.5,19.5 - parent: 60 - uid: 12511 components: - type: Transform @@ -70047,7 +70105,12 @@ entities: - type: Transform pos: 35.5,9.5 parent: 60 - - uid: 13797 + - uid: 13243 + components: + - type: Transform + pos: 3.5,12.5 + parent: 60 + - uid: 13623 components: - type: Transform pos: 41.5,4.5 @@ -70222,11 +70285,6 @@ entities: - type: Transform pos: 15.5,26.5 parent: 60 - - uid: 19522 - components: - - type: Transform - pos: 43.5,3.5 - parent: 60 - uid: 19676 components: - type: Transform @@ -70299,10 +70357,10 @@ entities: - type: Transform pos: -20.5,2.5 parent: 60 - - uid: 6647 + - uid: 7044 components: - type: Transform - pos: 30.5,-12.5 + pos: 29.5,-12.5 parent: 60 - uid: 18472 components: @@ -70345,16 +70403,6 @@ entities: - type: Transform pos: -59.580887,2.6484475 parent: 60 - - uid: 13243 - components: - - type: Transform - pos: 44.365112,0.6790407 - parent: 60 - - uid: 13499 - components: - - type: Transform - pos: 44.474487,0.5227907 - parent: 60 - uid: 18112 components: - type: Transform @@ -70440,6 +70488,13 @@ entities: parent: 60 - type: Fixtures fixtures: {} + - uid: 13567 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 60 + - type: Fixtures + fixtures: {} - uid: 18254 components: - type: Transform @@ -71727,26 +71782,20 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,36.5 parent: 60 -- proto: GasMinerNitrogen +- proto: GasMinerNitrogenStationLarge entities: - uid: 15203 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,32.5 parent: 60 - - type: GasMiner - maxExternalPressure: 4500 -- proto: GasMinerOxygen +- proto: GasMinerOxygenStationLarge entities: - uid: 15204 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,34.5 parent: 60 - - type: GasMiner - maxExternalPressure: 4500 - proto: GasMinerWaterVapor entities: - uid: 15206 @@ -71961,11 +72010,11 @@ entities: parent: 60 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13741 + - uid: 13683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-13.5 + rot: -1.5707963267948966 rad + pos: -5.5,-13.5 parent: 60 - uid: 13934 components: @@ -79419,6 +79468,12 @@ entities: parent: 60 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 4137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 60 - uid: 4143 components: - type: Transform @@ -82926,12 +82981,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 12758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-13.5 - parent: 60 - uid: 12824 components: - type: Transform @@ -83389,11 +83438,17 @@ entities: parent: 60 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13639 + - uid: 13643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-13.5 + rot: 1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 60 + - uid: 13645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-13.5 parent: 60 - uid: 13651 components: @@ -93670,6 +93725,12 @@ entities: parent: 60 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 7860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-35.5 + parent: 60 - uid: 8072 components: - type: Transform @@ -93762,12 +93823,6 @@ entities: - type: Transform pos: -20.5,41.5 parent: 60 - - uid: 18640 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-34.5 - parent: 60 - uid: 21442 components: - type: Transform @@ -96550,12 +96605,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-13.5 - parent: 60 - uid: 12001 components: - type: Transform @@ -96654,6 +96703,12 @@ entities: parent: 60 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 13754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-13.5 + parent: 60 - uid: 13971 components: - type: Transform @@ -97299,6 +97354,11 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,-15.5 parent: 60 + - uid: 103 + components: + - type: Transform + pos: 50.5,19.5 + parent: 60 - uid: 113 components: - type: Transform @@ -97432,11 +97492,6 @@ entities: - type: Transform pos: 40.5,-15.5 parent: 60 - - uid: 536 - components: - - type: Transform - pos: -13.5,-18.5 - parent: 60 - uid: 537 components: - type: Transform @@ -97531,6 +97586,11 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,-12.5 parent: 60 + - uid: 895 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 60 - uid: 949 components: - type: Transform @@ -97596,11 +97656,16 @@ entities: - type: Transform pos: -5.5,7.5 parent: 60 - - uid: 1297 + - uid: 1292 components: - type: Transform pos: -5.5,-19.5 parent: 60 + - uid: 1297 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 60 - uid: 1330 components: - type: Transform @@ -98037,11 +98102,6 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,-19.5 parent: 60 - - uid: 3225 - components: - - type: Transform - pos: 36.5,-20.5 - parent: 60 - uid: 3327 components: - type: Transform @@ -98319,11 +98379,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-38.5 parent: 60 - - uid: 4017 - components: - - type: Transform - pos: -4.5,-17.5 - parent: 60 - uid: 4038 components: - type: Transform @@ -98364,6 +98419,11 @@ entities: - type: Transform pos: 32.5,-59.5 parent: 60 + - uid: 4121 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 60 - uid: 4131 components: - type: Transform @@ -98636,11 +98696,6 @@ entities: - type: Transform pos: -8.5,-56.5 parent: 60 - - uid: 4902 - components: - - type: Transform - pos: 40.5,4.5 - parent: 60 - uid: 4947 components: - type: Transform @@ -99206,6 +99261,11 @@ entities: - type: Transform pos: -22.5,27.5 parent: 60 + - uid: 6606 + components: + - type: Transform + pos: 50.5,15.5 + parent: 60 - uid: 6649 components: - type: Transform @@ -99866,11 +99926,6 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,51.5 parent: 60 - - uid: 8153 - components: - - type: Transform - pos: -4.5,-18.5 - parent: 60 - uid: 8163 components: - type: Transform @@ -100058,11 +100113,6 @@ entities: - type: Transform pos: 50.5,-18.5 parent: 60 - - uid: 9041 - components: - - type: Transform - pos: 36.5,-16.5 - parent: 60 - uid: 9052 components: - type: Transform @@ -100268,6 +100318,11 @@ entities: - type: Transform pos: 42.5,-20.5 parent: 60 + - uid: 11150 + components: + - type: Transform + pos: -25.5,27.5 + parent: 60 - uid: 11341 components: - type: Transform @@ -100303,11 +100358,6 @@ entities: - type: Transform pos: -1.5,37.5 parent: 60 - - uid: 11644 - components: - - type: Transform - pos: 51.5,19.5 - parent: 60 - uid: 11699 components: - type: Transform @@ -100328,11 +100378,6 @@ entities: - type: Transform pos: 47.5,31.5 parent: 60 - - uid: 11726 - components: - - type: Transform - pos: 50.5,15.5 - parent: 60 - uid: 11732 components: - type: Transform @@ -100398,6 +100443,11 @@ entities: - type: Transform pos: 56.5,-27.5 parent: 60 + - uid: 11865 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 60 - uid: 11874 components: - type: Transform @@ -100453,6 +100503,21 @@ entities: - type: Transform pos: 40.5,-69.5 parent: 60 + - uid: 12191 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 60 + - uid: 12193 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 60 + - uid: 12271 + components: + - type: Transform + pos: -9.5,6.5 + parent: 60 - uid: 12274 components: - type: Transform @@ -100653,11 +100718,6 @@ entities: - type: Transform pos: 63.5,-6.5 parent: 60 - - uid: 12781 - components: - - type: Transform - pos: 63.5,-5.5 - parent: 60 - uid: 12790 components: - type: Transform @@ -100843,11 +100903,6 @@ entities: - type: Transform pos: -79.5,12.5 parent: 60 - - uid: 13089 - components: - - type: Transform - pos: 49.5,19.5 - parent: 60 - uid: 13110 components: - type: Transform @@ -100983,55 +101038,10 @@ entities: - type: Transform pos: 52.5,18.5 parent: 60 - - uid: 13445 + - uid: 13626 components: - type: Transform - pos: -23.5,28.5 - parent: 60 - - uid: 13613 - components: - - type: Transform - pos: -11.5,-18.5 - parent: 60 - - uid: 13638 - components: - - type: Transform - pos: -11.5,-14.5 - parent: 60 - - uid: 13640 - components: - - type: Transform - pos: -11.5,-12.5 - parent: 60 - - uid: 13645 - components: - - type: Transform - pos: -9.5,-10.5 - parent: 60 - - uid: 13646 - components: - - type: Transform - pos: -8.5,-10.5 - parent: 60 - - uid: 13647 - components: - - type: Transform - pos: -10.5,-10.5 - parent: 60 - - uid: 13648 - components: - - type: Transform - pos: -13.5,-14.5 - parent: 60 - - uid: 13649 - components: - - type: Transform - pos: -13.5,-13.5 - parent: 60 - - uid: 13650 - components: - - type: Transform - pos: -13.5,-12.5 + pos: -25.5,29.5 parent: 60 - uid: 13664 components: @@ -101043,31 +101053,36 @@ entities: - type: Transform pos: -7.5,-20.5 parent: 60 - - uid: 13694 + - uid: 13690 components: - type: Transform - pos: -11.5,-13.5 + pos: -13.5,-19.5 parent: 60 - - uid: 13742 - components: - - type: Transform - pos: -6.5,-12.5 - parent: 60 - - uid: 13743 + - uid: 13758 components: - type: Transform pos: -7.5,-16.5 parent: 60 - - uid: 13749 + - uid: 13763 components: - type: Transform - pos: -8.5,-16.5 + pos: -6.5,-12.5 parent: 60 - - uid: 13786 + - uid: 13764 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 60 + - uid: 13765 components: - type: Transform pos: -6.5,-13.5 parent: 60 + - uid: 13785 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 60 - uid: 13811 components: - type: Transform @@ -101083,6 +101098,11 @@ entities: - type: Transform pos: 7.5,18.5 parent: 60 + - uid: 13818 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 60 - uid: 13820 components: - type: Transform @@ -101206,16 +101226,6 @@ entities: - type: Transform pos: -27.5,27.5 parent: 60 - - uid: 14696 - components: - - type: Transform - pos: -25.5,27.5 - parent: 60 - - uid: 14697 - components: - - type: Transform - pos: -25.5,29.5 - parent: 60 - uid: 14699 components: - type: Transform @@ -101718,6 +101728,16 @@ entities: - type: Transform pos: 1.5,37.5 parent: 60 + - uid: 16995 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 60 + - uid: 16996 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 60 - uid: 17034 components: - type: Transform @@ -102193,6 +102213,11 @@ entities: - type: Transform pos: 5.5,0.5 parent: 60 + - uid: 17993 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 60 - uid: 17994 components: - type: Transform @@ -102316,12 +102341,12 @@ entities: - uid: 18682 components: - type: Transform - pos: -9.5,6.5 + pos: -7.5,-10.5 parent: 60 - - uid: 18771 + - uid: 18768 components: - type: Transform - pos: -5.5,-14.5 + pos: -10.5,-10.5 parent: 60 - uid: 18777 components: @@ -103158,11 +103183,6 @@ entities: - type: Transform pos: -9.5,1.5 parent: 60 - - uid: 21151 - components: - - type: Transform - pos: -7.5,-10.5 - parent: 60 - uid: 21174 components: - type: Transform @@ -104960,11 +104980,6 @@ entities: - type: Transform pos: -60.5,11.5 parent: 60 - - uid: 12887 - components: - - type: Transform - pos: 63.5,-4.5 - parent: 60 - uid: 12937 components: - type: Transform @@ -105533,6 +105548,11 @@ entities: - type: Transform pos: 31.5,-17.5 parent: 60 + - uid: 13445 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 60 - uid: 15497 components: - type: Transform @@ -105731,19 +105751,21 @@ entities: rot: 3.141592653589793 rad pos: 28.5,-30.5 parent: 60 + - uid: 11834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-13.5 + parent: 60 - uid: 12910 components: - type: Transform pos: -58.5,-24.5 parent: 60 - - uid: 13636 - components: - - type: Transform - pos: -10.5,-12.5 - parent: 60 - - uid: 21150 + - uid: 13613 components: - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-13.5 parent: 60 - proto: InflatableDoorStack @@ -106155,6 +106177,11 @@ entities: parent: 60 - proto: KitchenMicrowave entities: + - uid: 367 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 60 - uid: 1530 components: - type: Transform @@ -106207,6 +106234,11 @@ entities: - type: Transform pos: 24.5,-30.5 parent: 60 + - uid: 16132 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 60 - uid: 18694 components: - type: Transform @@ -106318,12 +106350,6 @@ entities: - type: Transform pos: 25.565468,-15.324441 parent: 60 - - uid: 2629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.302364,-38.05794 - parent: 60 - uid: 4234 components: - type: Transform @@ -106561,40 +106587,11 @@ entities: parent: 60 - proto: LockerChiefMedicalOfficerFilledHardsuit entities: - - uid: 7044 + - uid: 6647 components: - type: Transform - pos: 29.5,-14.5 + pos: 30.5,-12.5 parent: 60 - - 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: - - 17463 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerClown entities: - uid: 6580 @@ -106652,6 +106649,11 @@ entities: - 0 - 0 - 0 + - uid: 6387 + components: + - type: Transform + pos: 6.5,12.5 + parent: 60 - uid: 11679 components: - type: Transform @@ -106721,29 +106723,6 @@ entities: - 0 - 0 - 0 - - uid: 16096 - components: - - type: Transform - pos: -4.5,21.5 - parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 17035 components: - type: Transform @@ -107176,23 +107155,8 @@ entities: - type: Transform pos: 48.5,-8.5 parent: 60 - - uid: 21336 - components: - - type: Transform - pos: 35.5,-16.5 - parent: 60 - - uid: 21337 - components: - - type: Transform - pos: 35.5,-17.5 - parent: 60 - proto: LockerMedicineFilled entities: - - uid: 3210 - components: - - type: Transform - pos: 39.5,-16.5 - parent: 60 - uid: 5681 components: - type: Transform @@ -107203,10 +107167,15 @@ entities: - type: Transform pos: 32.5,-10.5 parent: 60 - - uid: 9039 + - uid: 13646 components: - type: Transform - pos: 37.5,-20.5 + pos: 32.5,-16.5 + parent: 60 + - uid: 13647 + components: + - type: Transform + pos: 35.5,-16.5 parent: 60 - proto: LockerMime entities: @@ -107486,11 +107455,6 @@ entities: ent: null - proto: LockerWallMedicalFilled entities: - - uid: 4137 - components: - - type: Transform - pos: 37.5,-15.5 - parent: 60 - uid: 8969 components: - type: Transform @@ -107561,29 +107525,11 @@ entities: - type: Transform pos: -64.5,-19.5 parent: 60 - - uid: 16095 + - uid: 13755 components: - type: Transform - pos: -4.5,20.5 + pos: 7.5,12.5 parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 21463 components: - type: Transform @@ -107984,11 +107930,6 @@ entities: - type: Transform pos: 30.5,-16.5 parent: 60 - - uid: 7695 - components: - - type: Transform - pos: 38.5,-20.5 - parent: 60 - uid: 8750 components: - type: Transform @@ -108004,10 +107945,15 @@ entities: - type: Transform pos: 40.5,-16.5 parent: 60 - - uid: 12356 + - uid: 12757 components: - type: Transform - pos: 38.5,-16.5 + pos: 36.5,-16.5 + parent: 60 + - uid: 13066 + components: + - type: Transform + pos: 36.5,-20.5 parent: 60 - proto: MedicalTechFab entities: @@ -108231,6 +108177,13 @@ entities: - type: Transform pos: -3.4904737,-27.546751 parent: 60 +- proto: MopBucketFull + entities: + - uid: 13720 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 60 - proto: MopItem entities: - uid: 7199 @@ -108243,6 +108196,11 @@ entities: - type: Transform pos: 7.438483,-44.620136 parent: 60 + - uid: 13721 + components: + - type: Transform + pos: -10.534099,-18.99607 + parent: 60 - proto: Morgue entities: - uid: 229 @@ -108636,10 +108594,10 @@ entities: - type: Transform pos: -50.5,51.5 parent: 60 - - uid: 11753 + - uid: 13109 components: - type: Transform - pos: 54.5,-1.5 + pos: 50.5,-1.5 parent: 60 - uid: 15248 components: @@ -108723,10 +108681,15 @@ entities: parent: 60 - proto: OreBag entities: - - uid: 12194 + - uid: 7675 components: - type: Transform - pos: 42.498352,-0.3113162 + pos: 43.36414,-1.1815176 + parent: 60 + - uid: 13666 + components: + - type: Transform + pos: 43.42664,-0.9783926 parent: 60 - proto: OreProcessor entities: @@ -108815,10 +108778,10 @@ entities: - type: Transform pos: 60.5,-23.5 parent: 60 - - uid: 13066 + - uid: 13137 components: - type: Transform - pos: 53.5,-1.5 + pos: 49.5,-1.5 parent: 60 - uid: 15246 components: @@ -108882,6 +108845,13 @@ entities: - type: Transform pos: 8.5436735,-62.480114 parent: 60 +- proto: PackPaperRolling + entities: + - uid: 11151 + components: + - type: Transform + pos: -10.628071,-18.30077 + parent: 60 - proto: PaintingAmogusTriptych entities: - uid: 23383 @@ -109566,6 +109536,11 @@ entities: - type: Transform pos: 36.441284,2.541195 parent: 60 + - uid: 19522 + components: + - type: Transform + pos: 43.496902,-0.14746776 + parent: 60 - proto: PlantBGoneSpray entities: - uid: 936 @@ -110302,10 +110277,10 @@ entities: - type: Transform pos: 37.5,-12.5 parent: 60 - - uid: 12507 + - uid: 12781 components: - type: Transform - pos: 36.5,-17.5 + pos: 37.5,-15.5 parent: 60 - proto: PosterLegitBlessThisSpess entities: @@ -110844,11 +110819,6 @@ entities: - type: Transform pos: -23.49266,-26.555698 parent: 60 - - uid: 16132 - components: - - type: Transform - pos: 21.533903,-38.692165 - parent: 60 - uid: 24363 components: - type: Transform @@ -110963,17 +110933,6 @@ entities: - type: Transform pos: -30.486118,-20.71535 parent: 60 - - uid: 24143 - components: - - type: Transform - pos: -5.5057654,-15.736094 - parent: 60 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24144 - proto: PottedPlant4 entities: - uid: 15519 @@ -111365,16 +111324,6 @@ entities: - type: Transform pos: 0.5,20.5 parent: 60 - - uid: 1534 - components: - - type: Transform - pos: 4.5,13.5 - parent: 60 - - uid: 4127 - components: - - type: Transform - pos: 37.5,-17.5 - parent: 60 - uid: 4698 components: - type: Transform @@ -111385,6 +111334,12 @@ entities: - type: Transform pos: 0.5,15.5 parent: 60 + - uid: 6177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,12.5 + parent: 60 - uid: 6782 components: - type: Transform @@ -111429,6 +111384,12 @@ entities: parent: 60 - type: Physics canCollide: False + - uid: 13717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,15.5 + parent: 60 - uid: 16987 components: - type: Transform @@ -111808,11 +111769,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2777 - components: - - type: Transform - pos: -10.5,-20.5 - parent: 60 - uid: 3057 components: - type: Transform @@ -112003,13 +111959,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5752 - components: - - type: Transform - pos: 3.5,11.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5826 components: - type: Transform @@ -112078,12 +112027,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6042 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-17.5 - parent: 60 - uid: 6146 components: - type: Transform @@ -112373,14 +112316,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10679 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-15.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10680 components: - type: Transform @@ -112595,14 +112530,12 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11865 + - uid: 11726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,1.5 + rot: 3.141592653589793 rad + pos: -11.5,-16.5 parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 12224 components: - type: Transform @@ -112652,6 +112585,12 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 + - uid: 13478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-16.5 + parent: 60 - uid: 13480 components: - type: Transform @@ -112659,6 +112598,17 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 + - uid: 13494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-1.5 + parent: 60 + - uid: 13499 + components: + - type: Transform + pos: -27.5,32.5 + parent: 60 - uid: 13592 components: - type: Transform @@ -112789,20 +112739,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 15263 - components: - - type: Transform - pos: -29.5,32.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15264 - components: - - type: Transform - pos: -25.5,32.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 15266 components: - type: Transform @@ -112968,24 +112904,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 16993 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-15.5 - parent: 60 - - uid: 16994 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-18.5 - parent: 60 - - uid: 16995 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-11.5 - parent: 60 - uid: 17018 components: - type: Transform @@ -113298,14 +113216,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 19684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-1.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 19879 components: - type: Transform @@ -113829,6 +113739,12 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 + - uid: 769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-20.5 + parent: 60 - uid: 937 components: - type: Transform @@ -113859,6 +113775,12 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 + - uid: 1534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-10.5 + parent: 60 - uid: 2091 components: - type: Transform @@ -113947,14 +113869,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3729 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,16.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 3968 components: - type: Transform @@ -114382,6 +114296,12 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 + - uid: 13750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-35.5 + parent: 60 - uid: 13775 components: - type: Transform @@ -114930,6 +114850,11 @@ entities: parent: 60 - proto: Rack entities: + - uid: 536 + components: + - type: Transform + pos: 5.5,13.5 + parent: 60 - uid: 958 components: - type: Transform @@ -114960,12 +114885,6 @@ entities: - type: Transform pos: 11.5,-35.5 parent: 60 - - uid: 2418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,2.5 - parent: 60 - uid: 2533 components: - type: Transform @@ -115101,16 +115020,16 @@ entities: - type: Transform pos: -33.5,-36.5 parent: 60 - - uid: 6554 - components: - - type: Transform - pos: 4.5,15.5 - parent: 60 - uid: 6564 components: - type: Transform pos: -0.5,15.5 parent: 60 + - uid: 7703 + components: + - type: Transform + pos: 46.5,-1.5 + parent: 60 - uid: 7737 components: - type: Transform @@ -115196,31 +115115,21 @@ entities: - type: Transform pos: 53.5,-4.5 parent: 60 + - uid: 13636 + components: + - type: Transform + pos: 45.5,-1.5 + parent: 60 - uid: 15158 components: - type: Transform pos: -27.5,32.5 parent: 60 - - uid: 15159 - components: - - type: Transform - pos: -29.5,32.5 - parent: 60 - - uid: 15569 - components: - - type: Transform - pos: -25.5,32.5 - parent: 60 - uid: 16065 components: - type: Transform pos: 4.5,23.5 parent: 60 - - uid: 16380 - components: - - type: Transform - pos: 44.5,-0.5 - parent: 60 - uid: 17155 components: - type: Transform @@ -115851,11 +115760,6 @@ entities: - type: Transform pos: 55.5,-5.5 parent: 60 - - uid: 3638 - components: - - type: Transform - pos: 42.5,-37.5 - parent: 60 - uid: 5302 components: - type: Transform @@ -115967,6 +115871,12 @@ entities: - type: Transform pos: 12.5,-44.5 parent: 60 + - uid: 7164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-17.5 + parent: 60 - uid: 9094 components: - type: Transform @@ -115977,6 +115887,12 @@ entities: - type: Transform pos: -29.5,-33.5 parent: 60 + - uid: 13701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-12.5 + parent: 60 - uid: 18010 components: - type: Transform @@ -116226,11 +116142,6 @@ entities: - type: Transform pos: 35.5,-40.5 parent: 60 - - uid: 3182 - components: - - type: Transform - pos: 42.5,-38.5 - parent: 60 - uid: 3375 components: - type: Transform @@ -116706,6 +116617,11 @@ entities: - type: Transform pos: -53.5,51.5 parent: 60 + - uid: 6999 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 60 - uid: 7237 components: - type: Transform @@ -116821,6 +116737,16 @@ entities: - type: Transform pos: -56.5,2.5 parent: 60 + - uid: 13618 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 60 + - uid: 13978 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 60 - uid: 14807 components: - type: Transform @@ -116947,6 +116873,11 @@ entities: - type: Transform pos: -13.5,47.5 parent: 60 + - uid: 15444 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 60 - uid: 15491 components: - type: Transform @@ -116972,6 +116903,11 @@ entities: - type: Transform pos: -20.5,47.5 parent: 60 + - uid: 16133 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 60 - uid: 16972 components: - type: Transform @@ -117219,11 +117155,6 @@ entities: - type: Transform pos: -5.5,-21.5 parent: 60 - - uid: 513 - components: - - type: Transform - pos: -13.5,-12.5 - parent: 60 - uid: 524 components: - type: Transform @@ -117234,20 +117165,10 @@ entities: - type: Transform pos: 5.5,7.5 parent: 60 - - uid: 541 - components: - - type: Transform - pos: -13.5,-18.5 - parent: 60 - uid: 546 components: - type: Transform - pos: -13.5,-14.5 - parent: 60 - - uid: 549 - components: - - type: Transform - pos: -13.5,-13.5 + pos: -4.5,-18.5 parent: 60 - uid: 556 components: @@ -117395,6 +117316,11 @@ entities: - type: Transform pos: -8.5,-32.5 parent: 60 + - uid: 1293 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 60 - uid: 1337 components: - type: Transform @@ -117674,6 +117600,11 @@ entities: - type: Transform pos: 48.5,-19.5 parent: 60 + - uid: 3130 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 60 - uid: 3131 components: - type: Transform @@ -119090,11 +119021,6 @@ entities: - type: Transform pos: 42.5,-22.5 parent: 60 - - uid: 7703 - components: - - type: Transform - pos: 51.5,19.5 - parent: 60 - uid: 7726 components: - type: Transform @@ -119208,6 +119134,11 @@ entities: rot: 1.5707963267948966 rad pos: -62.5,-3.5 parent: 60 + - uid: 8565 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 60 - uid: 8780 components: - type: Transform @@ -119268,6 +119199,11 @@ entities: - type: Transform pos: -24.5,-7.5 parent: 60 + - uid: 9041 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 60 - uid: 9231 components: - type: Transform @@ -119377,6 +119313,11 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,-9.5 parent: 60 + - uid: 10578 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 60 - uid: 10582 components: - type: Transform @@ -119387,21 +119328,6 @@ entities: - type: Transform pos: 22.5,3.5 parent: 60 - - uid: 10620 - components: - - type: Transform - pos: 40.5,4.5 - parent: 60 - - uid: 11125 - components: - - type: Transform - pos: 36.5,-16.5 - parent: 60 - - uid: 11150 - components: - - type: Transform - pos: 49.5,19.5 - parent: 60 - uid: 11438 components: - type: Transform @@ -119605,6 +119531,11 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,13.5 parent: 60 + - uid: 12021 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 60 - uid: 12035 components: - type: Transform @@ -119615,6 +119546,11 @@ entities: - type: Transform pos: 47.5,30.5 parent: 60 + - uid: 12195 + components: + - type: Transform + pos: -25.5,27.5 + parent: 60 - uid: 12281 components: - type: Transform @@ -119871,6 +119807,31 @@ entities: - type: Transform pos: -9.5,-20.5 parent: 60 + - uid: 13625 + components: + - type: Transform + pos: -25.5,29.5 + parent: 60 + - uid: 13632 + components: + - type: Transform + pos: -9.5,6.5 + parent: 60 + - uid: 13694 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 60 + - uid: 13696 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 60 + - uid: 13767 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 60 - uid: 13813 components: - type: Transform @@ -119891,16 +119852,6 @@ entities: - type: Transform pos: -48.5,17.5 parent: 60 - - uid: 13929 - components: - - type: Transform - pos: -25.5,29.5 - parent: 60 - - uid: 13933 - components: - - type: Transform - pos: -23.5,28.5 - parent: 60 - uid: 13941 components: - type: Transform @@ -119956,11 +119907,6 @@ entities: - type: Transform pos: -13.5,29.5 parent: 60 - - uid: 14652 - components: - - type: Transform - pos: -25.5,27.5 - parent: 60 - uid: 14654 components: - type: Transform @@ -120225,6 +120171,11 @@ entities: - type: Transform pos: -27.5,40.5 parent: 60 + - uid: 15660 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 60 - uid: 15715 components: - type: Transform @@ -120447,11 +120398,6 @@ entities: - type: Transform pos: 3.5,4.5 parent: 60 - - uid: 17993 - components: - - type: Transform - pos: -9.5,6.5 - parent: 60 - uid: 18058 components: - type: Transform @@ -120552,6 +120498,21 @@ entities: - type: Transform pos: 39.5,-15.5 parent: 60 + - uid: 18766 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 60 + - uid: 18767 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 60 + - uid: 18771 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 60 - uid: 19063 components: - type: Transform @@ -120811,11 +120772,6 @@ entities: - type: Transform pos: -20.5,-4.5 parent: 60 - - uid: 24364 - components: - - type: Transform - pos: 36.5,-20.5 - parent: 60 - proto: RemoteSignaller entities: - uid: 3017 @@ -120993,14 +120949,6 @@ entities: - type: Transform pos: -40.541443,11.441846 parent: 60 -- proto: ScalpelShiv - entities: - - uid: 24144 - components: - - type: Transform - parent: 24143 - - type: Physics - canCollide: False - proto: Screen entities: - uid: 5582 @@ -121383,21 +121331,21 @@ entities: - type: Transform pos: -57.47909,29.480463 parent: 60 - - uid: 14701 + - uid: 13549 components: - type: Transform - pos: -25.5,32.5 + pos: -27.462288,32.46317 + parent: 60 + - uid: 13635 + components: + - type: Transform + pos: -27.462288,32.46317 parent: 60 - uid: 15162 components: - type: Transform pos: -27.5,32.5 parent: 60 - - uid: 15200 - components: - - type: Transform - pos: -29.5,32.5 - parent: 60 - uid: 17024 components: - type: Transform @@ -121437,10 +121385,10 @@ entities: parent: 60 - proto: Shovel entities: - - uid: 13494 + - uid: 11125 components: - type: Transform - pos: 44.552612,0.5384157 + pos: 45.481277,-1.4287177 parent: 60 - uid: 19029 components: @@ -121503,11 +121451,6 @@ entities: - type: Transform pos: 29.5,-38.5 parent: 60 - - uid: 17449 - components: - - type: Transform - pos: -52.5,17.5 - parent: 60 - proto: ShuttersNormalOpen entities: - uid: 147 @@ -121942,16 +121885,6 @@ entities: - type: Transform pos: 42.5,-20.5 parent: 60 - - uid: 24370 - components: - - type: Transform - pos: 36.5,-20.5 - parent: 60 - - uid: 24371 - components: - - type: Transform - pos: 36.5,-16.5 - parent: 60 - uid: 24372 components: - type: Transform @@ -122061,6 +121994,11 @@ entities: - type: Transform pos: -50.5,28.5 parent: 60 + - uid: 13639 + components: + - type: Transform + pos: -52.5,17.5 + parent: 60 - proto: ShuttersWindowOpen entities: - uid: 6771 @@ -122576,18 +122514,6 @@ entities: - Pressed: Toggle 4045: - Pressed: Toggle - - uid: 2508 - components: - - type: MetaData - name: Maint Access to Chamber - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,14.5 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 17449: - - Pressed: Toggle - uid: 2511 components: - type: MetaData @@ -122703,10 +122629,6 @@ entities: - Pressed: Toggle 24366: - Pressed: Toggle - 24370: - - Pressed: Toggle - 24371: - - Pressed: Toggle 24372: - Pressed: Toggle - uid: 13095 @@ -122840,6 +122762,18 @@ entities: - Pressed: Toggle 2506: - Pressed: Toggle + - uid: 15200 + components: + - type: MetaData + name: Maint Shutter + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,14.5 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 13639: + - Pressed: Toggle - uid: 16370 components: - type: Transform @@ -124359,6 +124293,20 @@ entities: - type: Transform pos: -35.5,10.5 parent: 60 +- proto: SignSalvage + entities: + - uid: 13640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,4.5 + parent: 60 + - uid: 13759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,3.5 + parent: 60 - proto: SignScience entities: - uid: 9467 @@ -124473,11 +124421,15 @@ entities: parent: 60 - proto: SignShipDock entities: - - uid: 13251 + - uid: 7700 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,3.5 + pos: 42.5,19.5 + parent: 60 + - uid: 11131 + components: + - type: Transform + pos: 18.5,22.5 parent: 60 - proto: SignSmoking entities: @@ -124543,6 +124495,11 @@ entities: - type: Transform pos: -46.5,-35.5 parent: 60 + - uid: 13741 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 60 - uid: 18803 components: - type: Transform @@ -124689,11 +124646,11 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,12.5 parent: 60 - - uid: 13688 + - uid: 16994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-17.5 + rot: -1.5707963267948966 rad + pos: -12.5,-19.5 parent: 60 - uid: 24307 components: @@ -124715,6 +124672,12 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-33.5 parent: 60 + - uid: 12356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 60 - uid: 12931 components: - type: Transform @@ -124732,12 +124695,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-27.5 parent: 60 - - uid: 21149 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-15.5 - parent: 60 - uid: 24159 components: - type: Transform @@ -127016,6 +126973,12 @@ entities: parent: 60 - proto: SolidSecretDoor entities: + - uid: 3180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-19.5 + parent: 60 - uid: 5307 components: - type: Transform @@ -127478,25 +127441,25 @@ entities: parent: 60 - proto: SpawnPointMedicalIntern entities: - - uid: 4108 + - uid: 545 components: - type: Transform - pos: 37.5,-19.5 + pos: 39.5,-17.5 parent: 60 - - uid: 4121 + - uid: 9039 components: - type: Transform - pos: 38.5,-19.5 + pos: 38.5,-17.5 parent: 60 - - uid: 13788 + - uid: 13633 components: - type: Transform - pos: 40.5,-19.5 + pos: 37.5,-17.5 parent: 60 - - uid: 17298 + - uid: 13638 components: - type: Transform - pos: 39.5,-19.5 + pos: 36.5,-17.5 parent: 60 - proto: SpawnPointMime entities: @@ -127676,15 +127639,15 @@ entities: parent: 60 - proto: SpawnPointServiceWorker entities: - - uid: 7196 + - uid: 6141 components: - type: Transform - pos: 18.5,-38.5 + pos: 19.5,-37.5 parent: 60 - - uid: 21077 + - uid: 6554 components: - type: Transform - pos: 20.5,-37.5 + pos: 21.5,-38.5 parent: 60 - proto: SpawnPointStationEngineer entities: @@ -127936,6 +127899,18 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-7.5 parent: 60 + - uid: 13562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-14.5 + parent: 60 + - uid: 16993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-15.5 + parent: 60 - proto: Stool entities: - uid: 42 @@ -129775,11 +129750,11 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Security Break Room - - uid: 13627 + - uid: 13658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-14.5 + rot: 3.141592653589793 rad + pos: -11.5,-13.5 parent: 60 - type: SurveillanceCamera setupAvailableNetworks: @@ -130244,6 +130219,11 @@ entities: - type: Transform pos: 9.5,-36.5 parent: 60 + - uid: 146 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 60 - uid: 328 components: - type: Transform @@ -130435,12 +130415,6 @@ entities: - type: Transform pos: 3.5,-39.5 parent: 60 - - uid: 4954 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,4.5 - parent: 60 - uid: 5020 components: - type: Transform @@ -130521,16 +130495,6 @@ entities: - type: Transform pos: 55.5,-12.5 parent: 60 - - uid: 6584 - components: - - type: Transform - pos: 3.5,13.5 - parent: 60 - - uid: 6585 - components: - - type: Transform - pos: 4.5,13.5 - parent: 60 - uid: 6712 components: - type: Transform @@ -130577,6 +130541,11 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,-33.5 parent: 60 + - uid: 7196 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 60 - uid: 7239 components: - type: Transform @@ -130598,6 +130567,16 @@ entities: - type: Transform pos: -58.5,-16.5 parent: 60 + - uid: 7620 + components: + - type: Transform + pos: 43.5,-0.5 + parent: 60 + - uid: 7702 + components: + - type: Transform + pos: 43.5,0.5 + parent: 60 - uid: 7787 components: - type: Transform @@ -130663,6 +130642,11 @@ entities: - type: Transform pos: 40.5,-10.5 parent: 60 + - uid: 9176 + components: + - type: Transform + pos: 40.5,4.5 + parent: 60 - uid: 9464 components: - type: Transform @@ -130734,6 +130718,11 @@ entities: - type: Transform pos: -51.5,-5.5 parent: 60 + - uid: 10620 + components: + - type: Transform + pos: 49.5,18.5 + parent: 60 - uid: 11103 components: - type: Transform @@ -130754,11 +130743,6 @@ entities: - type: Transform pos: -54.5,-5.5 parent: 60 - - uid: 11151 - components: - - type: Transform - pos: 50.5,19.5 - parent: 60 - uid: 11482 components: - type: Transform @@ -130769,11 +130753,6 @@ entities: - type: Transform pos: -3.5,-51.5 parent: 60 - - uid: 11724 - components: - - type: Transform - pos: 44.5,0.5 - parent: 60 - uid: 11811 components: - type: Transform @@ -130784,11 +130763,6 @@ entities: - type: Transform pos: 38.5,-10.5 parent: 60 - - uid: 12195 - components: - - type: Transform - pos: 42.5,-0.5 - parent: 60 - uid: 12577 components: - type: Transform @@ -130814,6 +130788,11 @@ entities: - type: Transform pos: 44.5,13.5 parent: 60 + - uid: 13114 + components: + - type: Transform + pos: 41.5,4.5 + parent: 60 - uid: 13146 components: - type: Transform @@ -130854,16 +130833,28 @@ entities: - type: Transform pos: 47.5,3.5 parent: 60 - - uid: 13477 - components: - - type: Transform - pos: 47.5,17.5 - parent: 60 - uid: 13498 components: - type: Transform pos: 48.5,9.5 parent: 60 + - uid: 13620 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 60 + - uid: 13688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,15.5 + parent: 60 + - uid: 13689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,15.5 + parent: 60 - uid: 13691 components: - type: Transform @@ -131272,21 +131263,21 @@ entities: - type: Transform pos: 23.5,-40.5 parent: 60 + - uid: 4491 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 60 + - uid: 4954 + components: + - type: Transform + pos: 20.5,-37.5 + parent: 60 - uid: 7493 components: - type: Transform pos: 19.5,-29.5 parent: 60 - - uid: 13562 - components: - - type: Transform - pos: 19.5,-38.5 - parent: 60 - - uid: 13567 - components: - - type: Transform - pos: 19.5,-37.5 - parent: 60 - uid: 14120 components: - type: Transform @@ -131312,11 +131303,6 @@ entities: - type: Transform pos: 19.5,-30.5 parent: 60 - - uid: 16133 - components: - - type: Transform - pos: 16.5,-38.5 - parent: 60 - uid: 17818 components: - type: Transform @@ -131374,10 +131360,10 @@ entities: - type: Transform pos: -63.5,-11.5 parent: 60 - - uid: 5833 + - uid: 5420 components: - type: Transform - pos: 37.5,-17.5 + pos: 37.5,-20.5 parent: 60 - uid: 6668 components: @@ -131404,11 +131390,6 @@ entities: - type: Transform pos: 34.5,-9.5 parent: 60 - - uid: 12355 - components: - - type: Transform - pos: 37.5,-16.5 - parent: 60 - uid: 12357 components: - type: Transform @@ -131424,6 +131405,26 @@ entities: - type: Transform pos: 38.5,-14.5 parent: 60 + - uid: 12560 + components: + - type: Transform + pos: 36.5,-18.5 + parent: 60 + - uid: 13251 + components: + - type: Transform + pos: 37.5,-18.5 + parent: 60 + - uid: 13680 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 60 + - uid: 13681 + components: + - type: Transform + pos: 37.5,-16.5 + parent: 60 - uid: 18831 components: - type: Transform @@ -131863,6 +131864,16 @@ entities: - type: Transform pos: 47.5,-12.5 parent: 60 + - uid: 13661 + components: + - type: Transform + pos: 3.5,12.5 + parent: 60 + - uid: 13685 + components: + - type: Transform + pos: 4.5,12.5 + parent: 60 - uid: 13951 components: - type: Transform @@ -132338,6 +132349,11 @@ entities: - type: Transform pos: 21.5,-18.5 parent: 60 + - uid: 6551 + components: + - type: Transform + pos: 17.5,-38.5 + parent: 60 - uid: 6843 components: - type: Transform @@ -133020,16 +133036,16 @@ entities: - type: Transform pos: 38.5,15.5 parent: 60 - - uid: 12021 - components: - - type: Transform - pos: 50.5,15.5 - parent: 60 - uid: 12301 components: - type: Transform pos: 31.5,-12.5 parent: 60 + - uid: 13682 + components: + - type: Transform + pos: 50.5,19.5 + parent: 60 - uid: 14516 components: - type: Transform @@ -133059,6 +133075,12 @@ entities: - type: Transform pos: 19.5,14.5 parent: 60 + - uid: 13726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-20.5 + parent: 60 - proto: ToiletEmpty entities: - uid: 4323 @@ -133077,12 +133099,6 @@ entities: - type: Transform pos: 58.5,-44.5 parent: 60 - - uid: 13687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-18.5 - parent: 60 - proto: ToolboxArtistic entities: - uid: 21788 @@ -133107,11 +133123,6 @@ entities: - type: Transform pos: 61.51187,-30.58106 parent: 60 - - uid: 6601 - components: - - type: Transform - pos: 4.5497127,15.661254 - parent: 60 - uid: 9614 components: - type: Transform @@ -133122,6 +133133,11 @@ entities: - type: Transform pos: 14.490113,-48.331394 parent: 60 + - uid: 13684 + components: + - type: Transform + pos: 5.4793596,13.51398 + parent: 60 - uid: 19151 components: - type: Transform @@ -133303,16 +133319,16 @@ entities: - type: Transform pos: -31.45853,-30.433151 parent: 60 - - uid: 6602 - components: - - type: Transform - pos: 4.775793,13.661089 - parent: 60 - uid: 11681 components: - type: Transform pos: -3.587097,-51.43958 parent: 60 + - uid: 17298 + components: + - type: Transform + pos: 7.651234,15.67023 + parent: 60 - proto: TubaInstrument entities: - uid: 17380 @@ -133593,10 +133609,10 @@ entities: parent: 60 - proto: VendingMachineAtmosDrobe entities: - - uid: 2244 + - uid: 13605 components: - type: Transform - pos: -22.5,28.5 + pos: -29.5,32.5 parent: 60 - proto: VendingMachineBooze entities: @@ -133636,11 +133652,6 @@ entities: - type: Transform pos: -17.5,-53.5 parent: 60 - - uid: 6140 - components: - - type: Transform - pos: 4.5,11.5 - parent: 60 - uid: 18522 components: - type: Transform @@ -133848,10 +133859,10 @@ entities: parent: 60 - proto: VendingMachineEngivend entities: - - uid: 6550 + - uid: 12559 components: - type: Transform - pos: 7.5,15.5 + pos: -4.5,21.5 parent: 60 - proto: VendingMachineGames entities: @@ -134061,13 +134072,6 @@ entities: - type: Transform pos: 52.5,-31.5 parent: 60 -- proto: VendingMachineWallMedical - entities: - - uid: 9176 - components: - - type: Transform - pos: 33.5,-8.5 - parent: 60 - proto: VendingMachineWinter entities: - uid: 9009 @@ -134077,16 +134081,16 @@ entities: parent: 60 - proto: VendingMachineYouTool entities: - - uid: 6551 - components: - - type: Transform - pos: 6.5,15.5 - parent: 60 - uid: 6624 components: - type: Transform pos: 12.5,15.5 parent: 60 + - uid: 12887 + components: + - type: Transform + pos: -4.5,20.5 + parent: 60 - proto: ViolinInstrument entities: - uid: 7241 @@ -134117,6 +134121,18 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,19.5 parent: 60 + - uid: 13158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-11.5 + parent: 60 + - uid: 13718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-11.5 + parent: 60 - proto: WallmountTelevision entities: - uid: 8148 @@ -134991,23 +135007,13 @@ entities: - uid: 542 components: - type: Transform - pos: -13.5,-19.5 + pos: -11.5,-12.5 parent: 60 - uid: 543 components: - type: Transform pos: -13.5,-17.5 parent: 60 - - uid: 545 - components: - - type: Transform - pos: -13.5,-16.5 - parent: 60 - - uid: 547 - components: - - type: Transform - pos: -13.5,-15.5 - parent: 60 - uid: 550 components: - type: Transform @@ -135287,11 +135293,6 @@ entities: - type: Transform pos: -13.5,-20.5 parent: 60 - - uid: 769 - components: - - type: Transform - pos: -13.5,-11.5 - parent: 60 - uid: 770 components: - type: Transform @@ -135372,16 +135373,6 @@ entities: - type: Transform pos: 5.5,11.5 parent: 60 - - uid: 1292 - components: - - type: Transform - pos: 4.5,12.5 - parent: 60 - - uid: 1293 - components: - - type: Transform - pos: 3.5,12.5 - parent: 60 - uid: 1294 components: - type: Transform @@ -135874,6 +135865,16 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-25.5 parent: 60 + - uid: 2508 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 60 + - uid: 2553 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 60 - uid: 2587 components: - type: Transform @@ -135889,6 +135890,11 @@ entities: - type: Transform pos: 36.5,-15.5 parent: 60 + - uid: 2629 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 60 - uid: 2655 components: - type: Transform @@ -135905,6 +135911,11 @@ entities: - type: Transform pos: 42.5,-29.5 parent: 60 + - uid: 2672 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 60 - uid: 2678 components: - type: Transform @@ -135973,6 +135984,11 @@ entities: rot: 3.141592653589793 rad pos: 37.5,-33.5 parent: 60 + - uid: 2777 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 60 - uid: 2817 components: - type: Transform @@ -136015,6 +136031,11 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-33.5 parent: 60 + - uid: 2856 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 60 - uid: 2866 components: - type: Transform @@ -139259,6 +139280,11 @@ entities: - type: Transform pos: -9.5,-45.5 parent: 60 + - uid: 8153 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 60 - uid: 8158 components: - type: Transform @@ -140415,11 +140441,6 @@ entities: - type: Transform pos: 8.5,-34.5 parent: 60 - - uid: 13602 - components: - - type: Transform - pos: -11.5,-17.5 - parent: 60 - uid: 13614 components: - type: Transform @@ -140435,56 +140456,16 @@ entities: - type: Transform pos: -9.5,-19.5 parent: 60 - - uid: 13618 - components: - - type: Transform - pos: -10.5,-19.5 - parent: 60 - - uid: 13619 - components: - - type: Transform - pos: -11.5,-19.5 - parent: 60 - - uid: 13623 - components: - - type: Transform - pos: -11.5,-15.5 - parent: 60 - - uid: 13633 - components: - - type: Transform - pos: -11.5,-10.5 - parent: 60 - - uid: 13635 - components: - - type: Transform - pos: -11.5,-11.5 - parent: 60 - uid: 13672 components: - type: Transform pos: -6.5,-10.5 parent: 60 - - uid: 13717 - components: - - type: Transform - pos: -9.5,-17.5 - parent: 60 - uid: 13719 components: - type: Transform pos: -4.5,-16.5 parent: 60 - - uid: 13726 - components: - - type: Transform - pos: -9.5,-18.5 - parent: 60 - - uid: 13728 - components: - - type: Transform - pos: -9.5,-16.5 - parent: 60 - uid: 13740 components: - type: Transform @@ -140500,11 +140481,6 @@ entities: - type: Transform pos: -6.5,-14.5 parent: 60 - - uid: 13750 - components: - - type: Transform - pos: -11.5,-16.5 - parent: 60 - uid: 13790 components: - type: Transform @@ -141665,6 +141641,11 @@ entities: - type: Transform pos: -16.5,51.5 parent: 60 + - uid: 15693 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 60 - uid: 15716 components: - type: Transform @@ -144420,11 +144401,6 @@ entities: - type: Transform pos: -24.5,6.5 parent: 60 - - uid: 367 - components: - - type: Transform - pos: 43.5,0.5 - parent: 60 - uid: 411 components: - type: Transform @@ -144932,6 +144908,11 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,-38.5 parent: 60 + - uid: 2165 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 60 - uid: 2168 components: - type: Transform @@ -145174,11 +145155,6 @@ entities: - type: Transform pos: 35.5,-38.5 parent: 60 - - uid: 2399 - components: - - type: Transform - pos: 40.5,-36.5 - parent: 60 - uid: 2401 components: - type: Transform @@ -145226,11 +145202,6 @@ entities: - type: Transform pos: 40.5,-37.5 parent: 60 - - uid: 2672 - components: - - type: Transform - pos: 40.5,-35.5 - parent: 60 - uid: 2673 components: - type: Transform @@ -145327,11 +145298,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-37.5 parent: 60 - - uid: 2856 - components: - - type: Transform - pos: 41.5,-35.5 - parent: 60 - uid: 2858 components: - type: Transform @@ -145542,12 +145508,6 @@ entities: - type: Transform pos: 33.5,-34.5 parent: 60 - - uid: 3172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-36.5 - parent: 60 - uid: 3173 components: - type: Transform @@ -145566,6 +145526,11 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-21.5 parent: 60 + - uid: 3210 + components: + - type: Transform + pos: -11.5,-17.5 + parent: 60 - uid: 3227 components: - type: Transform @@ -146205,11 +146170,6 @@ entities: - type: Transform pos: -36.5,-33.5 parent: 60 - - uid: 4532 - components: - - type: Transform - pos: 36.5,-19.5 - parent: 60 - uid: 4569 components: - type: Transform @@ -146361,6 +146321,16 @@ entities: - type: Transform pos: 47.5,10.5 parent: 60 + - uid: 5415 + components: + - type: Transform + pos: 51.5,19.5 + parent: 60 + - uid: 5417 + components: + - type: Transform + pos: 49.5,19.5 + parent: 60 - uid: 5435 components: - type: Transform @@ -146454,6 +146424,11 @@ entities: - type: Transform pos: 45.5,-2.5 parent: 60 + - uid: 6142 + components: + - type: Transform + pos: 42.5,-37.5 + parent: 60 - uid: 6225 components: - type: Transform @@ -146561,11 +146536,6 @@ entities: - type: Transform pos: -1.5,13.5 parent: 60 - - uid: 6606 - components: - - type: Transform - pos: 2.5,13.5 - parent: 60 - uid: 6619 components: - type: Transform @@ -146651,11 +146621,6 @@ entities: - type: Transform pos: 11.5,-25.5 parent: 60 - - uid: 7172 - components: - - type: Transform - pos: 43.5,1.5 - parent: 60 - uid: 7220 components: - type: Transform @@ -146683,11 +146648,6 @@ entities: - type: Transform pos: 17.5,-39.5 parent: 60 - - uid: 7620 - components: - - type: Transform - pos: 36.5,-17.5 - parent: 60 - uid: 7624 components: - type: Transform @@ -146708,11 +146668,6 @@ entities: - type: Transform pos: 61.5,-21.5 parent: 60 - - uid: 7675 - components: - - type: Transform - pos: 16.5,-39.5 - parent: 60 - uid: 7689 components: - type: Transform @@ -147608,16 +147563,6 @@ entities: - type: Transform pos: 36.5,3.5 parent: 60 - - uid: 13114 - components: - - type: Transform - pos: 43.5,-0.5 - parent: 60 - - uid: 13137 - components: - - type: Transform - pos: 44.5,1.5 - parent: 60 - uid: 13141 components: - type: Transform @@ -147668,6 +147613,27 @@ entities: - type: Transform pos: 39.5,-1.5 parent: 60 + - uid: 13743 + components: + - type: Transform + pos: 41.5,-36.5 + parent: 60 + - uid: 13745 + components: + - type: Transform + pos: 40.5,-36.5 + parent: 60 + - uid: 13749 + components: + - type: Transform + pos: 42.5,-36.5 + parent: 60 + - uid: 13752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 60 - uid: 13828 components: - type: Transform @@ -147903,11 +147869,6 @@ entities: - type: Transform pos: -32.5,33.5 parent: 60 - - uid: 15660 - components: - - type: Transform - pos: 43.5,-1.5 - parent: 60 - uid: 16167 components: - type: Transform @@ -148048,6 +148009,11 @@ entities: - type: Transform pos: 28.5,-37.5 parent: 60 + - uid: 18671 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 60 - uid: 19197 components: - type: Transform @@ -149330,20 +149296,15 @@ entities: - type: Transform pos: -29.5,-36.5 parent: 60 - - uid: 6999 - components: - - type: Transform - pos: 42.5,-36.5 - parent: 60 - uid: 7198 components: - type: Transform pos: 5.5,-44.5 parent: 60 - - uid: 7720 + - uid: 13609 components: - type: Transform - pos: -10.5,-14.5 + pos: 41.5,-37.5 parent: 60 - proto: WaterTankHighCapacity entities: @@ -149539,11 +149500,6 @@ entities: - type: Transform pos: -32.344437,-34.56709 parent: 60 - - uid: 7164 - components: - - type: Transform - pos: 3.713293,13.629839 - parent: 60 - proto: WelderIndustrial entities: - uid: 4097 @@ -149617,16 +149573,6 @@ entities: - type: Transform pos: -28.5,-36.5 parent: 60 - - uid: 6559 - components: - - type: Transform - pos: 7.5,12.5 - parent: 60 - - uid: 6560 - components: - - type: Transform - pos: 6.5,12.5 - parent: 60 - uid: 8738 components: - type: Transform @@ -149637,6 +149583,11 @@ entities: - type: Transform pos: -30.5,14.5 parent: 60 + - uid: 15159 + components: + - type: Transform + pos: -8.5,29.5 + parent: 60 - uid: 15202 components: - type: Transform @@ -149881,12 +149832,6 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,-46.5 parent: 60 - - uid: 19883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-15.5 - parent: 60 - proto: WindoorSecureArmoryLocked entities: - uid: 1466 @@ -149944,16 +149889,6 @@ entities: parent: 60 - proto: WindoorSecureCargoLocked entities: - - uid: 2179 - components: - - type: Transform - pos: 41.5,4.5 - parent: 60 - - uid: 7702 - components: - - type: Transform - pos: 50.5,19.5 - parent: 60 - uid: 13104 components: - type: Transform @@ -150048,6 +149983,16 @@ entities: parent: 60 - proto: WindoorSecureEngineeringLocked entities: + - uid: 541 + components: + - type: Transform + pos: 4.5,12.5 + parent: 60 + - uid: 13660 + components: + - type: Transform + pos: 3.5,12.5 + parent: 60 - uid: 13804 components: - type: Transform @@ -150085,6 +150030,18 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-17.5 parent: 60 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 6560 + components: + - type: Transform + pos: 40.5,4.5 + parent: 60 + - uid: 13602 + components: + - type: Transform + pos: 41.5,4.5 + parent: 60 - proto: WindoorSecureScienceLocked entities: - uid: 7057 @@ -150325,6 +150282,11 @@ entities: - type: Transform pos: -57.5,18.5 parent: 60 + - uid: 13671 + components: + - type: Transform + pos: 50.5,15.5 + parent: 60 - uid: 13751 components: - type: Transform @@ -150642,23 +150604,6 @@ entities: parent: 60 - proto: WindowReinforcedDirectional entities: - - uid: 399 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 60 - - uid: 400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 60 - - uid: 402 - components: - - type: Transform - pos: -4.5,-18.5 - parent: 60 - uid: 1345 components: - type: Transform @@ -151112,12 +151057,6 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-15.5 parent: 60 - - uid: 8565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-13.5 - parent: 60 - uid: 9023 components: - type: Transform @@ -151157,6 +151096,12 @@ entities: - type: Transform pos: 46.5,-17.5 parent: 60 + - uid: 11753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 60 - uid: 12599 components: - type: Transform @@ -151167,186 +151112,10 @@ entities: - type: Transform pos: -47.5,15.5 parent: 60 - - uid: 13549 + - uid: 13619 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-19.5 - parent: 60 - - uid: 13598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-17.5 - parent: 60 - - uid: 13600 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-10.5 - parent: 60 - - uid: 13604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-18.5 - parent: 60 - - uid: 13605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-14.5 - parent: 60 - - uid: 13606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-13.5 - parent: 60 - - uid: 13608 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 60 - - uid: 13609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 60 - - uid: 13611 - components: - - type: Transform - pos: -11.5,-18.5 - parent: 60 - - uid: 13624 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-10.5 - parent: 60 - - uid: 13625 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-10.5 - parent: 60 - - uid: 13626 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-10.5 - parent: 60 - - uid: 13632 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-10.5 - parent: 60 - - uid: 13634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 60 - - uid: 13637 - components: - - type: Transform - pos: -7.5,-10.5 - parent: 60 - - uid: 13643 - components: - - type: Transform - pos: -8.5,-14.5 - parent: 60 - - uid: 13656 - components: - - type: Transform - pos: -9.5,-10.5 - parent: 60 - - uid: 13659 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-14.5 - parent: 60 - - uid: 13660 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-13.5 - parent: 60 - - uid: 13661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 60 - - uid: 13662 - components: - - type: Transform - pos: -8.5,-10.5 - parent: 60 - - uid: 13663 - components: - - type: Transform - pos: -10.5,-10.5 - parent: 60 - - uid: 13666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 60 - - uid: 13681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-14.5 - parent: 60 - - uid: 13685 - components: - - type: Transform - pos: -8.5,-16.5 - parent: 60 - - uid: 13689 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-16.5 - parent: 60 - - uid: 13690 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-16.5 - parent: 60 - - uid: 13724 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-14.5 - parent: 60 - - uid: 13745 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 60 - - uid: 13754 - components: - - type: Transform - pos: -7.5,-16.5 - parent: 60 - - uid: 13763 - components: - - type: Transform - pos: -7.5,-14.5 - parent: 60 - - uid: 13785 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-14.5 + pos: -11.5,-16.5 parent: 60 - uid: 13801 components: @@ -151358,12 +151127,6 @@ entities: - type: Transform pos: -4.5,17.5 parent: 60 - - uid: 13881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-18.5 - parent: 60 - uid: 14114 components: - type: Transform @@ -151398,23 +151161,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,16.5 parent: 60 - - uid: 15442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-11.5 - parent: 60 - - uid: 15444 - components: - - type: Transform - pos: -10.5,-18.5 - parent: 60 - - uid: 15445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-15.5 - parent: 60 - uid: 15728 components: - type: Transform @@ -151466,12 +151212,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,2.5 parent: 60 - - uid: 16996 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-11.5 - parent: 60 - uid: 17843 components: - type: Transform @@ -151525,18 +151265,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-6.5 parent: 60 - - uid: 18671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-16.5 - parent: 60 - - uid: 18767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-16.5 - parent: 60 - uid: 19907 components: - type: Transform @@ -151560,46 +151288,11 @@ entities: - type: Transform pos: -47.5,5.5 parent: 60 - - uid: 21144 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-12.5 - parent: 60 - - uid: 21145 - components: - - type: Transform - pos: -11.5,-14.5 - parent: 60 - - uid: 21146 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-18.5 - parent: 60 - - uid: 21147 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-12.5 - parent: 60 - - uid: 21148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-13.5 - parent: 60 - uid: 21152 components: - type: Transform pos: -46.5,5.5 parent: 60 - - uid: 21153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-10.5 - parent: 60 - uid: 21214 components: - type: Transform @@ -154382,35 +154075,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,2.5 parent: 60 - - uid: 24177 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-17.5 - parent: 60 - - uid: 24178 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-19.5 - parent: 60 - - uid: 24179 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 60 - - uid: 24181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-17.5 - parent: 60 - - uid: 24182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-19.5 - parent: 60 - proto: Wirecutter entities: - uid: 19191 diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index c9cd7c1d0a..f717460fed 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -89806,6 +89806,13 @@ entities: - type: Transform pos: -19.46565,10.906514 parent: 13329 +- proto: CleanerDispenser + entities: + - uid: 20449 + components: + - type: Transform + pos: 6.5,14.5 + parent: 13329 - proto: ClosetBombFilled entities: - uid: 9440 diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index 35a1740237..cce7a0d7b3 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -77,7 +77,7 @@ entities: version: 6 0,0: ind: 0,0 - tiles: XQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAACXQAAAAAAHwAAAAABXQAAAAAAHwAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACHwAAAAADXQAAAAACHwAAAAABXQAAAAACHwAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABXQAAAAADHwAAAAABXQAAAAADHwAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAXQAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAADXQAAAAACfgAAAAAAXQAAAAABHwAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAAAHwAAAAADXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAeQAAAAAAeQAAAAAAHwAAAAADHwAAAAAAegAAAAACfgAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAD + tiles: XQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAACXQAAAAAAHwAAAAABXQAAAAAAHwAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACHwAAAAADXQAAAAACHwAAAAABXQAAAAACHwAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABXQAAAAADHwAAAAABXQAAAAADHwAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAXQAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAADXQAAAAACfgAAAAAAXQAAAAABHwAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAAAHwAAAAADXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAeQAAAAAAHwAAAAAAcAAAAAAAHwAAAAAAegAAAAACfgAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAD version: 6 -1,-1: ind: -1,-1 @@ -85,11 +85,11 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: fgAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAXQAAAAACXQAAAAABXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAADMwAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABHwAAAAADfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADegAAAAABegAAAAACegAAAAABJgAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAHwAAAAACXQAAAAADHwAAAAACHwAAAAAAHwAAAAACegAAAAABegAAAAADegAAAAABJgAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABHwAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAABegAAAAADegAAAAABegAAAAAAJgAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAegAAAAACegAAAAAAegAAAAABMwAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADHwAAAAABHwAAAAADfgAAAAAAegAAAAAAegAAAAADegAAAAABMwAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADDgAAAAADDgAAAAACDgAAAAACMwAAAAAAJgAAAAABMwAAAAAAMwAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAXQAAAAACXQAAAAABXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAADMwAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABHwAAAAADfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADegAAAAABegAAAAACegAAAAABJgAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAHwAAAAACXQAAAAADHwAAAAACHwAAAAAAHwAAAAACegAAAAABegAAAAADegAAAAABJgAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABHwAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAABegAAAAADegAAAAABegAAAAAAJgAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAegAAAAACegAAAAAAegAAAAABMwAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADHwAAAAABHwAAAAADfgAAAAAAegAAAAAAegAAAAADegAAAAABMwAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADDgAAAAADDgAAAAACDgAAAAACMwAAAAAAJgAAAAABMwAAAAAAMwAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAA version: 6 -2,0: ind: -2,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAYAAAAAAAYAAAAAABHwAAAAABHwAAAAADfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABYAAAAAAAYAAAAAADJAAAAAABHwAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAYAAAAAADYAAAAAADJAAAAAACHwAAAAABfgAAAAAAXQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAACYAAAAAADJAAAAAABHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAYAAAAAADYAAAAAABHwAAAAACHwAAAAABfgAAAAAAXQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACYAAAAAACYAAAAAABHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAYAAAAAACYAAAAAACHwAAAAABHwAAAAAAfgAAAAAAXQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAYAAAAAAAYAAAAAABHwAAAAABHwAAAAADfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABYAAAAAAAYAAAAAADJAAAAAABHwAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAYAAAAAADYAAAAAADJAAAAAACHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAACYAAAAAADJAAAAAABHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAYAAAAAADYAAAAAABHwAAAAACHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACYAAAAAACYAAAAAABHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAYAAAAAACYAAAAAACHwAAAAABHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 0,1: ind: 0,1 @@ -201,11 +201,11 @@ entities: version: 6 -1,-2: ind: -1,-2 - tiles: HwAAAAAAfgAAAAAAXQAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACHwAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAABfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAA + tiles: HwAAAAAAfgAAAAAAXQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADHwAAAAAAfgAAAAAATQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACHwAAAAAAfgAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAABfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAACcAAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAADcAAAAAACeQAAAAACcAAAAAADDAAAAAADcAAAAAACcAAAAAACcAAAAAAAfgAAAAAAcAAAAAAAeQAAAAABcAAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAAADAAAAAACcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAcAAAAAACeQAAAAABcAAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAADeQAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAABfgAAAAAAcAAAAAAAeQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAABcAAAAAACDAAAAAABcAAAAAADcAAAAAABcAAAAAAAfgAAAAAAcAAAAAABeQAAAAADcAAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACDAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAABeQAAAAAAcAAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACeQAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAACcAAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAABcAAAAAAAeQAAAAADcAAAAAACfgAAAAAAeQAAAAABeQAAAAADeQAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAACcAAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAADcAAAAAACeQAAAAACcAAAAAADDAAAAAADcAAAAAACcAAAAAACcAAAAAAAfgAAAAAAcAAAAAAAeQAAAAABcAAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAAADAAAAAACcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAcAAAAAACeQAAAAABcAAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAADeQAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAABfgAAAAAAcAAAAAAAeQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAABcAAAAAACDAAAAAABcAAAAAADcAAAAAABcAAAAAAAfgAAAAAAcAAAAAABeQAAAAADcAAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACDAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAABeQAAAAAAcAAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACeQAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAACcAAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAABcAAAAAAAeQAAAAADcAAAAAACfgAAAAAAeQAAAAABeQAAAAADeQAAAAAA version: 6 -3,-2: ind: -3,-2 @@ -473,7 +473,7 @@ entities: 1256: 23,25 1257: 21,25 1730: 31,21 - 2648: -31,-10 + 2647: -31,-10 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -582,35 +582,35 @@ entities: 2392: 7,35 2425: -4,-29 2426: -33,10 - 2427: -26,13 - 2428: -14,5 - 2429: 6,6 - 2430: -6,-9 - 2445: -43,19 - 2446: -41,19 - 2647: -33,-12 - 2666: -28,-14 - 2667: -23,-15 - 2668: -19,-23 - 2741: -20,-5 - 2840: 18,16 - 2841: 20,16 - 2853: 12,14 - 2856: 14,-18 - 2898: -6,-48 - 2899: -6,-49 - 2900: -6,-50 - 2901: -6,-51 - 2915: -2,-44 - 2916: -3,-44 - 2917: -1,-44 - 2918: 1,-44 - 2919: 2,-44 - 2920: 3,-44 - 2921: 4,-44 - 3033: 4,-51 - 3037: -4,-48 - 3038: -3,-48 + 2427: -14,5 + 2428: 6,6 + 2429: -6,-9 + 2444: -43,19 + 2445: -41,19 + 2646: -33,-12 + 2665: -28,-14 + 2666: -23,-15 + 2667: -19,-23 + 2740: -20,-5 + 2794: 18,16 + 2795: 20,16 + 2797: 14,-18 + 2839: -6,-48 + 2840: -6,-49 + 2841: -6,-50 + 2842: -6,-51 + 2856: -2,-44 + 2857: -3,-44 + 2858: -1,-44 + 2859: 1,-44 + 2860: 2,-44 + 2861: 3,-44 + 2862: 4,-44 + 2974: 4,-51 + 2978: -4,-48 + 2979: -3,-48 + 3010: 12,14 + 3015: 2,-51 - node: color: '#FFFFFFFF' id: BotGreyscale @@ -629,9 +629,9 @@ entities: 2249: 33,20 2250: 33,19 2264: 40,14 - 2447: -44,19 - 2448: -42,19 - 2449: -40,19 + 2446: -44,19 + 2447: -42,19 + 2448: -40,19 - node: color: '#FFFFFFFF' id: BotRight @@ -649,13 +649,13 @@ entities: id: Box decals: 2265: 39,9 - 2896: -14,-38 - 2897: -12,-38 - 3031: -5,-54 - 3032: -4,-54 - 3034: -4,-50 - 3035: 4,-49 - 3036: 4,-50 + 2837: -14,-38 + 2838: -12,-38 + 2972: -5,-54 + 2973: -4,-54 + 2975: -4,-50 + 2976: 4,-49 + 2977: 4,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkBox @@ -986,11 +986,11 @@ entities: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 2536: -21,-15 - 2546: -13,-15 - 2602: -13,-19 - 2630: -29,-16 - 2675: -12,-9 + 2535: -21,-15 + 2545: -13,-15 + 2601: -13,-19 + 2629: -29,-16 + 2674: -12,-9 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe @@ -1000,20 +1000,20 @@ entities: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 2433: -40,19 - 2973: -25,-45 - 2974: -26,-43 - 2975: -20,-45 - 2983: -14,-46 - 2985: -20,-49 - 2992: -21,-57 - 3017: -1,-42 + 2432: -40,19 + 2914: -25,-45 + 2915: -26,-43 + 2916: -20,-45 + 2924: -14,-46 + 2926: -20,-49 + 2933: -21,-57 + 2958: -1,-42 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 2535: -21,-15 - 2581: -13,-19 + 2534: -21,-15 + 2580: -13,-19 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw @@ -1023,11 +1023,11 @@ entities: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 2537: -23,-15 - 2545: -15,-15 - 2603: -19,-19 - 2631: -31,-16 - 2674: -16,-9 + 2536: -23,-15 + 2544: -15,-15 + 2602: -19,-19 + 2630: -31,-16 + 2673: -16,-9 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw @@ -1039,30 +1039,30 @@ entities: decals: 2227: 5,-24 2232: 9,-23 - 2437: -44,19 - 2972: -23,-45 - 2981: -16,-45 - 2982: -11,-46 - 2987: -16,-49 - 2995: -15,-57 - 3006: -10,-42 - 3015: 3,-40 - 3016: 1,-42 + 2436: -44,19 + 2913: -23,-45 + 2922: -16,-45 + 2923: -11,-46 + 2928: -16,-49 + 2936: -15,-57 + 2947: -10,-42 + 2956: 3,-40 + 2957: 1,-42 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 2534: -23,-15 - 2574: -19,-19 + 2533: -23,-15 + 2573: -19,-19 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 2533: -21,-24 - 2548: -13,-17 - 2600: -13,-23 - 2639: -29,-24 - 2677: -12,-13 + 2532: -21,-24 + 2547: -13,-17 + 2599: -13,-23 + 2638: -29,-24 + 2676: -12,-13 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe @@ -1073,31 +1073,31 @@ entities: id: BrickTileWhiteCornerSe decals: 1642: 7,-30 - 2440: -40,17 - 2970: -26,-41 - 2986: -20,-47 - 2988: -19,-51 - 2994: -21,-55 - 3009: -9,-39 - 3010: -5,-39 - 3011: -4,-38 - 3013: 0,-38 + 2439: -40,17 + 2911: -26,-41 + 2927: -20,-47 + 2929: -19,-51 + 2935: -21,-55 + 2950: -9,-39 + 2951: -5,-39 + 2952: -4,-38 + 2954: 0,-38 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 2530: -21,-24 - 2580: -13,-23 + 2529: -21,-24 + 2579: -13,-23 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: 2180: -37,0 - 2532: -23,-24 - 2549: -15,-17 - 2601: -19,-23 - 2638: -31,-24 - 2676: -16,-13 + 2531: -23,-24 + 2548: -15,-17 + 2600: -19,-23 + 2637: -31,-24 + 2675: -16,-13 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw @@ -1108,25 +1108,25 @@ entities: id: BrickTileWhiteCornerSw decals: 1641: 5,-30 - 2438: -44,17 - 2984: -16,-47 - 2989: -17,-51 - 2993: -15,-55 - 3007: -11,-39 - 3008: -7,-39 - 3012: -2,-38 - 3014: 3,-38 + 2437: -44,17 + 2925: -16,-47 + 2930: -17,-51 + 2934: -15,-55 + 2948: -11,-39 + 2949: -7,-39 + 2953: -2,-38 + 2955: 3,-38 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: - 2531: -23,-24 - 2575: -19,-23 + 2530: -23,-24 + 2574: -19,-23 - node: color: '#EFB34196' id: BrickTileWhiteEndS decals: - 2980: -20,-40 + 2921: -20,-40 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe @@ -1137,7 +1137,7 @@ entities: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 2523: -21,-21 + 2522: -21,-21 - node: color: '#D381C996' id: BrickTileWhiteInnerNe @@ -1147,12 +1147,12 @@ entities: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 2976: -26,-45 + 2917: -26,-45 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 2495: -21,-21 + 2494: -21,-21 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw @@ -1163,7 +1163,7 @@ entities: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 2524: -19,-21 + 2523: -19,-21 - node: color: '#79150096' id: BrickTileWhiteInnerNw @@ -1179,12 +1179,12 @@ entities: id: BrickTileWhiteInnerNw decals: 2231: 9,-24 - 3029: 3,-42 + 2970: 3,-42 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNw decals: - 2496: -19,-21 + 2495: -19,-21 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe @@ -1195,7 +1195,7 @@ entities: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 2521: -21,-21 + 2520: -21,-21 - node: color: '#D381C996' id: BrickTileWhiteInnerSe @@ -1210,7 +1210,7 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe decals: - 2493: -21,-21 + 2492: -21,-21 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw @@ -1221,7 +1221,7 @@ entities: color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 2522: -19,-21 + 2521: -19,-21 - node: color: '#79150096' id: BrickTileWhiteInnerSw @@ -1242,7 +1242,7 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteInnerSw decals: - 2494: -19,-21 + 2493: -19,-21 - node: color: '#334E6DC8' id: BrickTileWhiteLineE @@ -1262,23 +1262,23 @@ entities: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 2513: -21,-17 - 2514: -21,-18 - 2515: -21,-19 - 2516: -21,-20 - 2517: -21,-22 - 2518: -21,-23 - 2547: -13,-16 - 2589: -13,-22 - 2590: -13,-21 - 2591: -13,-20 - 2625: -29,-22 - 2626: -29,-21 - 2627: -29,-20 - 2628: -29,-19 - 2629: -29,-18 - 2678: -12,-12 - 2679: -12,-10 + 2512: -21,-17 + 2513: -21,-18 + 2514: -21,-19 + 2515: -21,-20 + 2516: -21,-22 + 2517: -21,-23 + 2546: -13,-16 + 2588: -13,-22 + 2589: -13,-21 + 2590: -13,-20 + 2624: -29,-22 + 2625: -29,-21 + 2626: -29,-20 + 2627: -29,-19 + 2628: -29,-18 + 2677: -12,-12 + 2678: -12,-10 - node: color: '#D381C996' id: BrickTileWhiteLineE @@ -1301,22 +1301,22 @@ entities: 1635: 7,-26 2058: -4,-35 2059: -4,-34 - 2442: -40,18 - 2971: -26,-40 - 2977: -26,-44 + 2441: -40,18 + 2912: -26,-40 + 2918: -26,-44 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 2487: -21,-23 - 2488: -21,-22 - 2489: -21,-20 - 2490: -21,-19 - 2499: -21,-18 - 2500: -21,-17 - 2586: -13,-22 - 2587: -13,-21 - 2588: -13,-20 + 2486: -21,-23 + 2487: -21,-22 + 2488: -21,-20 + 2489: -21,-19 + 2498: -21,-18 + 2499: -21,-17 + 2585: -13,-22 + 2586: -13,-21 + 2587: -13,-20 - node: color: '#334E6DC8' id: BrickTileWhiteLineN @@ -1337,14 +1337,14 @@ entities: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 2525: -20,-21 - 2592: -15,-19 - 2593: -16,-19 - 2594: -17,-19 - 2595: -18,-19 - 2680: -13,-9 - 2681: -14,-9 - 2682: -15,-9 + 2524: -20,-21 + 2591: -15,-19 + 2592: -16,-19 + 2593: -17,-19 + 2594: -18,-19 + 2679: -13,-9 + 2680: -14,-9 + 2681: -15,-9 - node: color: '#D381C996' id: BrickTileWhiteLineN @@ -1365,20 +1365,20 @@ entities: 2233: 10,-23 2234: 11,-23 2235: 12,-23 - 2434: -41,19 - 2435: -42,19 - 2436: -43,19 - 2978: -22,-45 - 2979: -21,-45 - 3018: -9,-42 - 3019: -8,-42 - 3020: -6,-42 - 3021: -7,-42 - 3022: -5,-42 - 3023: -4,-42 - 3024: -3,-42 - 3025: -2,-42 - 3026: 2,-42 + 2433: -41,19 + 2434: -42,19 + 2435: -43,19 + 2919: -22,-45 + 2920: -21,-45 + 2959: -9,-42 + 2960: -8,-42 + 2961: -6,-42 + 2962: -7,-42 + 2963: -5,-42 + 2964: -4,-42 + 2965: -3,-42 + 2966: -2,-42 + 2967: 2,-42 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN @@ -1386,11 +1386,11 @@ entities: 1316: -26,39 1317: -28,39 1318: -27,39 - 2498: -20,-21 - 2582: -15,-19 - 2583: -16,-19 - 2584: -17,-19 - 2585: -18,-19 + 2497: -20,-21 + 2581: -15,-19 + 2582: -16,-19 + 2583: -17,-19 + 2584: -18,-19 - node: color: '#334E6DC8' id: BrickTileWhiteLineS @@ -1404,14 +1404,14 @@ entities: decals: 2178: -34,0 2179: -36,0 - 2526: -20,-21 - 2596: -17,-23 - 2597: -16,-23 - 2598: -15,-23 - 2599: -14,-23 - 2640: -30,-24 - 2684: -13,-13 - 2685: -15,-13 + 2525: -20,-21 + 2595: -17,-23 + 2596: -16,-23 + 2597: -15,-23 + 2598: -14,-23 + 2639: -30,-24 + 2683: -13,-13 + 2684: -15,-13 - node: color: '#79150096' id: BrickTileWhiteLineS @@ -1435,22 +1435,22 @@ entities: decals: 2063: -3,-35 2229: 8,-25 - 2439: -43,17 - 2441: -42,17 - 2990: -20,-51 - 2991: -16,-51 - 3027: -10,-39 - 3028: -6,-39 + 2438: -43,17 + 2440: -42,17 + 2931: -20,-51 + 2932: -16,-51 + 2968: -10,-39 + 2969: -6,-39 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: 1315: -27,39 - 2497: -20,-21 - 2576: -17,-23 - 2577: -16,-23 - 2578: -15,-23 - 2579: -14,-23 + 2496: -20,-21 + 2575: -17,-23 + 2576: -16,-23 + 2577: -15,-23 + 2578: -14,-23 - node: color: '#334E6DC8' id: BrickTileWhiteLineW @@ -1471,21 +1471,21 @@ entities: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 2507: -23,-22 - 2508: -23,-21 - 2509: -23,-20 - 2510: -23,-19 - 2511: -23,-18 - 2512: -23,-16 - 2519: -19,-22 - 2520: -19,-20 - 2632: -31,-17 - 2633: -31,-19 - 2634: -31,-20 - 2635: -31,-21 - 2636: -31,-22 - 2637: -31,-23 - 2683: -16,-12 + 2506: -23,-22 + 2507: -23,-21 + 2508: -23,-20 + 2509: -23,-19 + 2510: -23,-18 + 2511: -23,-16 + 2518: -19,-22 + 2519: -19,-20 + 2631: -31,-17 + 2632: -31,-19 + 2633: -31,-20 + 2634: -31,-21 + 2635: -31,-22 + 2636: -31,-23 + 2682: -16,-12 - node: color: '#79150096' id: BrickTileWhiteLineW @@ -1519,19 +1519,19 @@ entities: 1643: 9,-26 2060: -2,-35 2061: -2,-34 - 3030: 3,-41 + 2971: 3,-41 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 2491: -19,-22 - 2492: -19,-20 - 2501: -23,-22 - 2502: -23,-21 - 2503: -23,-20 - 2504: -23,-19 - 2505: -23,-18 - 2506: -23,-16 + 2490: -19,-22 + 2491: -19,-20 + 2500: -23,-22 + 2501: -23,-21 + 2502: -23,-20 + 2503: -23,-19 + 2504: -23,-18 + 2505: -23,-16 - node: color: '#FFFFFFFF' id: Busha1 @@ -1657,7 +1657,7 @@ entities: 875: -10.897953,23.01216 876: -7.147953,23.059034 878: -12.769052,22.88716 - 2772: -20,-22 + 2771: -20,-22 - node: color: '#FFFFFFFF' id: Bushi2 @@ -1737,60 +1737,45 @@ entities: id: CheckerNESW decals: 520: -11,-2 - 2550: -19,-17 - 2551: -19,-16 - 2552: -19,-15 - 2553: -18,-15 - 2554: -17,-15 - 2555: -17,-16 - 2556: -18,-16 - 2557: -18,-17 - 2558: -17,-17 - 2559: -18,-22 - 2560: -18,-21 - 2561: -18,-20 - 2562: -17,-20 - 2563: -17,-21 - 2564: -17,-22 - 2565: -16,-22 - 2566: -16,-21 - 2567: -16,-20 - 2568: -15,-20 - 2569: -15,-21 - 2570: -15,-22 - 2571: -14,-22 - 2572: -14,-21 - 2573: -14,-20 - 2610: -33,-20 - 2611: -34,-20 - 2612: -35,-20 - 2613: -35,-19 - 2614: -34,-19 - 2615: -33,-19 - 2616: -33,-18 - 2617: -34,-18 - 2618: -35,-18 - 2619: -35,-17 - 2620: -34,-17 - 2621: -33,-17 - 2622: -33,-16 - 2623: -34,-16 - 2624: -35,-16 - - node: - color: '#9FED5896' - id: CheckerNESW - decals: - 2787: -28,13 - 2788: -27,13 - 2789: -29,12 - 2790: -28,11 - 2791: -27,11 - 2792: -29,10 - 2793: -28,9 - 2794: -27,9 - 2795: -29,8 - 2796: -28,7 - 2797: -27,7 + 2549: -19,-17 + 2550: -19,-16 + 2551: -19,-15 + 2552: -18,-15 + 2553: -17,-15 + 2554: -17,-16 + 2555: -18,-16 + 2556: -18,-17 + 2557: -17,-17 + 2558: -18,-22 + 2559: -18,-21 + 2560: -18,-20 + 2561: -17,-20 + 2562: -17,-21 + 2563: -17,-22 + 2564: -16,-22 + 2565: -16,-21 + 2566: -16,-20 + 2567: -15,-20 + 2568: -15,-21 + 2569: -15,-22 + 2570: -14,-22 + 2571: -14,-21 + 2572: -14,-20 + 2609: -33,-20 + 2610: -34,-20 + 2611: -35,-20 + 2612: -35,-19 + 2613: -34,-19 + 2614: -33,-19 + 2615: -33,-18 + 2616: -34,-18 + 2617: -35,-18 + 2618: -35,-17 + 2619: -34,-17 + 2620: -33,-17 + 2621: -33,-16 + 2622: -34,-16 + 2623: -35,-16 - node: color: '#D4D4D496' id: CheckerNESW @@ -1801,27 +1786,21 @@ entities: id: CheckerNWSE decals: 516: -9,-4 - 2702: -32,-8 - 2703: -32,-7 - 2704: -32,-6 - 2705: -31,-6 - 2706: -30,-6 - 2707: -29,-6 - 2708: -28,-6 - 2709: -28,-7 - 2710: -28,-8 - 2711: -29,-8 - 2712: -29,-7 - 2713: -30,-7 - 2714: -30,-8 - 2715: -31,-8 - 2716: -31,-7 - - node: - color: '#724276FF' - id: CheckerNWSE - decals: - 2842: 19,13 - 2843: 18,13 + 2701: -32,-8 + 2702: -32,-7 + 2703: -32,-6 + 2704: -31,-6 + 2705: -30,-6 + 2706: -29,-6 + 2707: -28,-6 + 2708: -28,-7 + 2709: -28,-8 + 2710: -29,-8 + 2711: -29,-7 + 2712: -30,-7 + 2713: -30,-8 + 2714: -31,-8 + 2715: -31,-7 - node: color: '#79150096' id: CheckerNWSE @@ -1840,6 +1819,18 @@ entities: 31: -13,14 32: -14,13 33: -14,14 + - node: + color: '#9FED5896' + id: CheckerNWSE + decals: + 3016: -26,9 + 3017: -27,9 + 3018: -28,9 + 3019: -29,9 + 3020: -29,11 + 3021: -28,11 + 3022: -27,11 + 3023: -26,11 - node: color: '#A4610696' id: CheckerNWSE @@ -1853,6 +1844,13 @@ entities: 1010: 31,0 1011: 31,1 1012: 31,2 + - node: + color: '#D381C93E' + id: CheckerNWSE + decals: + 2991: 17,13 + 2992: 18,13 + 2993: 19,13 - node: color: '#EFB34196' id: CheckerNWSE @@ -1905,12 +1903,12 @@ entities: 1223: 26,9 1224: 26,10 2064: 4,-30 - 2764: -13,-8 - 2765: -12,-8 - 2868: 14,-24 - 2869: 14,-25 - 2870: 10,-31 - 2871: 11,-31 + 2763: -13,-8 + 2764: -12,-8 + 2809: 14,-24 + 2810: 14,-25 + 2811: 10,-31 + 2812: 11,-31 - node: color: '#FFFFFFFF' id: DiagonalCheckerAOverlay @@ -1932,21 +1930,21 @@ entities: 859: -28,-38 860: -23,-36 861: -25,-38 - 2472: -41,-11 - 2473: -42,-13 - 2474: -43,-17 - 2475: -42,-16 - 2476: -42,-17 - 2477: -41,-16 - 2478: -42,-12 - 2479: -41,-9 - 2480: -42,-8 - 2481: -42,-7 - 2482: -39,-7 - 2483: -39,-6 - 2484: -38,-7 - 2485: -38,-8 - 2486: -40,-7 + 2471: -41,-11 + 2472: -42,-13 + 2473: -43,-17 + 2474: -42,-16 + 2475: -42,-17 + 2476: -41,-16 + 2477: -42,-12 + 2478: -41,-9 + 2479: -42,-8 + 2480: -42,-7 + 2481: -39,-7 + 2482: -39,-6 + 2483: -38,-7 + 2484: -38,-8 + 2485: -40,-7 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -1990,10 +1988,10 @@ entities: 2186: -14,19 2187: -21,18 2190: -15,19 - 2450: -40,-8 - 2451: -41,-7 - 2452: -42,-14 - 2453: -42,-17 + 2449: -40,-8 + 2450: -41,-7 + 2451: -42,-14 + 2452: -42,-17 - node: color: '#FFFFFFFF' id: DirtLight @@ -2140,17 +2138,17 @@ entities: 2193: -31,16 2194: -31,17 2195: -7,18 - 2454: -41,-13 - 2455: -42,-10 - 2456: -42,-9 - 2457: -41,-8 - 2458: -40,-7 + 2453: -41,-13 + 2454: -42,-10 + 2455: -42,-9 + 2456: -41,-8 + 2457: -40,-7 + 2467: -42,-15 2468: -42,-15 - 2469: -42,-15 - 2470: -42,-14 - 2471: -42,-13 - 2742: -18,-9 - 2743: -23,-12 + 2469: -42,-14 + 2470: -42,-13 + 2741: -18,-9 + 2742: -23,-12 - node: color: '#FFFFFFFF' id: DirtMedium @@ -2206,20 +2204,20 @@ entities: 1697: -58,13 2076: -12,-31 2077: -12,-29 - 2459: -39,-8 - 2460: -42,-6 - 2461: -42,-7 - 2462: -41,-8 - 2463: -41,-12 - 2464: -42,-11 - 2465: -38,-8 - 2466: -38,-6 - 2467: -39,-7 + 2458: -39,-8 + 2459: -42,-6 + 2460: -42,-7 + 2461: -41,-8 + 2462: -41,-12 + 2463: -42,-11 + 2464: -38,-8 + 2465: -38,-6 + 2466: -39,-7 - node: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 2770: -20,-20 + 2769: -20,-20 - node: color: '#FFFFFFFF' id: Flowersbr1 @@ -2267,7 +2265,7 @@ entities: 64: -53,14 65: -55,22 823: -59.809006,-54.414917 - 2771: -20,-23 + 2770: -20,-23 - node: color: '#FFFFFFFF' id: Flowersy1 @@ -2307,7 +2305,7 @@ entities: 810: -63.26213,-53.76122 880: -10.293825,23.009468 881: -11.18445,22.978218 - 2769: -20,-19 + 2768: -20,-19 - node: color: '#4A8F37B1' id: FullTileOverlayGreyscale @@ -2326,17 +2324,17 @@ entities: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 2669: -14,-12 - 2670: -14,-11 - 2671: -14,-10 - 2672: -15,-11 - 2673: -13,-11 - 2717: -25,-14 - 2718: -26,-14 - 2739: -20,-5 - 2740: -18,-5 - 2744: -20,-7 - 2745: -18,-7 + 2668: -14,-12 + 2669: -14,-11 + 2670: -14,-10 + 2671: -15,-11 + 2672: -13,-11 + 2716: -25,-14 + 2717: -26,-14 + 2738: -20,-5 + 2739: -18,-5 + 2743: -20,-7 + 2744: -18,-7 - node: color: '#79150096' id: FullTileOverlayGreyscale @@ -2351,14 +2349,9 @@ entities: color: '#9FED5896' id: FullTileOverlayGreyscale decals: - 2798: -29,7 - 2799: -29,9 - 2800: -29,11 - 2801: -29,13 - 2802: -26,13 - 2803: -23,13 - 2804: -23,12 - 2805: -24,5 + 2786: -23,13 + 2787: -23,12 + 2788: -24,5 - node: color: '#A4610696' id: FullTileOverlayGreyscale @@ -2471,8 +2464,8 @@ entities: 801: -65.69963,-54.183094 802: -59.934006,-54.276844 803: -60.98088,-57.745594 - 2779: -27.285925,4.265137 - 2780: -29.097805,5.111672 + 2778: -27.285925,4.265137 + 2779: -29.097805,5.111672 - node: color: '#FFFFFFFF' id: Grassd2 @@ -2486,12 +2479,12 @@ entities: 787: -62.809006,-53.32372 867: -12.746777,23.114094 868: -6.8249016,22.957844 - 2766: -20,-23 - 2776: -28.74137,4.8443456 - 2777: -28.177013,4.08692 - 2778: -23.974043,4.0126615 - 2785: -27.285925,5.6760283 - 2786: -25.503746,4.9037514 + 2765: -20,-23 + 2775: -28.74137,4.8443456 + 2776: -28.177013,4.08692 + 2777: -23.974043,4.0126615 + 2784: -27.285925,5.6760283 + 2785: -25.503746,4.9037514 - node: color: '#FFFFFFFF' id: Grassd3 @@ -2503,9 +2496,9 @@ entities: 792: -59.41838,-56.79247 869: -9.168652,22.942219 870: -10.309277,23.067219 - 2782: -26.157211,4.161177 - 2783: -27.865131,5.1859293 - 2784: -26.469091,5.022563 + 2781: -26.157211,4.161177 + 2782: -27.865131,5.1859293 + 2783: -26.469091,5.022563 - node: color: '#FFFFFFFF' id: Grasse1 @@ -2516,9 +2509,9 @@ entities: 796: -62.98088,-57.776844 992: 6,-7 993: 3,-5 - 2767: -20,-22 - 2774: -29.14236,4.101771 - 2775: -28.696815,5.5275135 + 2766: -20,-22 + 2773: -29.14236,4.101771 + 2774: -28.696815,5.5275135 - node: color: '#FFFFFFFF' id: Grasse2 @@ -2530,7 +2523,7 @@ entities: 989: 5,-5 1450: -9,41 1451: -10.480507,40.958054 - 2768: -20,-20 + 2767: -20,-20 - node: color: '#FFFFFFFF' id: Grasse3 @@ -2547,7 +2540,7 @@ entities: 1448: -11,41 1449: -10,41 1452: -9.464882,40.926804 - 2781: -24.983944,4.08692 + 2780: -24.983944,4.08692 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -2590,19 +2583,12 @@ entities: 491: -7,-2 492: -8,-2 550: -16,-5 - 2731: -25,-8 - 2732: -24,-8 - 2733: -23,-8 - 2734: -22,-8 - 2735: -21,-8 - 2736: -20,-8 - - node: - color: '#724276FF' - id: HalfTileOverlayGreyscale - decals: - 2817: 17,16 - 2829: 19,15 - 2839: 16,12 + 2730: -25,-8 + 2731: -24,-8 + 2732: -23,-8 + 2733: -22,-8 + 2734: -21,-8 + 2735: -20,-8 - node: color: '#79150096' id: HalfTileOverlayGreyscale @@ -2617,7 +2603,7 @@ entities: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 2806: -24,13 + 2789: -24,13 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -2648,6 +2634,13 @@ entities: 1251: 18,23 1252: 17,23 1253: 16,23 + - node: + color: '#D381C93E' + id: HalfTileOverlayGreyscale + decals: + 3011: 21,16 + 3012: 22,16 + 3013: 23,16 - node: color: '#D381C996' id: HalfTileOverlayGreyscale @@ -2731,9 +2724,9 @@ entities: id: HalfTileOverlayGreyscale decals: 635: -1,-39 - 2891: -11,-48 - 2892: -10,-48 - 2893: -9,-48 + 2832: -11,-48 + 2833: -10,-48 + 2834: -9,-48 - node: color: '#33666DC8' id: HalfTileOverlayGreyscale180 @@ -2772,26 +2765,12 @@ entities: 529: -7,0 530: -6,0 531: -5,0 - 2723: -19,-13 - 2724: -20,-13 - 2725: -21,-13 - 2726: -23,-13 - 2727: -24,-13 - 2728: -25,-13 - - node: - color: '#724276FF' - id: HalfTileOverlayGreyscale180 - decals: - 2813: 20,10 - 2814: 19,10 - 2815: 18,10 - 2816: 17,10 - 2818: 22,7 - 2819: 23,7 - 2838: 16,10 - 2846: 12,14 - 2847: 13,14 - 2848: 14,14 + 2722: -19,-13 + 2723: -20,-13 + 2724: -21,-13 + 2725: -23,-13 + 2726: -24,-13 + 2727: -25,-13 - node: color: '#79150096' id: HalfTileOverlayGreyscale180 @@ -2828,7 +2807,7 @@ entities: 2377: -20,9 2378: -21,9 2379: -22,9 - 2808: -23,9 + 2791: -23,9 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 @@ -2862,6 +2841,18 @@ entities: 1106: 28,-8 1107: 29,-8 1108: 30,-8 + - node: + color: '#D381C93E' + id: HalfTileOverlayGreyscale180 + decals: + 2985: 14,14 + 2986: 12,14 + 2997: 22,7 + 2998: 23,7 + 3001: 17,10 + 3002: 18,10 + 3003: 19,10 + 3004: 20,10 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 @@ -2956,31 +2947,24 @@ entities: 1428: -16,34 1492: -5,36 1493: -16,36 - 2964: -10,-31 - 2965: -10,-32 + 2905: -10,-31 + 2906: -10,-32 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: 524: -5,-4 525: -5,-3 - 2729: -26,-12 - 2730: -26,-9 - 2952: -6,-28 - 2953: -6,-29 - - node: - color: '#724276FF' - id: HalfTileOverlayGreyscale270 - decals: - 2820: 21,8 - 2821: 21,9 - 2828: 21,17 + 2728: -26,-12 + 2729: -26,-9 + 2893: -6,-28 + 2894: -6,-29 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 decals: - 2962: -12,-28 - 2963: -12,-29 + 2903: -12,-28 + 2904: -12,-29 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 @@ -2996,8 +2980,14 @@ entities: 933: 27,0 934: 27,1 935: 27,2 - 2950: -10,-28 - 2951: -10,-29 + 2891: -10,-28 + 2892: -10,-29 + - node: + color: '#D381C93E' + id: HalfTileOverlayGreyscale270 + decals: + 2999: 21,8 + 3000: 21,9 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 @@ -3005,14 +2995,14 @@ entities: 1724: 30,21 1725: 30,22 1726: 30,23 - 2948: -8,-28 - 2949: -8,-29 + 2889: -8,-28 + 2890: -8,-29 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale270 decals: - 2968: -12,-31 - 2969: -12,-32 + 2909: -12,-31 + 2910: -12,-32 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -3052,8 +3042,8 @@ entities: 468: -20,-3 469: -20,-2 470: -20,-1 - 2946: -6,-31 - 2947: -6,-32 + 2887: -6,-31 + 2888: -6,-32 - node: color: '#EDD75E93' id: HalfTileOverlayGreyscale270 @@ -3069,10 +3059,10 @@ entities: 588: 9,-30 589: 9,-29 590: 9,-28 - 2889: -14,-49 - 2890: -14,-50 - 2940: -8,-32 - 2941: -8,-31 + 2830: -14,-49 + 2831: -14,-50 + 2881: -8,-32 + 2882: -8,-31 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 @@ -3087,8 +3077,8 @@ entities: 1429: -15,34 1494: -15,36 1495: -4,36 - 2966: -12,-31 - 2967: -12,-32 + 2907: -12,-31 + 2908: -12,-32 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 @@ -3099,39 +3089,26 @@ entities: 547: -15,-7 548: -15,-6 549: -15,-5 - 2737: -18,-9 - 2738: -18,-12 - 2954: -8,-28 - 2955: -8,-29 - - node: - color: '#724276FF' - id: HalfTileOverlayGreyscale90 - decals: - 2822: 23,12 - 2823: 23,13 - 2824: 23,14 - 2825: 23,15 - 2826: 23,16 - 2827: 23,17 - 2849: 15,15 - 2850: 15,16 - 2851: 15,17 - 2852: 15,18 + 2736: -18,-9 + 2737: -18,-12 + 2895: -8,-28 + 2896: -8,-29 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 2807: -24,8 - 2960: -14,-28 - 2961: -14,-29 + 2790: -24,8 + 2901: -14,-28 + 2902: -14,-29 + 3024: -24,7 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: 564: 5,-1 1049: 21,-4 - 2958: -12,-28 - 2959: -12,-29 + 2899: -12,-28 + 2900: -12,-29 - node: cleanable: True color: '#A4610696' @@ -3139,6 +3116,14 @@ entities: decals: 1047: 21,-6 1048: 21,-5 + - node: + color: '#D381C93E' + id: HalfTileOverlayGreyscale90 + decals: + 2987: 15,15 + 2988: 15,16 + 2989: 15,17 + 2990: 15,18 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 @@ -3146,8 +3131,8 @@ entities: 1727: 32,21 1728: 32,22 1729: 32,23 - 2956: -10,-28 - 2957: -10,-29 + 2897: -10,-28 + 2898: -10,-29 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 @@ -3196,8 +3181,8 @@ entities: 466: -17,-2 467: -17,-1 2341: 14,21 - 2944: -8,-31 - 2945: -8,-32 + 2885: -8,-31 + 2886: -8,-32 - node: color: '#EDD75E93' id: HalfTileOverlayGreyscale90 @@ -3216,10 +3201,10 @@ entities: 591: 12,-30 592: 12,-29 593: 12,-28 - 2894: -8,-49 - 2895: -8,-50 - 2942: -10,-31 - 2943: -10,-32 + 2835: -8,-49 + 2836: -8,-50 + 2883: -10,-31 + 2884: -10,-32 - node: color: '#FFFFFFFF' id: HatchSmall @@ -3306,15 +3291,8 @@ entities: decals: 518: -8,-4 551: -15,-5 - 2752: -22,-12 - 2753: -22,-10 - - node: - color: '#724276FF' - id: QuarterTileOverlayGreyscale - decals: - 2830: 20,15 - 2831: 21,16 - 2836: 17,12 + 2751: -22,-12 + 2752: -22,-10 - node: color: '#79150096' id: QuarterTileOverlayGreyscale @@ -3356,6 +3334,14 @@ entities: decals: 562: 3,-2 585: 11,-9 + - node: + color: '#D381C93E' + id: QuarterTileOverlayGreyscale + decals: + 3006: 17,12 + 3007: 17,14 + 3008: 17,15 + 3009: 17,16 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale @@ -3553,12 +3539,12 @@ entities: 544: -27,1 545: -26,1 546: -25,1 - 2656: -29,-14 - 2657: -28,-14 - 2658: -28,-13 - 2659: -28,-12 - 2756: -23,-11 - 2757: -23,-9 + 2655: -29,-14 + 2656: -28,-14 + 2657: -28,-13 + 2658: -28,-12 + 2755: -23,-11 + 2756: -23,-9 - node: color: '#79150096' id: QuarterTileOverlayGreyscale180 @@ -3581,7 +3567,7 @@ entities: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 2809: -24,9 + 2792: -24,9 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 @@ -3774,22 +3760,16 @@ entities: 507: -13,-7 515: -6,-5 523: -10,-2 - 2660: -31,-14 - 2661: -32,-14 - 2662: -33,-14 - 2663: -34,-14 - 2664: -35,-14 - 2665: -35,-13 - 2748: -20,-11 - 2751: -20,-9 - 2762: -24,-11 - 2763: -24,-9 - - node: - color: '#724276FF' - id: QuarterTileOverlayGreyscale270 - decals: - 2832: 21,10 - 2837: 17,14 + 2659: -31,-14 + 2660: -32,-14 + 2661: -33,-14 + 2662: -34,-14 + 2663: -35,-14 + 2664: -35,-13 + 2747: -20,-11 + 2750: -20,-9 + 2761: -24,-11 + 2762: -24,-9 - node: color: '#79150096' id: QuarterTileOverlayGreyscale270 @@ -3811,6 +3791,11 @@ entities: 2333: 9,1 2334: 10,1 2335: 11,1 + - node: + color: '#D381C93E' + id: QuarterTileOverlayGreyscale270 + decals: + 3005: 21,10 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 @@ -3989,16 +3974,10 @@ entities: 497: -9,-2 517: -9,-4 522: -11,-3 - 2747: -21,-12 - 2750: -21,-10 - 2760: -25,-10 - 2761: -25,-12 - - node: - color: '#724276FF' - id: QuarterTileOverlayGreyscale90 - decals: - 2833: 18,15 - 2834: 23,11 + 2746: -21,-12 + 2749: -21,-10 + 2759: -25,-10 + 2760: -25,-12 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 @@ -4117,8 +4096,8 @@ entities: 2323: 30,38 2324: 29,38 2391: 11,36 - 2431: -44,-7 - 2432: -44,-8 + 2430: -44,-7 + 2431: -44,-8 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale90 @@ -4194,7 +4173,7 @@ entities: color: '#FFFFFFFF' id: StandClear decals: - 2867: 14,-19 + 2808: 14,-19 - node: color: '#FFFFFFFF' id: StandClear @@ -4208,31 +4187,36 @@ entities: color: '#FFFFFFFF' id: StandClear decals: - 2773: -53,36 + 2772: -53,36 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 2720: -26,-8 - 2746: -20,-12 - 2749: -20,-10 - 2758: -24,-12 - 2759: -24,-10 + 2719: -26,-8 + 2745: -20,-12 + 2748: -20,-10 + 2757: -24,-12 + 2758: -24,-10 + - node: + color: '#D381C93E' + id: ThreeQuarterTileOverlayGreyscale + decals: + 2995: 16,12 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale decals: - 2887: -14,-48 + 2828: -14,-48 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2722: -18,-13 + 2721: -18,-13 - node: - color: '#724276FF' + color: '#D381C93E' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2845: 15,14 + 2984: 15,14 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 @@ -4242,25 +4226,25 @@ entities: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2721: -26,-13 - 2754: -22,-9 - 2755: -22,-11 + 2720: -26,-13 + 2753: -22,-9 + 2754: -22,-11 - node: - color: '#724276FF' + color: '#D381C93E' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2835: 21,7 - 2844: 17,13 + 2994: 16,10 + 2996: 21,7 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2719: -18,-8 + 2718: -18,-8 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2888: -8,-48 + 2829: -8,-48 - node: color: '#FFFFFFFF' id: VentSmall @@ -4309,66 +4293,67 @@ entities: color: '#FFFFFFFF' id: WarnCornerGreyscaleSE decals: - 2649: -31,-11 + 2648: -31,-11 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSW decals: - 2653: -35,-11 + 2652: -35,-11 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: 2072: 2,-33 - 2876: -8,-51 - 2997: -17,-53 + 2817: -8,-51 + 2938: -17,-53 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: 2071: 0,-33 - 2878: -14,-51 - 2996: -19,-53 + 2819: -14,-51 + 2937: -19,-53 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: 1733: 5,21 2070: 2,-35 - 2810: 13,12 - 2877: -8,-53 - 2902: -5,-52 - 2999: -17,-56 + 2818: -8,-53 + 2843: -5,-52 + 2940: -17,-56 + 2982: 12,12 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: 1732: 3,21 2069: 0,-35 - 2879: -14,-53 - 2998: -19,-56 + 2820: -14,-53 + 2939: -19,-56 + 2983: 14,12 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 2863: 14,-20 - 2864: 14,-19 + 2804: 14,-20 + 2805: 14,-19 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 1175: 21,-19 1691: -58,19 - 2932: 1,-52 + 2873: 1,-52 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: 1177: 20,-19 1734: 5,22 - 2865: 14,-18 - 2866: 14,-19 - 2930: -3,-50 + 2806: 14,-18 + 2807: 14,-19 + 2871: -3,-50 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -4378,7 +4363,7 @@ entities: 1182: 22,-19 1690: -58,17 1735: 3,22 - 2931: 1,-50 + 2872: 1,-50 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -4395,20 +4380,20 @@ entities: id: WarnFullGreyscale decals: 2182: -35,-1 - 2540: -24,-17 - 2541: -24,-23 - 2542: -20,-16 - 2543: -16,-16 - 2607: -14,-18 - 2608: -14,-14 - 2644: -28,-23 - 2645: -28,-17 - 2646: -32,-18 - 2690: -17,-11 - 2691: -17,-10 - 2695: -22,-14 - 2696: -27,-10 - 2697: -27,-11 + 2539: -24,-17 + 2540: -24,-23 + 2541: -20,-16 + 2542: -16,-16 + 2606: -14,-18 + 2607: -14,-14 + 2643: -28,-23 + 2644: -28,-17 + 2645: -32,-18 + 2689: -17,-11 + 2690: -17,-10 + 2694: -22,-14 + 2695: -27,-10 + 2696: -27,-11 - node: color: '#D381C996' id: WarnFullGreyscale @@ -4434,14 +4419,14 @@ entities: 1218: 21,21 2073: 2,-34 2135: -2,-1 - 2881: -8,-52 - 2903: -5,-51 - 2904: -5,-50 - 2905: -5,-49 - 2906: -5,-48 - 2925: -3,-51 - 3001: -17,-54 - 3002: -17,-55 + 2822: -8,-52 + 2844: -5,-51 + 2845: -5,-50 + 2846: -5,-49 + 2847: -5,-48 + 2866: -3,-51 + 2942: -17,-54 + 2943: -17,-55 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -4451,14 +4436,14 @@ entities: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 2529: -21,-16 - 2641: -29,-23 - 2642: -29,-17 - 2687: -12,-11 - 2692: -18,-11 - 2693: -18,-10 - 2700: -28,-11 - 2701: -28,-10 + 2528: -21,-16 + 2640: -29,-23 + 2641: -29,-17 + 2686: -12,-11 + 2691: -18,-11 + 2692: -18,-10 + 2699: -28,-11 + 2700: -28,-10 - node: color: '#D381C996' id: WarnLineGreyscaleE @@ -4468,7 +4453,7 @@ entities: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 2650: -31,-10 + 2649: -31,-10 - node: color: '#334E6DC8' id: WarnLineGreyscaleN @@ -4478,9 +4463,9 @@ entities: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 2538: -22,-15 - 2606: -14,-19 - 2609: -14,-15 + 2537: -22,-15 + 2605: -14,-19 + 2608: -14,-15 - node: color: '#D381C996' id: WarnLineGreyscaleN @@ -4497,11 +4482,11 @@ entities: id: WarnLineGreyscaleS decals: 2181: -35,0 - 2539: -22,-24 - 2604: -18,-23 - 2605: -14,-17 - 2686: -14,-13 - 2694: -22,-13 + 2538: -22,-24 + 2603: -18,-23 + 2604: -14,-17 + 2685: -14,-13 + 2693: -22,-13 - node: color: '#D381C996' id: WarnLineGreyscaleS @@ -4523,7 +4508,7 @@ entities: color: '#EFB34196' id: WarnLineGreyscaleS decals: - 2443: -41,17 + 2442: -41,17 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS @@ -4531,9 +4516,9 @@ entities: 2201: -40,42 2202: -44,42 2203: -48,42 - 2651: -32,-11 - 2652: -33,-11 - 2654: -34,-11 + 2650: -32,-11 + 2651: -33,-11 + 2653: -34,-11 - node: color: '#334E6DC8' id: WarnLineGreyscaleW @@ -4543,26 +4528,26 @@ entities: color: '#52B4E996' id: WarnLineGreyscaleW decals: - 2527: -23,-23 - 2528: -23,-17 - 2544: -15,-16 - 2643: -31,-18 - 2688: -16,-11 - 2689: -16,-10 - 2698: -26,-11 - 2699: -26,-10 + 2526: -23,-23 + 2527: -23,-17 + 2543: -15,-16 + 2642: -31,-18 + 2687: -16,-11 + 2688: -16,-10 + 2697: -26,-11 + 2698: -26,-10 - node: color: '#EFB34196' id: WarnLineGreyscaleW decals: - 2444: -44,18 + 2443: -44,18 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: 2165: -33,7 2166: -33,8 - 2655: -35,-10 + 2654: -35,-10 - node: color: '#FFFFFFFF' id: WarnLineN @@ -4588,27 +4573,26 @@ entities: 2074: 1,-35 2348: -26,-58 2349: -27,-58 - 2811: 12,12 - 2857: 15,-19 - 2858: 16,-19 - 2859: 17,-19 - 2882: -13,-53 - 2883: -12,-53 - 2884: -11,-53 - 2885: -10,-53 - 2886: -9,-53 - 2907: -6,-52 - 2908: -3,-47 - 2909: 1,-47 - 2910: 2,-47 - 2911: 3,-47 - 2912: 4,-47 - 2913: -2,-47 - 2914: 0,-47 - 2922: -2,-50 - 2923: -1,-50 - 2924: 0,-50 - 3005: -18,-56 + 2798: 15,-19 + 2799: 16,-19 + 2800: 17,-19 + 2823: -13,-53 + 2824: -12,-53 + 2825: -11,-53 + 2826: -10,-53 + 2827: -9,-53 + 2848: -6,-52 + 2849: -3,-47 + 2850: 1,-47 + 2851: 2,-47 + 2852: 3,-47 + 2853: 4,-47 + 2854: -2,-47 + 2855: 0,-47 + 2863: -2,-50 + 2864: -1,-50 + 2865: 0,-50 + 2946: -18,-56 - node: color: '#FFFFFFFF' id: WarnLineS @@ -4635,9 +4619,9 @@ entities: 2134: -4,-1 2423: -47,-10 2424: -47,-9 - 2880: -14,-52 - 3003: -19,-54 - 3004: -19,-55 + 2821: -14,-52 + 2944: -19,-54 + 2945: -19,-55 - node: color: '#FFFFFFFF' id: WarnLineW @@ -4667,30 +4651,30 @@ entities: 2068: 1,-33 2361: -12,-58 2362: -11,-58 - 2812: 12,10 - 2854: 13,10 - 2855: 14,10 - 2860: 15,-19 - 2861: 16,-19 - 2862: 17,-19 - 2872: -11,-51 - 2873: -10,-51 - 2874: -12,-51 - 2875: -9,-51 - 2926: -2,-52 - 2927: -1,-52 - 2928: 0,-52 - 2929: 0,-52 - 2933: -2,-48 - 2934: -1,-48 - 2935: 0,-48 - 2936: 1,-48 - 2937: 2,-48 - 2938: 3,-48 - 2939: 4,-48 - 3000: -18,-53 - 3039: -4,-48 - 3040: -3,-48 + 2793: 12,10 + 2796: 13,10 + 2801: 15,-19 + 2802: 16,-19 + 2803: 17,-19 + 2813: -11,-51 + 2814: -10,-51 + 2815: -12,-51 + 2816: -9,-51 + 2867: -2,-52 + 2868: -1,-52 + 2869: 0,-52 + 2870: 0,-52 + 2874: -2,-48 + 2875: -1,-48 + 2876: 0,-48 + 2877: 1,-48 + 2878: 2,-48 + 2879: 3,-48 + 2880: 4,-48 + 2941: -18,-53 + 2980: -4,-48 + 2981: -3,-48 + 3014: 14,10 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -5538,7 +5522,8 @@ entities: -11,13: 0: 65535 -11,14: - 0: 65535 + 0: 65527 + 2: 8 -11,15: 0: 16383 -10,12: @@ -5546,7 +5531,8 @@ entities: -10,13: 0: 65535 -10,14: - 0: 65535 + 0: 65533 + 2: 2 -10,15: 0: 49151 -9,12: @@ -6062,16 +6048,16 @@ entities: 5,-5: 0: 65535 6,-8: - 0: 7967 - 2: 224 - 3: 57344 - 6,-7: 0: 7967 3: 224 4: 57344 + 6,-7: + 0: 7967 + 4: 224 + 5: 57344 6,-6: 0: 65311 - 5: 224 + 6: 224 6,-5: 0: 65535 7,-8: @@ -6120,7 +6106,7 @@ entities: 0: 65535 6,-9: 0: 7967 - 3: 57568 + 4: 57568 7,-9: 0: 13107 -4,-12: @@ -6711,7 +6697,7 @@ entities: 0: 65280 -16,14: 0: 52862 - 2: 128 + 3: 128 -16,15: 0: 3976 -16,13: @@ -7443,6 +7429,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: @@ -7736,7 +7737,6 @@ entities: - 13085 - 18074 - 18214 - - 17912 - 18601 - 18212 - 13073 @@ -8906,13 +8906,6 @@ entities: - type: Transform pos: 26.5,32.5 parent: 30 - - uid: 7438 - components: - - type: MetaData - name: Space Bucks - - type: Transform - pos: 0.5,-5.5 - parent: 30 - uid: 12455 components: - type: Transform @@ -9497,6 +9490,11 @@ entities: - type: Transform pos: -62.5,43.5 parent: 30 + - uid: 18213 + components: + - type: Transform + pos: -4.5,-29.5 + parent: 30 - uid: 18927 components: - type: Transform @@ -10987,7 +10985,7 @@ entities: pos: -20.5,-5.5 parent: 30 - type: Door - secondsUntilStateChange: -19887.758 + secondsUntilStateChange: -21151.791 state: Opening - type: DeviceLinkSource lastSignals: @@ -11151,11 +11149,10 @@ entities: - type: Transform pos: 34.5,8.5 parent: 30 - - uid: 14335 + - uid: 16172 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,13.5 + pos: 13.5,13.5 parent: 30 - proto: AirlockSecurityGlassLocked entities: @@ -13430,10 +13427,10 @@ entities: current: TheBirdCage - proto: BarSignSpacebucks entities: - - uid: 998 + - uid: 342 components: - type: Transform - pos: -0.5,-10.5 + pos: 1.5,-5.5 parent: 30 - proto: BaseComputer entities: @@ -14708,11 +14705,6 @@ entities: parent: 30 - proto: Bucket entities: - - uid: 323 - components: - - type: Transform - pos: -27.774437,12.342436 - parent: 30 - uid: 547 components: - type: Transform @@ -14728,6 +14720,11 @@ entities: - type: Transform pos: -24.119356,6.357745 parent: 30 + - uid: 18174 + components: + - type: Transform + pos: -30.79277,6.840554 + parent: 30 - uid: 19541 components: - type: Transform @@ -49742,10 +49739,10 @@ entities: - 0 - 0 - 0 - - uid: 17726 + - uid: 18856 components: - type: Transform - pos: 13.5,12.5 + pos: 14.5,12.5 parent: 30 - uid: 22224 components: @@ -51218,6 +51215,18 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingOuterHardsuitSecurity + entities: + - uid: 20709 + components: + - type: Transform + pos: -37.400864,55.464325 + parent: 30 + - uid: 20710 + components: + - type: Transform + pos: -37.400864,55.464325 + parent: 30 - proto: ClothingOuterNunRobe entities: - uid: 17657 @@ -52645,8 +52654,6 @@ entities: - type: Transform pos: -13.5,-48.5 parent: 30 - - type: Lock - locked: False - proto: CrateEngineeringAMEShielding entities: - uid: 19186 @@ -59785,6 +59792,43 @@ entities: - type: Transform pos: -32.550377,-19.499231 parent: 30 +- proto: Emitter + entities: + - uid: 18857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-63.5 + parent: 30 + - uid: 20703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-71.5 + parent: 30 + - uid: 20704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-71.5 + parent: 30 + - uid: 20705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-63.5 + parent: 30 + - uid: 20706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-74.5 + parent: 30 + - uid: 20707 + components: + - type: Transform + pos: -21.5,-60.5 + parent: 30 - proto: EmitterFlatpack entities: - uid: 16130 @@ -59802,11 +59846,6 @@ entities: - type: Transform pos: -17.315872,-34.317642 parent: 30 - - uid: 20701 - components: - - type: Transform - pos: -17.330315,-34.519756 - parent: 30 - proto: ExosuitFabricator entities: - uid: 12799 @@ -62404,6 +62443,11 @@ entities: - type: Transform pos: -46.5,28.5 parent: 30 + - uid: 16242 + components: + - type: Transform + pos: 13.5,13.5 + parent: 30 - uid: 16740 components: - type: Transform @@ -62438,15 +62482,6 @@ entities: - type: DeviceNetwork deviceLists: - 14365 - - uid: 17912 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,13.5 - parent: 30 - - type: DeviceNetwork - deviceLists: - - 14365 - uid: 18069 components: - type: Transform @@ -63446,14 +63481,14 @@ entities: parent: 30 - proto: GasMinerNitrogenStationLarge entities: - - uid: 11446 + - uid: 8690 components: - type: Transform pos: 26.5,-22.5 parent: 30 - proto: GasMinerOxygenStationLarge entities: - - uid: 8690 + - uid: 11446 components: - type: Transform pos: 26.5,-24.5 @@ -63473,6 +63508,14 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,9.5 parent: 30 +- proto: GasMixerFlipped + entities: + - uid: 9464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-48.5 + parent: 30 - proto: GasOutletInjector entities: - uid: 8693 @@ -63610,6 +63653,14 @@ entities: - type: Transform pos: 38.5,12.5 parent: 30 + - uid: 20708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-57.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 21275 components: - type: Transform @@ -64250,6 +64301,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 8933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-57.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 8944 components: - type: Transform @@ -64295,14 +64354,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#EB9834FF' - - uid: 9213 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-55.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 9262 components: - type: Transform @@ -64310,14 +64361,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9295 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-57.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 9428 components: - type: Transform @@ -64390,11 +64433,11 @@ entities: - uid: 9790 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-57.5 + rot: 1.5707963267948966 rad + pos: -5.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9813 components: - type: Transform @@ -65003,14 +65046,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-50.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 20663 components: - type: Transform @@ -75166,6 +75201,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 9818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-56.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9834 components: - type: Transform @@ -75327,7 +75370,7 @@ entities: pos: -4.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 9979 components: - type: Transform @@ -83632,6 +83675,28 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 9213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-55.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-50.5 + parent: 30 + - uid: 9295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-57.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9353 components: - type: Transform @@ -83723,14 +83788,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9818 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-55.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 9847 components: - type: Transform @@ -84742,12 +84799,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-48.5 - parent: 30 - uid: 22014 components: - type: Transform @@ -85067,7 +85118,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#FF0000FF' + color: '#FF1212FF' - uid: 20649 components: - type: Transform @@ -87967,13 +88018,6 @@ entities: color: '#FF0000FF' - proto: GasVolumePump entities: - - uid: 9216 - components: - - type: Transform - pos: -5.5,-56.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 9373 components: - type: Transform @@ -94744,20 +94788,19 @@ entities: parent: 30 - proto: HeatExchanger entities: + - uid: 9159 + components: + - type: Transform + pos: -4.5,-56.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9651 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-56.5 parent: 30 - - uid: 11122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-56.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 20644 components: - type: Transform @@ -94933,10 +94976,10 @@ entities: - type: Transform pos: -45.453583,69.54325 parent: 30 - - uid: 18857 + - uid: 14335 components: - type: Transform - pos: -28.537731,11.513851 + pos: -28.442305,8.528054 parent: 30 - uid: 19544 components: @@ -94957,10 +95000,10 @@ entities: - type: Transform pos: -45.386658,69.59978 parent: 30 - - uid: 18858 + - uid: 16135 components: - type: Transform - pos: -28.478325,11.558405 + pos: -28.45793,8.621804 parent: 30 - uid: 19542 components: @@ -94984,16 +95027,6 @@ entities: - type: Transform pos: -21.5,12.5 parent: 30 - - uid: 341 - components: - - type: Transform - pos: -27.5,13.5 - parent: 30 - - uid: 342 - components: - - type: Transform - pos: -26.5,13.5 - parent: 30 - uid: 2339 components: - type: Transform @@ -95034,15 +95067,30 @@ entities: - type: Transform pos: -47.5,69.5 parent: 30 + - uid: 14334 + components: + - type: Transform + pos: -26.5,9.5 + parent: 30 + - uid: 16136 + components: + - type: Transform + pos: -27.5,9.5 + parent: 30 + - uid: 16137 + components: + - type: Transform + pos: -28.5,11.5 + parent: 30 - uid: 16138 components: - type: Transform - pos: -28.5,12.5 + pos: -27.5,11.5 parent: 30 - uid: 16139 components: - type: Transform - pos: -27.5,11.5 + pos: -25.5,11.5 parent: 30 - uid: 16163 components: @@ -95052,32 +95100,12 @@ entities: - uid: 16165 components: - type: Transform - pos: -28.5,10.5 - parent: 30 - - uid: 16172 - components: - - type: Transform - pos: -27.5,9.5 - parent: 30 - - uid: 16242 - components: - - type: Transform - pos: -26.5,9.5 - parent: 30 - - uid: 18174 - components: - - type: Transform - pos: -26.5,7.5 + pos: -28.5,9.5 parent: 30 - uid: 18184 components: - type: Transform - pos: -27.5,7.5 - parent: 30 - - uid: 18856 - components: - - type: Transform - pos: -28.5,8.5 + pos: -25.5,9.5 parent: 30 - proto: InflatableDoorStack entities: @@ -96731,6 +96759,12 @@ entities: parent: 30 - proto: JanitorServiceLight entities: + - uid: 341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,14.5 + parent: 30 - uid: 844 components: - type: Transform @@ -96754,12 +96788,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-0.5 parent: 30 - - uid: 16403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,14.5 - parent: 30 - proto: JetpackBlueFilled entities: - uid: 5722 @@ -97023,6 +97051,12 @@ entities: - type: Transform pos: -77.46411,-65.291664 parent: 30 + - uid: 20702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.7135324,-33.95857 + parent: 30 - uid: 21649 components: - type: Transform @@ -100800,12 +100834,6 @@ entities: - type: Transform pos: 3.5,-35.5 parent: 30 - - uid: 19795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,13.5 - parent: 30 - proto: PosterLegitSafetyMothEpi entities: - uid: 9812 @@ -106575,11 +106603,6 @@ entities: - type: Transform pos: -29.5,36.5 parent: 30 - - uid: 3708 - components: - - type: Transform - pos: -3.5,-29.5 - parent: 30 - uid: 3709 components: - type: Transform @@ -110634,6 +110657,16 @@ entities: - type: Transform pos: -15.490766,-37.49464 parent: 30 + - uid: 20715 + components: + - type: Transform + pos: -25.514673,-43.671646 + parent: 30 + - uid: 20716 + components: + - type: Transform + pos: -25.514673,-43.671646 + parent: 30 - proto: SheetPlasma entities: - uid: 11365 @@ -110684,6 +110717,31 @@ entities: - type: Transform pos: -21.505291,-47.848297 parent: 30 + - uid: 20654 + components: + - type: Transform + pos: -9.197907,-34.442944 + parent: 30 + - uid: 20673 + components: + - type: Transform + pos: -9.197907,-34.442944 + parent: 30 + - uid: 20717 + components: + - type: Transform + pos: -25.514673,-44.53102 + parent: 30 + - uid: 20718 + components: + - type: Transform + pos: -25.514673,-44.53102 + parent: 30 + - uid: 20719 + components: + - type: Transform + pos: -21.514673,-47.84352 + parent: 30 - proto: SheetPlasteel10 entities: - uid: 15989 @@ -110725,6 +110783,16 @@ entities: - type: Transform pos: -39.029526,27.478249 parent: 30 + - uid: 17726 + components: + - type: Transform + pos: -8.791859,-34.493073 + parent: 30 + - uid: 20712 + components: + - type: Transform + pos: -8.791859,-34.493073 + parent: 30 - proto: SheetSteel entities: - uid: 1349 @@ -110807,6 +110875,31 @@ entities: - type: Transform pos: -52.674896,-62.391804 parent: 30 + - uid: 18858 + components: + - type: Transform + pos: -9.526032,-34.45857 + parent: 30 + - uid: 19795 + components: + - type: Transform + pos: -9.526032,-34.45857 + parent: 30 + - uid: 20713 + components: + - type: Transform + pos: -25.545923,-43.296646 + parent: 30 + - uid: 20714 + components: + - type: Transform + pos: -25.545923,-43.296646 + parent: 30 + - uid: 20720 + components: + - type: Transform + pos: -21.483423,-47.53102 + parent: 30 - proto: SheetUranium entities: - uid: 19800 @@ -111632,6 +111725,15 @@ entities: - Pressed: Toggle 7992: - Pressed: Toggle + - uid: 3708 + components: + - type: Transform + pos: 18.5,17.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 341: + - Pressed: Toggle - uid: 4731 components: - type: Transform @@ -111820,17 +111922,6 @@ entities: linkedPorts: 6415: - Pressed: DoorBolt - - uid: 18213 - components: - - type: MetaData - name: janitor light button - - type: Transform - pos: 18.5,17.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 16403: - - Pressed: Toggle - uid: 20432 components: - type: Transform @@ -112551,11 +112642,6 @@ entities: - type: Transform pos: -36.5,-1.5 parent: 30 - - uid: 9464 - components: - - type: Transform - pos: -4.5,-28.5 - parent: 30 - uid: 15973 components: - type: Transform @@ -113059,6 +113145,11 @@ entities: parent: 30 - proto: SignTelecomms entities: + - uid: 17912 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 30 - uid: 20635 components: - type: Transform @@ -116202,11 +116293,47 @@ entities: - type: Transform pos: -38.5,56.5 parent: 30 + - 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: 782 components: - type: Transform pos: -40.5,56.5 parent: 30 + - 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: SuitStorageWarden entities: - uid: 5052 @@ -116405,6 +116532,17 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Storage + - uid: 16403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-27.5 + parent: 30 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Telecomms - uid: 21211 components: - type: Transform @@ -118731,6 +118869,12 @@ entities: - type: Transform pos: -25.5,-15.5 parent: 30 + - uid: 9980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,8.5 + parent: 30 - uid: 12653 components: - type: Transform @@ -118746,11 +118890,6 @@ entities: - type: Transform pos: -4.5,-10.5 parent: 30 - - uid: 16137 - components: - - type: Transform - pos: -28.5,11.5 - parent: 30 - uid: 20282 components: - type: Transform @@ -121021,10 +121160,10 @@ entities: parent: 30 - proto: VendingMachineNutri entities: - - uid: 16135 + - uid: 998 components: - type: Transform - pos: -28.5,9.5 + pos: -28.5,13.5 parent: 30 - proto: VendingMachineRoboDrobe entities: @@ -121072,10 +121211,10 @@ entities: parent: 30 - proto: VendingMachineSeeds entities: - - uid: 16136 + - uid: 11122 components: - type: Transform - pos: -28.5,13.5 + pos: -28.5,12.5 parent: 30 - proto: VendingMachineSeedsUnlocked entities: @@ -124448,6 +124587,11 @@ entities: - type: Transform pos: -31.5,-22.5 parent: 30 + - uid: 7438 + components: + - type: Transform + pos: 14.5,13.5 + parent: 30 - uid: 7444 components: - type: Transform @@ -125533,11 +125677,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-19.5 parent: 30 - - uid: 9159 - components: - - type: Transform - pos: -4.5,-29.5 - parent: 30 - uid: 9183 components: - type: Transform @@ -127845,12 +127984,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-53.5 parent: 30 - - uid: 14334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,13.5 - parent: 30 - uid: 14506 components: - type: Transform @@ -131013,6 +131146,11 @@ entities: - type: Transform pos: -25.5,24.5 parent: 30 + - uid: 323 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 30 - uid: 351 components: - type: Transform diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index ac6404412c..65b741097c 100644 --- a/Resources/Maps/packed.yml +++ b/Resources/Maps/packed.yml @@ -7162,7 +7162,7 @@ entities: pos: 24.5,-39.5 parent: 2 - type: Door - secondsUntilStateChange: -191.21292 + secondsUntilStateChange: -432.36554 state: Opening - type: DeviceLinkSource lastSignals: @@ -8885,13 +8885,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,7.5 parent: 2 - - uid: 4309 - components: - - type: MetaData - name: Singulo APC - - type: Transform - pos: 17.5,-37.5 - parent: 2 - uid: 4325 components: - type: MetaData @@ -9063,6 +9056,14 @@ 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 @@ -10681,6 +10682,11 @@ entities: - type: Transform pos: 56.5,-3.5 parent: 2 + - uid: 4318 + components: + - type: Transform + pos: 16.5,-39.5 + parent: 2 - uid: 4677 components: - type: Transform @@ -11546,16 +11552,6 @@ entities: - type: Transform pos: 40.5,-44.5 parent: 2 - - uid: 5577 - components: - - type: Transform - pos: 17.5,-37.5 - parent: 2 - - uid: 5578 - components: - - type: Transform - pos: 17.5,-38.5 - parent: 2 - uid: 5579 components: - type: Transform @@ -12076,6 +12072,11 @@ entities: - type: Transform pos: 42.5,-10.5 parent: 2 + - uid: 6769 + components: + - type: Transform + pos: 15.5,-39.5 + parent: 2 - uid: 6829 components: - type: Transform @@ -18967,6 +18968,11 @@ entities: - type: Transform pos: 17.5,-40.5 parent: 2 + - uid: 4308 + components: + - type: Transform + pos: 16.5,-37.5 + parent: 2 - uid: 4335 components: - type: Transform @@ -22402,6 +22408,16 @@ entities: - type: Transform pos: 43.5,27.5 parent: 2 + - uid: 8446 + components: + - type: Transform + pos: 16.5,-36.5 + parent: 2 + - uid: 8447 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 2 - uid: 8818 components: - type: Transform @@ -23872,15 +23888,10 @@ entities: - type: Transform pos: 22.5,7.5 parent: 2 - - uid: 4308 + - uid: 4309 components: - type: Transform - pos: 17.5,-37.5 - parent: 2 - - uid: 4312 - components: - - type: Transform - pos: 17.5,-36.5 + pos: 15.5,-39.5 parent: 2 - uid: 4605 components: @@ -24237,10 +24248,10 @@ entities: - type: Transform pos: 62.5,-6.5 parent: 2 - - uid: 5576 + - uid: 5578 components: - type: Transform - pos: 17.5,-35.5 + pos: 13.5,-41.5 parent: 2 - uid: 5608 components: @@ -24277,15 +24288,15 @@ entities: - type: Transform pos: 19.5,-13.5 parent: 2 + - uid: 6766 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 2 - uid: 6768 components: - type: Transform - pos: 15.5,-42.5 - parent: 2 - - uid: 6769 - components: - - type: Transform - pos: 14.5,-42.5 + pos: 15.5,-41.5 parent: 2 - uid: 6770 components: @@ -24322,6 +24333,21 @@ entities: - type: Transform pos: 21.5,-39.5 parent: 2 + - uid: 6942 + components: + - type: Transform + pos: 16.5,-41.5 + parent: 2 + - uid: 6943 + components: + - type: Transform + pos: 16.5,-40.5 + parent: 2 + - uid: 6944 + components: + - type: Transform + pos: 16.5,-39.5 + parent: 2 - uid: 6955 components: - type: Transform @@ -25262,6 +25288,16 @@ entities: - type: Transform pos: -15.5,-15.5 parent: 2 + - uid: 7781 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 2 + - uid: 7782 + components: + - type: Transform + pos: 16.5,-37.5 + parent: 2 - uid: 8287 components: - type: Transform @@ -32781,6 +32817,23 @@ entities: - type: Transform pos: 52.52299,8.566419 parent: 2 +- proto: ClothingOuterHardsuitSecurity + entities: + - uid: 9478 + components: + - type: Transform + pos: 38.48357,28.698536 + parent: 2 + - uid: 9883 + components: + - type: Transform + pos: 38.48357,28.698536 + parent: 2 + - uid: 9884 + components: + - type: Transform + pos: 38.48357,28.698536 + parent: 2 - proto: ClothingOuterHospitalGown entities: - uid: 12499 @@ -68308,12 +68361,12 @@ entities: currentSupply: 60.000237 - proto: SubstationWallBasic entities: - - uid: 6766 + - uid: 5576 components: - type: MetaData - name: Singulo Emitter Substation + name: Singulo Substation - type: Transform - pos: 15.5,-42.5 + pos: 16.5,-37.5 parent: 2 - proto: SuitStorageAtmos entities: @@ -81160,16 +81213,16 @@ 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: 4318 - components: - - type: Transform - pos: 17.5,-37.5 - parent: 2 - uid: 4319 components: - type: Transform diff --git a/Resources/Maps/reach.yml b/Resources/Maps/reach.yml index b2632d97e3..74b85ec1d1 100644 --- a/Resources/Maps/reach.yml +++ b/Resources/Maps/reach.yml @@ -1364,9 +1364,6 @@ entities: - type: Transform pos: 9.5,-11.5 parent: 407 - - type: DeviceLinkSink - links: - - 1243 - type: DeviceLinkSource linkedPorts: 1243: @@ -1376,9 +1373,6 @@ entities: - type: Transform pos: 12.5,-11.5 parent: 407 - - type: DeviceLinkSink - links: - - 1242 - type: DeviceLinkSource linkedPorts: 1242: @@ -1397,9 +1391,6 @@ entities: - type: Transform pos: -17.5,5.5 parent: 407 - - type: DeviceLinkSink - links: - - 1245 - type: DeviceLinkSource linkedPorts: 1245: @@ -1409,9 +1400,6 @@ entities: - type: Transform pos: -17.5,7.5 parent: 407 - - type: DeviceLinkSink - links: - - 1244 - type: DeviceLinkSource linkedPorts: 1244: @@ -1787,9 +1775,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 407 - - type: DeviceLinkSink - links: - - 1251 - proto: BluespaceBeaker entities: - uid: 1740 @@ -5803,6 +5788,13 @@ entities: - type: Transform pos: -0.5,8.5 parent: 407 +- proto: CleanerDispenser + entities: + - uid: 2279 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 407 - proto: ClosetChefFilled entities: - uid: 1655 @@ -9737,9 +9729,6 @@ entities: - type: Transform pos: -3.5,10.5 parent: 407 - - type: DeviceLinkSink - links: - - 1986 - proto: MachineCentrifuge entities: - uid: 2220 @@ -10984,43 +10973,28 @@ entities: - type: Transform pos: -8.5,2.5 parent: 407 - - type: DeviceLinkSink - links: - - 1759 - uid: 1652 components: - type: Transform pos: -10.5,2.5 parent: 407 - - type: DeviceLinkSink - links: - - 1759 - uid: 1803 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,2.5 parent: 407 - - type: DeviceLinkSink - links: - - 2224 - uid: 2162 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,2.5 parent: 407 - - type: DeviceLinkSink - links: - - 2224 - uid: 2222 components: - type: Transform pos: -14.5,2.5 parent: 407 - - type: DeviceLinkSink - links: - - 2223 - proto: ShuttersRadiation entities: - uid: 1252 @@ -11029,27 +11003,18 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-0.5 parent: 407 - - type: DeviceLinkSink - links: - - 1255 - uid: 1253 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,0.5 parent: 407 - - type: DeviceLinkSink - links: - - 1255 - uid: 1254 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,1.5 parent: 407 - - type: DeviceLinkSink - links: - - 1255 - proto: ShuttersWindowOpen entities: - uid: 1650 @@ -11057,9 +11022,6 @@ entities: - type: Transform pos: -9.5,2.5 parent: 407 - - type: DeviceLinkSink - links: - - 1759 - proto: ShuttleWindow entities: - uid: 18 @@ -11555,7 +11517,7 @@ entities: - Pressed: Toggle 2162: - Pressed: Toggle -- proto: SignAtmosMinsky +- proto: SignAtmos entities: - uid: 1560 components: diff --git a/Resources/Maps/train.yml b/Resources/Maps/train.yml index f15e08aa88..caeb4d22cc 100644 --- a/Resources/Maps/train.yml +++ b/Resources/Maps/train.yml @@ -41,6 +41,7 @@ tilemap: 80: FloorShowroom 91: FloorSteel 93: FloorSteelCheckerDark + 1: FloorSteelCheckerLight 96: FloorSteelDiagonal 98: FloorSteelDirty 100: FloorSteelLime @@ -93,11 +94,11 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: ZwAAAAAAZwAAAAAAZwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAZwAAAAAAZwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJQAAAAACIwAAAAAAMAAAAAACIwAAAAAAIwAAAAAAJQAAAAADfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJQAAAAADIwAAAAAAMAAAAAADIwAAAAAAIwAAAAAAJQAAAAABfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAJQAAAAAAIwAAAAAAMAAAAAADIwAAAAAAIwAAAAAAJQAAAAABfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJQAAAAADIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAJQAAAAABfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJQAAAAADIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAJQAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJQAAAAACIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAJQAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAJQAAAAADIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAJQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJQAAAAACIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAJQAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJQAAAAADIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAJQAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJQAAAAABIwAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAJQAAAAAAIwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAJQAAAAADIwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAA + tiles: WwAAAAAAWwAAAAAAWwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJQAAAAABIwAAAAAAMAAAAAABIwAAAAAAIwAAAAAAJQAAAAABfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJQAAAAABIwAAAAAAMAAAAAABIwAAAAAAIwAAAAAAJQAAAAADfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAJQAAAAABIwAAAAAAMAAAAAADIwAAAAAAIwAAAAAAJQAAAAADfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJQAAAAABIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAJQAAAAACfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJQAAAAABIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAJQAAAAACfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAJQAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAJQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAJQAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJQAAAAACIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAJQAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJQAAAAACIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAJQAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJQAAAAACIwAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAJQAAAAABIwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAJQAAAAAAIwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAQgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAawAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAeAAAAAACfAAAAAAAQgAAAAAAIwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAQgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAawAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAeAAAAAABfAAAAAAAQgAAAAAAIwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 @@ -105,99 +106,99 @@ entities: version: 6 0,-2: ind: 0,-2 - tiles: ZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACYAAAAAADZwAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAAAYAAAAAACZwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAWwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: WwAAAAABWwAAAAACWwAAAAABWwAAAAADfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAACfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAZwAAAAAAZwAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAQAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAZwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAZwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAADWwAAAAABWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAZwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAADOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAQAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: OQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAZwAAAAAAfAAAAAAAZwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAaQAAAAADfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAaQAAAAADZwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAaQAAAAACfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAADAAAAAACDAAAAAAADAAAAAABDAAAAAACZwAAAAAAaQAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAADAAAAAADDAAAAAAADAAAAAAADAAAAAABZwAAAAAAaQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAADAAAAAADDAAAAAACDAAAAAABDAAAAAAAZwAAAAAAaQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAaQAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAaQAAAAACfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAZwAAAAAAaQAAAAACZwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAawAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: OQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAZwAAAAAAfAAAAAAAWwAAAAACfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAABfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAACWwAAAAADWwAAAAABWwAAAAAAZwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAADWwAAAAAAWwAAAAABfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACDAAAAAABDAAAAAADDAAAAAABDAAAAAACWwAAAAADWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACDAAAAAACDAAAAAADDAAAAAADDAAAAAACWwAAAAADWwAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACDAAAAAADDAAAAAACDAAAAAAADAAAAAADWwAAAAAAWwAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAACWwAAAAADfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADWwAAAAABZwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAawAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAACagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAawAAAAAAaQAAAAACZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAaQAAAAACZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAaQAAAAACZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAaQAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAaQAAAAABZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAawAAAAAAWwAAAAADWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAWwAAAAACWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAACWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAABWwAAAAADWwAAAAAC version: 6 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAegAAAAADeAAAAAABeAAAAAAAeAAAAAACegAAAAACDgAAAAABegAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAegAAAAACeAAAAAADeAAAAAABeAAAAAACegAAAAACDgAAAAACegAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAegAAAAACeAAAAAACeAAAAAACeAAAAAADegAAAAAADgAAAAADDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAegAAAAACeAAAAAABeAAAAAADeAAAAAAAegAAAAACegAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAegAAAAACeAAAAAADeAAAAAADeAAAAAAAeAAAAAACeAAAAAACeAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAegAAAAAAeAAAAAABeAAAAAADeAAAAAAAeAAAAAADeAAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAegAAAAABegAAAAACegAAAAACegAAAAAAegAAAAACegAAAAABegAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAJgAAAAADfAAAAAAAeAAAAAABeAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAJgAAAAACJgAAAAAAJgAAAAADJgAAAAAAfAAAAAAAeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAJgAAAAACJgAAAAADJgAAAAABJgAAAAACJgAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJgAAAAABJgAAAAABJgAAAAAAJgAAAAADOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAegAAAAAAeAAAAAACeAAAAAAAeAAAAAABegAAAAABDgAAAAABegAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAegAAAAADeAAAAAACeAAAAAABeAAAAAADegAAAAAADgAAAAABegAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAegAAAAAAeAAAAAABeAAAAAADeAAAAAAAegAAAAADDgAAAAADDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAegAAAAABeAAAAAADeAAAAAABeAAAAAACegAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAegAAAAAAeAAAAAADeAAAAAABeAAAAAAAeAAAAAAAeAAAAAACeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAegAAAAAAeAAAAAACeAAAAAAAeAAAAAACeAAAAAAAeAAAAAAAeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAABegAAAAAAegAAAAAAegAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAABJgAAAAACfAAAAAAAeAAAAAAAeAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAJgAAAAABJgAAAAAAJgAAAAACJgAAAAADfAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAJgAAAAADJgAAAAADJgAAAAAAJgAAAAADJgAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJgAAAAADJgAAAAAAJgAAAAABJgAAAAACOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: egAAAAACDgAAAAABfAAAAAAAPgAAAAAAPgAAAAAAawAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAMwAAAAACMwAAAAABMwAAAAABegAAAAACDgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAMwAAAAAANAAAAAAANAAAAAACDgAAAAAADgAAAAADfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAMwAAAAABNAAAAAADNAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAMwAAAAACNAAAAAAANAAAAAADegAAAAADeAAAAAADeAAAAAACfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAMwAAAAABMwAAAAAAegAAAAADeAAAAAABeAAAAAADfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAegAAAAADeAAAAAABeAAAAAACawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAeAAAAAACeAAAAAACeAAAAAACfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAeAAAAAADeAAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAADDgAAAAACfAAAAAAAPgAAAAAAPgAAAAAAawAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAMwAAAAABMwAAAAACMwAAAAADegAAAAACDgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAMwAAAAABNAAAAAAANAAAAAADDgAAAAACDgAAAAACfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAMwAAAAADNAAAAAAANAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAMwAAAAAANAAAAAACNAAAAAAAegAAAAAAeAAAAAADeAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAMwAAAAABMwAAAAABegAAAAACeAAAAAACeAAAAAACfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAegAAAAACeAAAAAADeAAAAAADawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAeAAAAAACeAAAAAACeAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAeAAAAAADeAAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAeAAAAAADeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: OQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJgAAAAAAJgAAAAADJQAAAAADOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJgAAAAADJgAAAAACJQAAAAABOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJgAAAAADJgAAAAAAJQAAAAACOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAJgAAAAABJQAAAAADOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJgAAAAADJgAAAAACJQAAAAABOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAawAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJgAAAAADJgAAAAADJQAAAAABOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJgAAAAACJgAAAAABJQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAJgAAAAABJgAAAAACJQAAAAABeAAAAAADeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAJgAAAAAAJgAAAAACJQAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAACJgAAAAAAJQAAAAADeAAAAAADeAAAAAABeAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAJgAAAAACJgAAAAACJQAAAAACegAAAAAAeAAAAAACeAAAAAADawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAJgAAAAABJgAAAAADJQAAAAACegAAAAADeAAAAAAAeAAAAAADfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAJgAAAAACJgAAAAAAJQAAAAADegAAAAADeAAAAAABeAAAAAADfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAADgAAAAABDgAAAAADfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: OQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJgAAAAABJgAAAAACJQAAAAACOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJgAAAAACJgAAAAAAJQAAAAADOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJgAAAAABJgAAAAADJQAAAAABOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAJgAAAAABJQAAAAACOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJgAAAAADJgAAAAAAJQAAAAABOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAawAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJgAAAAADJgAAAAABJQAAAAABOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJgAAAAACJgAAAAAAJQAAAAABOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAJgAAAAABJgAAAAAAJQAAAAAAeAAAAAAAeAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAJgAAAAACJgAAAAABJQAAAAAAeAAAAAABeAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAACJgAAAAABJQAAAAABeAAAAAACeAAAAAABeAAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAJgAAAAACJgAAAAACJQAAAAAAegAAAAAAeAAAAAADeAAAAAACawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAJgAAAAABJgAAAAACJQAAAAADegAAAAADeAAAAAACeAAAAAADfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAJgAAAAACJgAAAAABJQAAAAACegAAAAAAeAAAAAAAeAAAAAABfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAADgAAAAABDgAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAADOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAeAAAAAADeAAAAAAAeAAAAAABeAAAAAACOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAeAAAAAACeAAAAAACeAAAAAAAeAAAAAAAfAAAAAAAeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAegAAAAABegAAAAAAegAAAAABfAAAAAAAfAAAAAAAeAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAABfAAAAAAAfAAAAAAAegAAAAAAeAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAegAAAAADegAAAAACegAAAAADegAAAAACegAAAAAAegAAAAABegAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAegAAAAABeAAAAAADeAAAAAACeAAAAAAAeAAAAAAAeAAAAAABeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAegAAAAADeAAAAAAAeAAAAAACeAAAAAACeAAAAAAAeAAAAAAAeAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAegAAAAAAeAAAAAACeAAAAAACeAAAAAADegAAAAABegAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAegAAAAADeAAAAAACeAAAAAACeAAAAAABegAAAAABDgAAAAABDgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAegAAAAADegAAAAACegAAAAACegAAAAACOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAeAAAAAABeAAAAAABeAAAAAADOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAeAAAAAAAeAAAAAACeAAAAAABeAAAAAAAfAAAAAAAeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAegAAAAAAegAAAAACegAAAAADfAAAAAAAfAAAAAAAeAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAegAAAAAAeAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAegAAAAABegAAAAABegAAAAABegAAAAADegAAAAABegAAAAABegAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAegAAAAADeAAAAAACeAAAAAABeAAAAAAAeAAAAAAAeAAAAAACeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAegAAAAAAeAAAAAACeAAAAAACeAAAAAACeAAAAAABeAAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAegAAAAACeAAAAAAAeAAAAAAAeAAAAAAAegAAAAADegAAAAABegAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAegAAAAACeAAAAAACeAAAAAAAeAAAAAABegAAAAAADgAAAAADDgAAAAAC version: 6 0,-6: ind: 0,-6 - tiles: aAAAAAACaAAAAAAALQAAAAAALQAAAAACaAAAAAABaAAAAAAAaAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAaAAAAAACaAAAAAAAaAAAAAACaAAAAAABaAAAAAADaAAAAAACaAAAAAACfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADWwAAAAACWwAAAAADaAAAAAACfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAXQAAAAABXQAAAAACfAAAAAAAfAAAAAAAaQAAAAABWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAXQAAAAACXQAAAAAAXQAAAAACIgAAAAABaQAAAAACaQAAAAAAWwAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAXQAAAAABXQAAAAADXQAAAAABIgAAAAADLQAAAAABaQAAAAACWwAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAXQAAAAABXQAAAAABXQAAAAAAIgAAAAABLQAAAAAAaQAAAAADWwAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAXQAAAAABLQAAAAACXQAAAAABIgAAAAADLQAAAAAAaQAAAAADWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAALQAAAAABLQAAAAABXQAAAAADIgAAAAACLQAAAAADaQAAAAABWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALQAAAAADLQAAAAACXQAAAAAAIgAAAAACLQAAAAABaQAAAAADWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXQAAAAABXQAAAAADXQAAAAACIgAAAAABaQAAAAACaQAAAAADWwAAAAABfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAJgAAAAADJQAAAAADXQAAAAACXQAAAAACfAAAAAAAfAAAAAAAaQAAAAACWwAAAAABWwAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADWwAAAAADWwAAAAADaAAAAAABfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAJgAAAAAAJgAAAAADJQAAAAAAaAAAAAABaAAAAAAAaAAAAAACaAAAAAADaAAAAAADaAAAAAACaAAAAAACfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAJgAAAAADJgAAAAADJQAAAAACaAAAAAACaAAAAAADaAAAAAABaAAAAAACaAAAAAADaAAAAAADaAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAADJgAAAAACJQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAaAAAAAACfAAAAAAAaAAAAAADfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAJgAAAAADJgAAAAACJQAAAAAA + tiles: WwAAAAADWwAAAAABLQAAAAACLQAAAAACWwAAAAADWwAAAAAAWwAAAAABfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAABWwAAAAACfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAACfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAQAAAAABAQAAAAABfAAAAAAAfAAAAAAAaQAAAAABWwAAAAACWwAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAQAAAAABAQAAAAACAQAAAAABIgAAAAAAaQAAAAADaQAAAAADWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAQAAAAACAQAAAAABAQAAAAACIgAAAAADLQAAAAABaQAAAAADWwAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAQAAAAADAQAAAAADAQAAAAAAIgAAAAADLQAAAAABaQAAAAACWwAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAQAAAAADAQAAAAABIgAAAAABLQAAAAAAaQAAAAADWwAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAQAAAAADAQAAAAADAQAAAAACIgAAAAAALQAAAAACaQAAAAAAWwAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADIgAAAAAALQAAAAADaQAAAAABWwAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAQAAAAACAQAAAAAAAQAAAAACIgAAAAADaQAAAAABaQAAAAACWwAAAAADfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAJgAAAAABJQAAAAACAQAAAAACAQAAAAADfAAAAAAAfAAAAAAAaQAAAAABWwAAAAADWwAAAAADfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAJgAAAAAAJgAAAAADJQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADWwAAAAAAWwAAAAACWwAAAAABfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAJgAAAAABJgAAAAACJQAAAAACWwAAAAADWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAADfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAJgAAAAABJgAAAAACJQAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAJgAAAAABJQAAAAACOQAAAAAAOQAAAAAAOQAAAAAAWwAAAAAAfAAAAAAAWwAAAAADfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAJgAAAAACJgAAAAAAJQAAAAAC version: 6 -1,-6: ind: -1,-6 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAaAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAaAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAawAAAAAAfAAAAAAAXQAAAAABXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAawAAAAAAXQAAAAABXQAAAAADXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAawAAAAAAXQAAAAAAXQAAAAACLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAawAAAAAAfAAAAAAAXQAAAAADXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAagAAAAAAfAAAAAAAXQAAAAADXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAaAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAawAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAOQAAAAAAOQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOgAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAABfAAAAAAAawAAAAAAfAAAAAAAAQAAAAACAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOgAAAAAAWwAAAAADOgAAAAAAWwAAAAACWwAAAAADOgAAAAAAawAAAAAAXQAAAAACAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOgAAAAAAWwAAAAAAOgAAAAAAWwAAAAADWwAAAAABOgAAAAAAawAAAAAAXQAAAAADAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOgAAAAAAWwAAAAABOgAAAAAAWwAAAAAAWwAAAAABfAAAAAAAawAAAAAAfAAAAAAAAQAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAOgAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAAQAAAAADAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAawAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAOQAAAAAAOQAAAAAA version: 6 -1,-7: ind: -1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAaAAAAAABfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAaAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAawAAAAAAaAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAaAAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAABWwAAAAACWwAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWwAAAAACWwAAAAACYgAAAAAAYgAAAAAAWwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAYgAAAAAAWwAAAAABYgAAAAAAWwAAAAABYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAawAAAAAAWwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAA version: 6 0,-7: ind: 0,-7 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAawAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAaAAAAAACaAAAAAACaAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAaAAAAAAAaAAAAAADaAAAAAADaAAAAAACaAAAAAABaAAAAAABaAAAAAABfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAaAAAAAAAaAAAAAAALQAAAAABLQAAAAABaAAAAAABaAAAAAABaAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAaAAAAAABaAAAAAACLQAAAAAALQAAAAADaAAAAAABaAAAAAAAaAAAAAADfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAWwAAAAAAWwAAAAABawAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAADYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAWwAAAAADWwAAAAACWwAAAAABfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAWwAAAAACWwAAAAADLQAAAAAALQAAAAACWwAAAAAAWwAAAAABWwAAAAACfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAWwAAAAAAWwAAAAADLQAAAAACLQAAAAADWwAAAAACWwAAAAACWwAAAAADfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,-8: ind: -1,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAGQAAAAAAfAAAAAAAawAAAAAAfAAAAAAAYgAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAHQAAAAADHQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAaAAAAAADeAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAaAAAAAABegAAAAACegAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAaAAAAAACeAAAAAADeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAeAAAAAACeAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAeAAAAAAAeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAeAAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAJQAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAYgAAAAAAYgAAAAAAJQAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAJQAAAAABQAAAAAAAQAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAGQAAAAAAfAAAAAAAawAAAAAAfAAAAAAAYgAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAYgAAAAAAWwAAAAACWwAAAAABWwAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfAAAAAAAWwAAAAABWwAAAAABWwAAAAABYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADWwAAAAAAYgAAAAAAHQAAAAABHQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWwAAAAACWwAAAAABfAAAAAAAfAAAAAAAeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfAAAAAAAWwAAAAACWwAAAAABfAAAAAAAegAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACWwAAAAACfAAAAAAAeAAAAAADeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWwAAAAAAWwAAAAADfAAAAAAAeAAAAAADeAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAWwAAAAADWwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACWwAAAAACfAAAAAAAeAAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWwAAAAADWwAAAAADfAAAAAAAeAAAAAACeAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAWwAAAAADWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAJQAAAAABQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWwAAAAABWwAAAAADJQAAAAABQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAWwAAAAACWwAAAAAAJQAAAAAAQAAAAAAAQAAAAAAA version: 6 0,-8: ind: 0,-8 - tiles: OQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAHQAAAAAAHQAAAAABYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAaAAAAAAAaAAAAAACfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAegAAAAABegAAAAACegAAAAACfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAeAAAAAAAeAAAAAACeAAAAAABeAAAAAAAYgAAAAAAYgAAAAAAHQAAAAADJAAAAAACJAAAAAADJAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAeAAAAAABeAAAAAACeAAAAAADfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAJAAAAAABJAAAAAABJAAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAeAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAJAAAAAABJAAAAAABJAAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAeAAAAAACeAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAHQAAAAADJAAAAAABJAAAAAACJAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAeAAAAAABeAAAAAADawAAAAAAfAAAAAAAagAAAAAAfAAAAAAAHQAAAAACJAAAAAABJAAAAAABJAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJAAAAAABJAAAAAACJAAAAAADJAAAAAACJAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAJAAAAAADJAAAAAAAJAAAAAAAJAAAAAABJAAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAawAAAAAAagAAAAAAagAAAAAAfAAAAAAAJAAAAAADJAAAAAADJAAAAAAAJAAAAAACJAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAA + tiles: OQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYgAAAAAAWwAAAAAAYgAAAAAAWwAAAAADWwAAAAABYgAAAAAAYgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYgAAAAAAWwAAAAAAWwAAAAACWwAAAAADYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAHQAAAAAAHQAAAAABYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAABYgAAAAAAYgAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAegAAAAAAegAAAAAAegAAAAACfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAeAAAAAABeAAAAAADeAAAAAABeAAAAAACYgAAAAAAWwAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAeAAAAAADeAAAAAAAeAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAHQAAAAAAHQAAAAADHQAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAHQAAAAADHQAAAAACHQAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAeAAAAAACeAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAeAAAAAACeAAAAAADawAAAAAAfAAAAAAAagAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAawAAAAAAagAAAAAAagAAAAAAfAAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAA version: 6 -1,-9: ind: -1,-9 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAeAAAAAACeAAAAAACeAAAAAADegAAAAAAfAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAegAAAAADeAAAAAABeAAAAAAAeAAAAAACegAAAAAAfAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAegAAAAAAeAAAAAAAeAAAAAADeAAAAAADegAAAAADQwAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAegAAAAACeAAAAAACeAAAAAACeAAAAAADegAAAAABQwAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAegAAAAACeAAAAAABeAAAAAACeAAAAAAAegAAAAABQwAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAegAAAAADeAAAAAACeAAAAAABeAAAAAADegAAAAABfAAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAANQAAAAADfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAANQAAAAAANQAAAAACQAAAAAAANQAAAAABfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAANQAAAAACNQAAAAADQAAAAAAANQAAAAADgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQwAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAANQAAAAADNQAAAAABQAAAAAAANQAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAANQAAAAACNQAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAagAAAAAAfAAAAAAAfAAAAAAAeAAAAAACeAAAAAABeAAAAAAAegAAAAAAfAAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAagAAAAAAfAAAAAAAegAAAAABeAAAAAAAeAAAAAACeAAAAAADegAAAAADfAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAagAAAAAAfAAAAAAAegAAAAAAeAAAAAADeAAAAAABeAAAAAACeAAAAAADQwAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAagAAAAAAfAAAAAAAegAAAAABeAAAAAAAeAAAAAABeAAAAAABeAAAAAACQwAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAagAAAAAAfAAAAAAAegAAAAAAeAAAAAADeAAAAAABeAAAAAABeAAAAAAAQwAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAAAfAAAAAAAegAAAAACeAAAAAACeAAAAAAAeAAAAAABegAAAAACfAAAAAAAWwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAAANQAAAAADfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAANQAAAAAANQAAAAAAagAAAAAANQAAAAADfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAANQAAAAADNQAAAAADagAAAAAANQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQwAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAANQAAAAABNQAAAAABagAAAAAANQAAAAACgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAANQAAAAAANQAAAAACagAAAAAAagAAAAAAagAAAAAAagAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAA version: 6 0,-9: ind: 0,-9 - tiles: ZwAAAAAASwAAAAAAaAAAAAAATAAAAAADTAAAAAABTAAAAAACaAAAAAACfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAZwAAAAAAfAAAAAAAaQAAAAADSwAAAAACTAAAAAACSwAAAAACaQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAZwAAAAAAfAAAAAAAQwAAAAAASwAAAAADaQAAAAACSwAAAAADQwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAZwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAZwAAAAAAfAAAAAAAJQAAAAACJQAAAAADJgAAAAABJgAAAAABJgAAAAABfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAZwAAAAAAfAAAAAAAJQAAAAADJQAAAAAAJgAAAAABJgAAAAABJgAAAAABQwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAZwAAAAAAfAAAAAAAfAAAAAAAHwAAAAACHwAAAAADHwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAZwAAAAAAZwAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAZwAAAAAAZwAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAA + tiles: WwAAAAACSwAAAAABHQAAAAACTAAAAAABTAAAAAAATAAAAAACHQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAWwAAAAABfAAAAAAAHQAAAAABHQAAAAAATAAAAAAAHQAAAAADHQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAWwAAAAAAfAAAAAAAQwAAAAAAHQAAAAACHQAAAAABHQAAAAACQwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAWwAAAAAAfAAAAAAAJQAAAAADJQAAAAADHQAAAAABHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAJQAAAAABJQAAAAABHQAAAAAAHQAAAAAAHQAAAAADQwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAACHQAAAAACfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAWwAAAAAAWwAAAAACfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAA version: 6 -1,-10: ind: -1,-10 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAJQAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAALQAAAAADJgAAAAACJgAAAAACJgAAAAAAJQAAAAABfAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAACJgAAAAABJQAAAAABQwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAJgAAAAACJgAAAAACJgAAAAABJgAAAAAAJQAAAAADfAAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAegAAAAADeAAAAAACeAAAAAACeAAAAAABegAAAAAAfAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAegAAAAACeAAAAAADeAAAAAACeAAAAAABegAAAAAAfAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAegAAAAADeAAAAAAAeAAAAAAAeAAAAAACegAAAAACfAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAegAAAAABeAAAAAACeAAAAAABeAAAAAAAegAAAAACfAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAegAAAAADeAAAAAACeAAAAAAAeAAAAAACegAAAAADfAAAAAAAZwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAagAAAAAAagAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAagAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAJQAAAAABOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAagAAAAAAfAAAAAAALQAAAAADJgAAAAABJgAAAAADJgAAAAABJQAAAAACfAAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAJgAAAAABJQAAAAADQwAAAAAAWwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAAAfAAAAAAAJgAAAAADJgAAAAABJgAAAAACJgAAAAADJQAAAAAAfAAAAAAAWwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAagAAAAAAfAAAAAAAegAAAAAAeAAAAAACeAAAAAABeAAAAAABegAAAAACfAAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAagAAAAAAfAAAAAAAegAAAAABeAAAAAADeAAAAAAAeAAAAAABegAAAAABfAAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAagAAAAAAfAAAAAAAegAAAAADeAAAAAADeAAAAAADeAAAAAABegAAAAABfAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAagAAAAAAfAAAAAAAegAAAAAAeAAAAAADeAAAAAACeAAAAAADegAAAAACfAAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAagAAAAAAfAAAAAAAegAAAAACeAAAAAABeAAAAAAAeAAAAAAAegAAAAACfAAAAAAAWwAAAAAB version: 6 0,-10: ind: 0,-10 - tiles: OQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAZwAAAAAAZwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAZwAAAAAAZwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAZwAAAAAAZwAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAZwAAAAAAfAAAAAAAaQAAAAACSwAAAAABaQAAAAABSwAAAAABaQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAZwAAAAAASwAAAAACaQAAAAAASwAAAAAATAAAAAADSwAAAAAAaQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAZwAAAAAASwAAAAACaQAAAAAASwAAAAABTAAAAAADSwAAAAACaQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAA + tiles: OQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAWwAAAAACWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAADWwAAAAADfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAACWwAAAAABWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAADWwAAAAABfAAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAWwAAAAACWwAAAAACfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAACfAAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAWwAAAAAASwAAAAADHQAAAAACHQAAAAACTAAAAAAAHQAAAAABHQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAWwAAAAACSwAAAAADHQAAAAADHQAAAAADTAAAAAAAHQAAAAABHQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAA version: 6 -1,-11: ind: -1,-11 - tiles: AAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAUAAAAAAAUAAAAAAALAAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAUAAAAAAAUAAAAAAALAAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAawAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAALAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAcgAAAAACcgAAAAABcgAAAAADbgAAAAADfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAcgAAAAADcgAAAAABbgAAAAADZwAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAfAAAAAAAcgAAAAABcgAAAAACcgAAAAABbgAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAfAAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAACfAAAAAAAgQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAADWwAAAAAAgQAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAWwAAAAADgQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAACgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAA + tiles: AAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAUAAAAAAAUAAAAAAALAAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAUAAAAAAAUAAAAAAALAAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAawAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAALAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAcgAAAAAAcgAAAAADcgAAAAABbgAAAAADfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAACcgAAAAABcgAAAAADbgAAAAABZwAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAfAAAAAAAcgAAAAAAcgAAAAADcgAAAAACbgAAAAABfAAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAfAAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAAAfAAAAAAAgQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAACbgAAAAABbgAAAAABbgAAAAABWwAAAAACgQAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAWwAAAAACgQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAA version: 6 0,-11: ind: 0,-11 - tiles: WwAAAAACWwAAAAACfAAAAAAAcgAAAAABbgAAAAADbgAAAAADbgAAAAAAbgAAAAADcgAAAAADfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAADWwAAAAADfAAAAAAAcgAAAAADbgAAAAAATAAAAAAATAAAAAABbgAAAAABcgAAAAADfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADWwAAAAABfAAAAAAAcgAAAAAAbgAAAAABTAAAAAABTAAAAAAAbgAAAAADcgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAACaQAAAAABcgAAAAACbgAAAAAAbgAAAAAAbgAAAAADbgAAAAABcgAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAAAaQAAAAAAcgAAAAACcgAAAAACcgAAAAAAcgAAAAADcgAAAAADcgAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAZwAAAAAAZwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAABfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADWwAAAAABZwAAAAAALAAAAAAATAAAAAAATAAAAAABTAAAAAACLAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADWwAAAAAAZwAAAAAALAAAAAAATAAAAAACLAAAAAAATAAAAAACLAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAAAZwAAAAAALAAAAAAATAAAAAABTAAAAAAATAAAAAADLAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADWwAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAADWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAWwAAAAABWwAAAAADfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACWwAAAAADawAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAA + tiles: WwAAAAABWwAAAAABfAAAAAAAcgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAABcgAAAAACfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAABWwAAAAABfAAAAAAAcgAAAAADbgAAAAABTAAAAAACTAAAAAABbgAAAAACcgAAAAACfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADWwAAAAABfAAAAAAAcgAAAAABbgAAAAABTAAAAAACTAAAAAACbgAAAAACcgAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAADaQAAAAAAcgAAAAACbgAAAAACbgAAAAADbgAAAAADbgAAAAACcgAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAADaQAAAAACcgAAAAAAcgAAAAABcgAAAAADcgAAAAACcgAAAAABcgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADWwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAZwAAAAAAZwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAABfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADWwAAAAAAZwAAAAAALAAAAAAATAAAAAADTAAAAAAATAAAAAABLAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAAAZwAAAAAALAAAAAAATAAAAAABLAAAAAAATAAAAAACLAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAABZwAAAAAALAAAAAAATAAAAAACTAAAAAAATAAAAAABLAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAADfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAADWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAWwAAAAACWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACWwAAAAADawAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAA version: 6 0,-12: ind: 0,-12 - tiles: dAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADWwAAAAADfAAAAAAAgQAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAAAZwAAAAAADAAAAAADDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAACWwAAAAABWwAAAAACWwAAAAADfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAWwAAAAACfAAAAAAAZwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAbgAAAAAAbgAAAAADbgAAAAADfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAABbgAAAAABbgAAAAABbgAAAAACbgAAAAACfAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAADfAAAAAAAcgAAAAADcgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAAAfAAAAAAAfAAAAAAAbgAAAAACbgAAAAAAfAAAAAAAcgAAAAAAcgAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAADfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAABcgAAAAABcgAAAAACfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: dAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACWwAAAAABfAAAAAAAgQAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAAAWwAAAAAAZwAAAAAADAAAAAACDAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAWwAAAAADfAAAAAAAZwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAbgAAAAACbgAAAAACbgAAAAABfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAABbgAAAAACbgAAAAABbgAAAAAAbgAAAAAAfAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAABbgAAAAADbgAAAAAAbgAAAAABbgAAAAABfAAAAAAAcgAAAAACcgAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAAAfAAAAAAAfAAAAAAAbgAAAAADbgAAAAADfAAAAAAAcgAAAAACcgAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAcgAAAAADcgAAAAAAcgAAAAABcgAAAAADcgAAAAAAcgAAAAADfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,-12: ind: -1,-12 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAQgAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAADWwAAAAABWwAAAAACWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAADWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAABfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAawAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAALAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAACWwAAAAADWwAAAAABfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAQgAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAAAWwAAAAADWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAawAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAALAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAA version: 6 -1,-13: ind: -1,-13 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAACOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAbwAAAAABbwAAAAACfAAAAAAAdwAAAAAAfAAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAbwAAAAADbwAAAAADdwAAAAADdwAAAAACZwAAAAAAWwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAbwAAAAACbwAAAAADfAAAAAAAdwAAAAADfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAABfAAAAAAAbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAbwAAAAACfAAAAAAAfAAAAAAAdwAAAAACfAAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAbwAAAAADbwAAAAACdwAAAAABdwAAAAADfAAAAAAAbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAbwAAAAACbwAAAAACfAAAAAAAdwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAAAfAAAAAAAbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAdwAAAAABdwAAAAAAdwAAAAACdwAAAAACdwAAAAABZwAAAAAAbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAdwAAAAABdwAAAAADdwAAAAACdwAAAAAAdwAAAAACfAAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAdwAAAAAAdwAAAAABTAAAAAADdwAAAAADdwAAAAACfAAAAAAAbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAdwAAAAADdwAAAAABTAAAAAADdwAAAAADdwAAAAABfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAdwAAAAABdwAAAAABdwAAAAADdwAAAAACdwAAAAAAfAAAAAAAcgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAdwAAAAACdwAAAAACdwAAAAAAdwAAAAABdwAAAAAAfAAAAAAAcgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdAAAAAAAfAAAAAAAfAAAAAAAdAAAAAAAfAAAAAAAcgAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAADOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAbwAAAAADbwAAAAACfAAAAAAAdwAAAAABfAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAbwAAAAACbwAAAAABdwAAAAADdwAAAAADZwAAAAAAWwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAbwAAAAABbwAAAAAAfAAAAAAAdwAAAAACfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAACfAAAAAAAbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAbwAAAAADfAAAAAAAfAAAAAAAdwAAAAACfAAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAbwAAAAAAbwAAAAACdwAAAAAAdwAAAAADfAAAAAAAbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAbwAAAAADbwAAAAAAfAAAAAAAdwAAAAACfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAABfAAAAAAAbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAdwAAAAADdwAAAAABdwAAAAADdwAAAAADdwAAAAADZwAAAAAAbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAdwAAAAAAdwAAAAACdwAAAAADdwAAAAABdwAAAAADfAAAAAAAbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAdwAAAAAAdwAAAAABTAAAAAABdwAAAAABdwAAAAADfAAAAAAAbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAdwAAAAAAdwAAAAABTAAAAAAAdwAAAAACdwAAAAACfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAdwAAAAACdwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAcgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAdwAAAAACdwAAAAAAdwAAAAAAdwAAAAACdwAAAAAAfAAAAAAAcgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdAAAAAAAfAAAAAAAfAAAAAAAdAAAAAAAfAAAAAAAcgAAAAAB version: 6 0,-13: ind: 0,-13 - tiles: OQAAAAAAOQAAAAAAOQAAAAAAWwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAABWwAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABZwAAAAAADAAAAAADDAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADWwAAAAAAfAAAAAAAgQAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAABfAAAAAAAWwAAAAABWwAAAAADfAAAAAAAgQAAAAAADAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbgAAAAACbgAAAAABbgAAAAABbgAAAAAAfAAAAAAAWwAAAAABWwAAAAADfAAAAAAAgQAAAAAADAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAABfAAAAAAAWwAAAAAAWwAAAAACWwAAAAADfAAAAAAAQAAAAAAADAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAbgAAAAACfAAAAAAAfAAAAAAAWwAAAAADWwAAAAADWwAAAAACfAAAAAAAQAAAAAAADAAAAAACDAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAABfAAAAAAAWwAAAAABWwAAAAABWwAAAAAAfAAAAAAAQAAAAAAAQAAAAAAADAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADdwAAAAACdwAAAAACbgAAAAABZwAAAAAAWwAAAAAAWwAAAAACWwAAAAADfAAAAAAADAAAAAABQAAAAAAAQAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADdwAAAAACdwAAAAAAbgAAAAABZwAAAAAAWwAAAAACWwAAAAAAWwAAAAABfAAAAAAADAAAAAADDAAAAAADDAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAABbgAAAAAAbgAAAAACfAAAAAAAWwAAAAACWwAAAAABWwAAAAACfAAAAAAAQAAAAAAADAAAAAADDAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAdAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADWwAAAAACWwAAAAABfAAAAAAAQAAAAAAAQAAAAAAADAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAACcgAAAAADcgAAAAAAfAAAAAAAWwAAAAAAWwAAAAADWwAAAAABfAAAAAAAQAAAAAAADAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAAAbgAAAAABcgAAAAAAfAAAAAAAWwAAAAADWwAAAAAAfAAAAAAAgQAAAAAADAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAABcgAAAAADcgAAAAACcgAAAAABfAAAAAAAWwAAAAADWwAAAAAAfAAAAAAAgQAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: OQAAAAAAOQAAAAAAOQAAAAAAWwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAZwAAAAAADAAAAAABDAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADWwAAAAADfAAAAAAAgQAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAADfAAAAAAAWwAAAAADWwAAAAACfAAAAAAAgQAAAAAADAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbgAAAAACbgAAAAACbgAAAAAAbgAAAAABfAAAAAAAWwAAAAABWwAAAAABfAAAAAAAgQAAAAAADAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAABfAAAAAAAWwAAAAACWwAAAAACWwAAAAACfAAAAAAAQAAAAAAADAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAbgAAAAACfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAADfAAAAAAAQAAAAAAADAAAAAADDAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAABfAAAAAAAWwAAAAABWwAAAAABWwAAAAADfAAAAAAAQAAAAAAAQAAAAAAADAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABdwAAAAAAdwAAAAACbgAAAAADZwAAAAAAWwAAAAACWwAAAAAAWwAAAAACfAAAAAAADAAAAAACQAAAAAAAQAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAADdwAAAAAAbgAAAAACZwAAAAAAWwAAAAAAWwAAAAACWwAAAAABfAAAAAAADAAAAAADDAAAAAABDAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABfAAAAAAAWwAAAAACWwAAAAACWwAAAAAAfAAAAAAAQAAAAAAADAAAAAADDAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAdAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADWwAAAAADWwAAAAAAfAAAAAAAQAAAAAAAQAAAAAAADAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAACcgAAAAABcgAAAAABcgAAAAABfAAAAAAAWwAAAAABWwAAAAACWwAAAAABfAAAAAAAQAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAABbgAAAAADcgAAAAABfAAAAAAAWwAAAAACWwAAAAAAfAAAAAAAgQAAAAAADAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAABcgAAAAAAcgAAAAAAcgAAAAABfAAAAAAAWwAAAAACWwAAAAACfAAAAAAAgQAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-14: ind: -1,-14 @@ -209,7 +210,7 @@ entities: version: 6 -1,-15: ind: -1,-15 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAfAAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAfAAAAAAAagAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAfAAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAfAAAAAAAagAAAAAA version: 6 0,-15: ind: 0,-15 @@ -217,27 +218,27 @@ entities: version: 6 -1,-16: ind: -1,-16 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJQAAAAAAWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAawAAAAAAfAAAAAAAWwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAJQAAAAABWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJQAAAAACWwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADWwAAAAAAWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACWwAAAAABWwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAWwAAAAADTAAAAAABWwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAADTAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAACWwAAAAACTAAAAAACWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAATAAAAAADWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAWwAAAAAAWwAAAAABWwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJQAAAAACWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAawAAAAAAfAAAAAAAWwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAJQAAAAACWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJQAAAAABWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAABWwAAAAAAWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACWwAAAAABWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAWwAAAAACTAAAAAADWwAAAAADWwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAABTAAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAABWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAAATAAAAAABWwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAATAAAAAABWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAWwAAAAACWwAAAAACWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAA version: 6 0,-16: ind: 0,-16 - tiles: aQAAAAACWwAAAAAAfAAAAAAAZAAAAAACZAAAAAADZAAAAAAAZAAAAAADMwAAAAADMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAaQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAACMwAAAAADMwAAAAACMwAAAAACMwAAAAACfAAAAAAAZAAAAAAAZAAAAAACfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAaQAAAAADfAAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAABMwAAAAADMwAAAAADMwAAAAABfAAAAAAAZAAAAAACZAAAAAAAfAAAAAAAfAAAAAAAMwAAAAACMwAAAAAAaQAAAAACfAAAAAAAMwAAAAADNAAAAAADNAAAAAACNAAAAAADNAAAAAACNAAAAAADMwAAAAADZAAAAAABZAAAAAADZAAAAAAAfAAAAAAAfAAAAAAAMwAAAAACMwAAAAAAaQAAAAADWwAAAAACMwAAAAAANAAAAAACNAAAAAAANAAAAAADNAAAAAADNAAAAAADMwAAAAAAfAAAAAAAHQAAAAADHQAAAAADfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAACaQAAAAAAWwAAAAABMwAAAAADNAAAAAABNAAAAAACNAAAAAAANAAAAAAANAAAAAADMwAAAAACfAAAAAAAHQAAAAADHQAAAAACfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAaQAAAAABfAAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAADaQAAAAABfAAAAAAAfAAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAABMwAAAAADMwAAAAADMwAAAAACMwAAAAADMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAADaQAAAAAAWwAAAAAAfAAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAADMwAAAAAAMwAAAAADfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAMwAAAAACaQAAAAADWwAAAAACfAAAAAAAMwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAMwAAAAABaQAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAMwAAAAADaQAAAAADWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAABfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAaQAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAADfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAWwAAAAAATQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAACWwAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAKgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAKgAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAKgAAAAAA + tiles: aQAAAAABWwAAAAAAfAAAAAAAZAAAAAACZAAAAAAAZAAAAAABZAAAAAABMwAAAAACMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAABaQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAADMwAAAAAAMwAAAAAAMwAAAAABMwAAAAABfAAAAAAAZAAAAAABZAAAAAABfAAAAAAAfAAAAAAAMwAAAAACMwAAAAADaQAAAAABfAAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAACMwAAAAACfAAAAAAAZAAAAAABZAAAAAADfAAAAAAAfAAAAAAAMwAAAAABMwAAAAABaQAAAAAAfAAAAAAAMwAAAAABNAAAAAAANAAAAAACNAAAAAACNAAAAAABNAAAAAABMwAAAAABZAAAAAABZAAAAAABZAAAAAADfAAAAAAAfAAAAAAAMwAAAAACMwAAAAABaQAAAAADWwAAAAABMwAAAAAANAAAAAAANAAAAAAANAAAAAABNAAAAAAANAAAAAAAMwAAAAAAfAAAAAAAHQAAAAABHQAAAAABfAAAAAAAfAAAAAAAMwAAAAABMwAAAAAAaQAAAAADWwAAAAABMwAAAAABNAAAAAACNAAAAAABNAAAAAAANAAAAAABNAAAAAADMwAAAAABfAAAAAAAHQAAAAACHQAAAAABfAAAAAAAfAAAAAAAMwAAAAABMwAAAAADaQAAAAABfAAAAAAAMwAAAAABMwAAAAADMwAAAAACMwAAAAAAMwAAAAAAMwAAAAABMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAABaQAAAAACfAAAAAAAfAAAAAAAMwAAAAABMwAAAAACMwAAAAABMwAAAAABMwAAAAADMwAAAAACMwAAAAACMwAAAAADMwAAAAABMwAAAAADMwAAAAACMwAAAAAAMwAAAAACaQAAAAABWwAAAAAAfAAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAACfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAMwAAAAAAaQAAAAADWwAAAAADfAAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAMwAAAAACaQAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAADWwAAAAAAWwAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAMwAAAAAAaQAAAAADWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAABWwAAAAAAWwAAAAABfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAaQAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADawAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAawAAAAAATQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAABWwAAAAADfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAKgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAKgAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAKgAAAAAA version: 6 -1,-17: ind: -1,-17 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAMwAAAAADNAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAABWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAANAAAAAABMwAAAAADMwAAAAABMwAAAAADMwAAAAADMwAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAADMwAAAAACMwAAAAABOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfgAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfgAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAABWwAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAMwAAAAACNAAAAAAANAAAAAADNAAAAAADNAAAAAADNAAAAAADNAAAAAABWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAANAAAAAABMwAAAAACMwAAAAADMwAAAAABMwAAAAADMwAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAACMwAAAAADOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAfAAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAADfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAfAAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAACfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAfAAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAABfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAACWwAAAAADawAAAAAAfgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfgAAAAAAfAAAAAAAWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfgAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADWwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAWwAAAAADWwAAAAACWwAAAAAC version: 6 0,-17: ind: 0,-17 - tiles: WwAAAAADWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAACfAAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAWwAAAAAAfAAAAAAAWwAAAAABfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAQAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAQAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAQAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAMwAAAAADaQAAAAACWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAMwAAAAADaQAAAAACWwAAAAABfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfgAAAAAAfAAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAMwAAAAACaQAAAAABWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAaQAAAAACWwAAAAAAfAAAAAAAZAAAAAABZAAAAAABZAAAAAABZAAAAAAAMwAAAAADMwAAAAADfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAMwAAAAADaQAAAAACWwAAAAAAZAAAAAAAZAAAAAACZAAAAAABZAAAAAABZAAAAAABMwAAAAACMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAAAMwAAAAAAMwAAAAADMwAAAAAD + tiles: WwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAACfAAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAWwAAAAACfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAADOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAWwAAAAABOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAADOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAMwAAAAADaQAAAAAAWwAAAAABawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAMwAAAAADaQAAAAABWwAAAAADfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfgAAAAAAfAAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAMwAAAAADaQAAAAADWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAaQAAAAAAWwAAAAADfAAAAAAAZAAAAAADZAAAAAADZAAAAAAAZAAAAAAAMwAAAAABMwAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAMwAAAAABaQAAAAABWwAAAAABZAAAAAADZAAAAAADZAAAAAACZAAAAAADZAAAAAADMwAAAAADMwAAAAADMwAAAAAAMwAAAAABMwAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAAD version: 6 1,-16: ind: 1,-16 - tiles: MwAAAAACMwAAAAACMwAAAAABMwAAAAADfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAACNAAAAAAANAAAAAAAMwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAABNAAAAAADNAAAAAAAMwAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAADNAAAAAADNAAAAAAAMwAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAATQAAAAAAKgAAAAAAKgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAATQAAAAAAKgAAAAAAKgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAATQAAAAAAKgAAAAAAKgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: MwAAAAABMwAAAAAAMwAAAAADMwAAAAABfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAADMwAAAAAAMwAAAAACMwAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAABNAAAAAAANAAAAAABMwAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAABNAAAAAADNAAAAAAAMwAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAABNAAAAAACNAAAAAACMwAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAATQAAAAAAKgAAAAAAKgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAATQAAAAAAKgAAAAAAKgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAATQAAAAAAKgAAAAAAKgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-17: ind: 1,-17 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAMwAAAAACfAAAAAAAfAAAAAAAMwAAAAABfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAMwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAANAAAAAADNAAAAAACfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAANAAAAAABNAAAAAADNAAAAAAAMwAAAAABfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAANAAAAAAANAAAAAABNAAAAAACMwAAAAABfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAABWwAAAAABfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAACWwAAAAACfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAMwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAANAAAAAACNAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAANAAAAAACNAAAAAAANAAAAAAAMwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAANAAAAAACNAAAAAABNAAAAAACMwAAAAACfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAA version: 6 1,-9: ind: 1,-9 @@ -261,43 +262,43 @@ entities: version: 6 -1,-20: ind: -1,-20 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAfAAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAABTAAAAAADTAAAAAABHQAAAAACfAAAAAAAaQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAATAAAAAADTAAAAAADHQAAAAABHQAAAAADaQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAABTAAAAAAATAAAAAAAHQAAAAACfAAAAAAAaQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAACfAAAAAAAaQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACfAAAAAAAaQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAHQAAAAAAHQAAAAADfAAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAHQAAAAADHQAAAAAAfAAAAAAAaQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAABfAAAAAAAHQAAAAACaQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAaAAAAAAAaAAAAAABaAAAAAACaAAAAAABaAAAAAADaAAAAAADaAAAAAADaAAAAAABaQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAQgAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAADaQAAAAABAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAaAAAAAABaAAAAAACaAAAAAACaAAAAAABaAAAAAABaAAAAAACaAAAAAABaAAAAAABaQAAAAADAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADfAAAAAAAHQAAAAABaQAAAAACAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHQAAAAACHQAAAAAAfAAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAACfAAAAAAAaQAAAAABAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAHQAAAAABHQAAAAACfAAAAAAAHQAAAAACHQAAAAACTAAAAAACTAAAAAAAHQAAAAACfAAAAAAAaQAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAACfAAAAAAAaQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAATAAAAAABTAAAAAAAHQAAAAABfAAAAAAAaQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACTAAAAAADTAAAAAADHQAAAAAAHQAAAAACaQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAABTAAAAAADTAAAAAAAHQAAAAADfAAAAAAAaQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABfAAAAAAAaQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAADfAAAAAAAaQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACfAAAAAAAaQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAHQAAAAADHQAAAAACfAAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAHQAAAAABHQAAAAABfAAAAAAAaQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAACfAAAAAAAHQAAAAAAaQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAaAAAAAACaAAAAAAAaAAAAAADaAAAAAAAaAAAAAACaAAAAAACaAAAAAACaAAAAAABaQAAAAACAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAQgAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAADaQAAAAACAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAaAAAAAAAaAAAAAACaAAAAAAAaAAAAAABaAAAAAADaAAAAAABaAAAAAAAaAAAAAABaQAAAAABAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACfAAAAAAAHQAAAAACaQAAAAACAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHQAAAAABHQAAAAADfAAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAACfAAAAAAAaQAAAAADAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAHQAAAAADHQAAAAADfAAAAAAAHQAAAAACHQAAAAACTAAAAAACTAAAAAAAHQAAAAACfAAAAAAAaQAAAAAD version: 6 0,-20: ind: 0,-20 - tiles: WwAAAAACaQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAAAaQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAWwAAAAADaQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAABaQAAAAACfAAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAaQAAAAAAfAAAAAAAHQAAAAABXQAAAAADXQAAAAACXQAAAAABHQAAAAABHQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAABaQAAAAAAfAAAAAAAQAAAAAAAQAAAAAAATAAAAAAAXQAAAAABHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAWwAAAAADaQAAAAAAfAAAAAAAQAAAAAAAQAAAAAAATAAAAAADXQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAADaQAAAAAAfAAAAAAAQAAAAAAAQAAAAAAATAAAAAADXQAAAAADHQAAAAABfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACaQAAAAADfAAAAAAAHQAAAAADXQAAAAAAXQAAAAACXQAAAAACHQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACaQAAAAACfAAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABaQAAAAABHQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAACaAAAAAACaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAACaAAAAAAAaAAAAAAAaAAAAAABaAAAAAAAaAAAAAACOQAAAAAAgQAAAAAAgQAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAABOQAAAAAAOQAAAAAAOQAAAAAAWwAAAAADWwAAAAABaAAAAAABaAAAAAADaAAAAAACaAAAAAAAaAAAAAADaAAAAAAAaAAAAAADaAAAAAAAaAAAAAADaAAAAAADaAAAAAABOQAAAAAAgQAAAAAAgQAAAAAAWwAAAAAAaQAAAAAAHQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAaQAAAAAAfAAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WwAAAAABaQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAACaQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAWwAAAAADaQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAAAaQAAAAACfAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADaQAAAAABfAAAAAAAHQAAAAABXQAAAAABXQAAAAACXQAAAAADHQAAAAABHQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAACaQAAAAAAfAAAAAAAQAAAAAAAQAAAAAAATAAAAAABXQAAAAAAHQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAWwAAAAADaQAAAAADfAAAAAAAQAAAAAAAQAAAAAAATAAAAAABXQAAAAACHQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAACaQAAAAACfAAAAAAAQAAAAAAAQAAAAAAATAAAAAACXQAAAAADHQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAaQAAAAACfAAAAAAAHQAAAAACXQAAAAAAXQAAAAACXQAAAAABHQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACaQAAAAABfAAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADaQAAAAADHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAWwAAAAADWwAAAAACaAAAAAAAaAAAAAADaAAAAAADaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAADaAAAAAACaAAAAAADaAAAAAABaAAAAAACOQAAAAAAgQAAAAAAgQAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAACOQAAAAAAOQAAAAAAOQAAAAAAWwAAAAABWwAAAAAAaAAAAAADaAAAAAACaAAAAAABaAAAAAABaAAAAAADaAAAAAACaAAAAAABaAAAAAADaAAAAAACaAAAAAABaAAAAAADOQAAAAAAgQAAAAAAgQAAAAAAWwAAAAADaQAAAAABHQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAWwAAAAABaQAAAAAAfAAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-18: ind: 0,-18 - tiles: WwAAAAADfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABfAAAAAAAfAAAAAAAfAAAAAAANQAAAAABNQAAAAABNQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADfAAAAAAAfAAAAAAAfAAAAAAANQAAAAAANQAAAAAANQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAABfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADGgAAAAABWwAAAAAAWwAAAAACWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAANQAAAAACNQAAAAADNQAAAAADNQAAAAADNQAAAAAANQAAAAADGwAAAAADGgAAAAAAGgAAAAADGgAAAAABGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADNQAAAAABNQAAAAAANQAAAAAANQAAAAABNQAAAAABNQAAAAABGwAAAAADGgAAAAAAWwAAAAAAWwAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADNQAAAAACNQAAAAABNQAAAAAANQAAAAAANQAAAAADNQAAAAAAGwAAAAADGgAAAAACGgAAAAAAGgAAAAABGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAADGwAAAAAAGwAAAAADGgAAAAADWwAAAAACWwAAAAADWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAADGgAAAAACGgAAAAAAGgAAAAACGgAAAAABGgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADWwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAADWwAAAAACWwAAAAACfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADWwAAAAAAfAAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WwAAAAADfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANQAAAAADNQAAAAADNQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAANQAAAAAANQAAAAADNQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAADGgAAAAABGgAAAAABGgAAAAACGgAAAAABfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAACGwAAAAABGgAAAAACWwAAAAAAWwAAAAABWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABNQAAAAABNQAAAAADNQAAAAACNQAAAAADNQAAAAABNQAAAAADGwAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAANQAAAAACNQAAAAACNQAAAAABNQAAAAABNQAAAAABNQAAAAAAGwAAAAABGgAAAAADWwAAAAACWwAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACNQAAAAADNQAAAAABNQAAAAADNQAAAAACNQAAAAAANQAAAAAAGwAAAAABGgAAAAADGgAAAAACGgAAAAACGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAABGgAAAAADWwAAAAADWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAABGgAAAAADGgAAAAABGgAAAAADGgAAAAAAGgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAABWwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAADfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAACfAAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAAAWwAAAAACWwAAAAABWwAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-18: ind: -1,-18 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAMwAAAAADNAAAAAAANAAAAAABNAAAAAACMwAAAAACfAAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAMwAAAAABNAAAAAABMwAAAAABMwAAAAABWwAAAAACfAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAMwAAAAAANAAAAAACMwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAMwAAAAAANAAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAMwAAAAACNAAAAAAAfAAAAAAAWwAAAAACWwAAAAAAWwAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAANAAAAAABfAAAAAAAWwAAAAADWwAAAAADfAAAAAAAGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAADfAAAAAAAGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAACTAAAAAAATAAAAAADWwAAAAABWwAAAAABGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAATAAAAAACTAAAAAACWwAAAAAAWwAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAADTAAAAAAATAAAAAABWwAAAAAAWwAAAAADGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAABfAAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAACWwAAAAAAfAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAMwAAAAAAMwAAAAABNAAAAAADfAAAAAAAWwAAAAADWwAAAAAAWwAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAMwAAAAABMwAAAAACNAAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAABNAAAAAADNAAAAAABNAAAAAACMwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAABNAAAAAACNAAAAAACNAAAAAADMwAAAAADMwAAAAABWwAAAAADfAAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAMwAAAAABNAAAAAABNAAAAAAANAAAAAABMwAAAAABfAAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAMwAAAAADNAAAAAAAMwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAMwAAAAABNAAAAAACfAAAAAAAfAAAAAAAWwAAAAACWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAMwAAAAAANAAAAAACfAAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAMwAAAAACNAAAAAACfAAAAAAAWwAAAAAAWwAAAAACfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAANAAAAAACfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAfAAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAADTAAAAAABTAAAAAABWwAAAAABWwAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAADTAAAAAAATAAAAAADWwAAAAADWwAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAATAAAAAACTAAAAAADWwAAAAADWwAAAAADGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAADfAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADfAAAAAAAWwAAAAACWwAAAAADfAAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAMwAAAAAAMwAAAAACNAAAAAADfAAAAAAAWwAAAAADWwAAAAADfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAACNAAAAAACfAAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAANAAAAAADNAAAAAABNAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADWwAAAAACWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAACNAAAAAADNAAAAAAANAAAAAABMwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 0,-19: ind: 0,-19 - tiles: WwAAAAACaQAAAAABfAAAAAAAHQAAAAADTAAAAAAATAAAAAADTAAAAAACHQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACaQAAAAADfAAAAAAAHQAAAAADTAAAAAABTAAAAAACTAAAAAAAHQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABaQAAAAACfAAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAAAaQAAAAACfAAAAAAAHQAAAAABHQAAAAADQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAagAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAWwAAAAACaQAAAAABfAAAAAAAHQAAAAAAHQAAAAADQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAAAaQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAaQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WwAAAAABaQAAAAADfAAAAAAAHQAAAAABTAAAAAADTAAAAAACTAAAAAACHQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABaQAAAAACfAAAAAAAHQAAAAAATAAAAAADTAAAAAABTAAAAAABHQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACaQAAAAACfAAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAADaQAAAAACfAAAAAAAHQAAAAABHQAAAAABQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAagAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAWwAAAAAAaQAAAAACfAAAAAAAHQAAAAADHQAAAAADQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAAAaQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACaQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-19: ind: -1,-19 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAAATAAAAAACTAAAAAACHQAAAAADfAAAAAAAaQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAHQAAAAABHQAAAAABfAAAAAAAHQAAAAAAHQAAAAAATAAAAAADTAAAAAADHQAAAAADfAAAAAAAaQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAAAfAAAAAAAaQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAfAAAAAAAaQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAANgAAAAAAQAAAAAAAHQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHQAAAAAAHQAAAAADfAAAAAAAaQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAaQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAaQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAMwAAAAADMwAAAAABMwAAAAABMwAAAAACOQAAAAAAOQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAABTAAAAAACTAAAAAACHQAAAAABfAAAAAAAaQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAHQAAAAABHQAAAAADfAAAAAAAHQAAAAACHQAAAAAATAAAAAACTAAAAAABHQAAAAABfAAAAAAAaQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAHQAAAAACfAAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAfAAAAAAAaQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABfAAAAAAAaQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAANgAAAAAAQAAAAAAAHQAAAAACQAAAAAAAQAAAAAAAQAAAAAAAHQAAAAACHQAAAAABfAAAAAAAaQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAaQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAaQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAABOQAAAAAAOQAAAAAA version: 6 -1,-21: ind: -1,-21 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAACfAAAAAAAMwAAAAAAMwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAMwAAAAACMwAAAAADMwAAAAAAfAAAAAAAfAAAAAAAMwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAADMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAACMwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJQAAAAADMwAAAAABMwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJQAAAAADMwAAAAACMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJQAAAAABMwAAAAADMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAANAAAAAACMwAAAAAAMwAAAAACOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAagAAAAAAOQAAAAAAOQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAMwAAAAADMwAAAAAAMwAAAAAAMwAAAAABfAAAAAAAMwAAAAACMwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAACMwAAAAACfAAAAAAAfAAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAADMwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAACMwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJQAAAAADMwAAAAAAMwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJQAAAAAAMwAAAAADMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJQAAAAABMwAAAAAAMwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAANAAAAAABMwAAAAAAMwAAAAACOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAOAAAAAAAgQAAAAAAgQAAAAAAKgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACfAAAAAAAagAAAAAAOQAAAAAAOQAAAAAA version: 6 0,-21: ind: 0,-21 - tiles: NAAAAAADMwAAAAABMwAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAADMwAAAAACMwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAADMwAAAAADMwAAAAABfAAAAAAAegAAAAAAeAAAAAAAeAAAAAACfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAABMwAAAAABMwAAAAABfAAAAAAAegAAAAACeAAAAAABeAAAAAABfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANAAAAAACMwAAAAAAMwAAAAAAegAAAAACegAAAAAAeAAAAAAAeAAAAAADfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANAAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAegAAAAAAeAAAAAAAeAAAAAACfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAegAAAAADeAAAAAADfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: NAAAAAAAMwAAAAADMwAAAAABfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAABMwAAAAAAMwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAABMwAAAAABMwAAAAABfAAAAAAAegAAAAAAeAAAAAACeAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAABMwAAAAAAMwAAAAACfAAAAAAAegAAAAAAeAAAAAABeAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANAAAAAACMwAAAAADMwAAAAADegAAAAAAegAAAAAAeAAAAAADeAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANAAAAAADMwAAAAACMwAAAAAAfAAAAAAAegAAAAABeAAAAAACeAAAAAABfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAegAAAAADeAAAAAABfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-20: ind: 1,-20 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAHQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAHQAAAAABfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAHQAAAAACfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAQAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAQAAAAAAAawAAAAAAawAAAAAANgAAAAAAfAAAAAAANgAAAAAAawAAAAAAawAAAAAAQAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAQAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAQAAAAAAAQAAAAAAAQAAAAAAANgAAAAAAQAAAAAAAfAAAAAAAgQAAAAAAOQAAAAAAQAAAAAAAawAAAAAAawAAAAAANgAAAAAAfAAAAAAANgAAAAAAawAAAAAAawAAAAAAQAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAQAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAACfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAHQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAHQAAAAACfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAHQAAAAABfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAQAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAQAAAAAAAawAAAAAAawAAAAAANgAAAAAAfAAAAAAANgAAAAAAawAAAAAAawAAAAAAQAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAQAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAQAAAAAAAQAAAAAAAQAAAAAAANgAAAAAAQAAAAAAAfAAAAAAAgQAAAAAAOQAAAAAAQAAAAAAAawAAAAAAawAAAAAANgAAAAAAfAAAAAAANgAAAAAAawAAAAAAawAAAAAAQAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAQAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-19: ind: 1,-19 - tiles: AAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAHQAAAAABfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAHQAAAAADfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAHQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAACfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAHQAAAAABfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAHQAAAAABfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAHQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAABfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAADfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-21: ind: 1,-21 @@ -305,35 +306,35 @@ entities: version: 6 0,-22: ind: 0,-22 - tiles: OQAAAAAAOQAAAAAAgQAAAAAAAAAAAAAAewAAAAAAOAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAAAAAAAAAewAAAAAAOAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAQgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAACQgAAAAAAQgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAQgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANAAAAAACMwAAAAABMwAAAAABfAAAAAAATQAAAAAAagAAAAAAagAAAAAAagAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAADMwAAAAABMwAAAAABMwAAAAADfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAADMwAAAAADMwAAAAAAMwAAAAADagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAATQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAACMwAAAAADMwAAAAACMwAAAAACfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAADMwAAAAACMwAAAAABfAAAAAAATQAAAAAAagAAAAAATQAAAAAAagAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAABMwAAAAAAMwAAAAAAfAAAAAAATQAAAAAAagAAAAAATQAAAAAAagAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAMwAAAAADMwAAAAADfAAAAAAATQAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: OQAAAAAAOQAAAAAAgQAAAAAAAAAAAAAAewAAAAAAOAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAAAAAAAAAewAAAAAAOAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAADQgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAQgAAAAAAQgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAQgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANAAAAAACfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANAAAAAAAMwAAAAACMwAAAAACfAAAAAAATQAAAAAAagAAAAAAagAAAAAAagAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAADMwAAAAABMwAAAAACMwAAAAADfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAADMwAAAAADMwAAAAAAMwAAAAABagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAATQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAABMwAAAAABMwAAAAABMwAAAAABfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAMwAAAAAAMwAAAAABfAAAAAAATQAAAAAAagAAAAAATQAAAAAAagAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAMwAAAAAAMwAAAAACfAAAAAAATQAAAAAAagAAAAAATQAAAAAAagAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAACMwAAAAACMwAAAAADfAAAAAAATQAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-22: ind: -1,-22 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAOAAAAAAAewAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAOAAAAAAAewAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAACMwAAAAAAMwAAAAABfAAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAABMwAAAAAAMwAAAAABfAAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAADfAAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAACMwAAAAADMwAAAAACMwAAAAABMwAAAAABfAAAAAAAMwAAAAACMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAMwAAAAABMwAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAABfAAAAAAAMwAAAAAAMwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAADMwAAAAACMwAAAAACfAAAAAAAMwAAAAABMwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAAAMwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAMwAAAAACMwAAAAAAMwAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAAAMwAAAAABMwAAAAAAfAAAAAAAMwAAAAADMwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAMwAAAAACMwAAAAADMwAAAAAAMwAAAAABMwAAAAABfAAAAAAAMwAAAAAAMwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAOAAAAAAAewAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAOAAAAAAAewAAAAAAAAAAAAAAgQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAACMwAAAAABMwAAAAABfAAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAMwAAAAABMwAAAAADMwAAAAADMwAAAAADfAAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAAAfAAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAADMwAAAAADMwAAAAABMwAAAAACMwAAAAACfAAAAAAAMwAAAAABMwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAADMwAAAAABfAAAAAAAMwAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAACMwAAAAADMwAAAAABMwAAAAADMwAAAAADfAAAAAAAMwAAAAADMwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAABMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAMwAAAAABMwAAAAADMwAAAAADMwAAAAABMwAAAAAAMwAAAAADMwAAAAADMwAAAAABMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAMwAAAAADMwAAAAADMwAAAAAAMwAAAAABMwAAAAADMwAAAAABfAAAAAAAMwAAAAACMwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAMwAAAAACMwAAAAADMwAAAAADMwAAAAADMwAAAAACfAAAAAAAMwAAAAAAMwAAAAAA version: 6 0,-23: ind: 0,-23 - tiles: QAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAMwAAAAACfAAAAAAAHgAAAAADHgAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIgAAAAABJQAAAAACfAAAAAAAJgAAAAADJQAAAAAAJgAAAAACHgAAAAABHgAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIgAAAAABJQAAAAABfAAAAAAAJgAAAAADJQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIgAAAAACJQAAAAACfAAAAAAAJgAAAAAAJQAAAAADfAAAAAAAHgAAAAABHgAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIgAAAAACJQAAAAAAfAAAAAAAJgAAAAAAJQAAAAADJgAAAAABHgAAAAADHgAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIgAAAAACJQAAAAABfAAAAAAAJgAAAAADJQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAJgAAAAABHQAAAAADJQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAJgAAAAADJgAAAAADHQAAAAABJgAAAAADJQAAAAACIgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAABHQAAAAADJgAAAAACJQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAADHQAAAAACJQAAAAADfAAAAAAAHgAAAAACHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAHQAAAAAAHQAAAAABJQAAAAABNAAAAAACHgAAAAACHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAABJQAAAAAAfAAAAAAAHgAAAAACHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAHgAAAAAAHgAAAAABfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAAAAAAAAAewAAAAAAOAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: QAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAMwAAAAABfAAAAAAAHgAAAAADHgAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIgAAAAACJQAAAAAAfAAAAAAAJgAAAAACJQAAAAABJgAAAAAAHgAAAAACHgAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIgAAAAACJQAAAAACfAAAAAAAJgAAAAABJQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIgAAAAACJQAAAAADfAAAAAAAJgAAAAABJQAAAAACfAAAAAAAHgAAAAADHgAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIgAAAAACJQAAAAADfAAAAAAAJgAAAAAAJQAAAAADJgAAAAACHgAAAAADHgAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIgAAAAABJQAAAAADfAAAAAAAJgAAAAABJQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQAAAAAAAfAAAAAAAJgAAAAACHQAAAAACJQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAJgAAAAADJgAAAAADHQAAAAABJgAAAAAAJQAAAAADIgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAABHQAAAAABJgAAAAADJQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAADHQAAAAACJQAAAAACfAAAAAAAHgAAAAADHgAAAAABfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAHQAAAAAAHQAAAAADJQAAAAACNAAAAAAAHgAAAAAAHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABJgAAAAACJQAAAAADfAAAAAAAHgAAAAADHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAHgAAAAACHgAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAAAAAAAAAewAAAAAAOAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-23: ind: -1,-23 - tiles: AAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHgAAAAABHgAAAAADfAAAAAAAMwAAAAACfAAAAAAAfAAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHgAAAAABHgAAAAAAJgAAAAABJQAAAAADJgAAAAACfAAAAAAAJQAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJQAAAAAAJgAAAAAAfAAAAAAAJQAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHgAAAAAAHgAAAAAAJgAAAAAAJQAAAAAAJgAAAAAAfAAAAAAAJQAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHgAAAAABHgAAAAABJgAAAAACJQAAAAACJgAAAAAAfAAAAAAAJQAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJQAAAAADJgAAAAAAfAAAAAAAJQAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAIQAAAAACJQAAAAADHQAAAAAAJgAAAAABfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAIQAAAAADIQAAAAABIQAAAAACJQAAAAABJgAAAAABHQAAAAACJgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJQAAAAABJgAAAAAAHQAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAfAAAAAAAJQAAAAAAHQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABNAAAAAADJQAAAAACHQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAHwAAAAADHwAAAAAAHwAAAAABfAAAAAAAJQAAAAABJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAHwAAAAAAHwAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAOAAAAAAAewAAAAAAAAAAAAAAgQAAAAAAOQAAAAAA + tiles: AAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHgAAAAABHgAAAAADfAAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHgAAAAABHgAAAAABJgAAAAADJQAAAAABJgAAAAABfAAAAAAAJQAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJQAAAAACJgAAAAABfAAAAAAAJQAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHgAAAAAAHgAAAAADJgAAAAADJQAAAAABJgAAAAADfAAAAAAAJQAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHgAAAAAAHgAAAAACJgAAAAACJQAAAAADJgAAAAAAfAAAAAAAJQAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJQAAAAACJgAAAAAAfAAAAAAAJQAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAIQAAAAABIQAAAAAAIQAAAAADJQAAAAACHQAAAAACJgAAAAABfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAIQAAAAADIQAAAAACIQAAAAADJQAAAAACJgAAAAADHQAAAAABJgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJQAAAAACJgAAAAACHQAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAABfAAAAAAAJQAAAAAAHQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABNAAAAAACJQAAAAACHQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAHwAAAAACHwAAAAACHwAAAAADfAAAAAAAJQAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAHwAAAAABHwAAAAADfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAOAAAAAAAewAAAAAAAAAAAAAAgQAAAAAAOQAAAAAA version: 6 -1,-24: ind: -1,-24 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAADAAAAAABDAAAAAADDAAAAAADDAAAAAACfAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAADAAAAAABDAAAAAAADAAAAAADDAAAAAACOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAfAAAAAAADAAAAAACOQAAAAAAOQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAANQAAAAABNQAAAAACDAAAAAACDAAAAAADAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAANQAAAAABagAAAAAANQAAAAACAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAANQAAAAADagAAAAAAagAAAAAAagAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAQAAAAAAAfAAAAAAAMwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAQAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAADAAAAAAADAAAAAAADAAAAAABDAAAAAADfAAAAAAADAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAADAAAAAABDAAAAAAADAAAAAABDAAAAAADOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAfAAAAAAADAAAAAADOQAAAAAAOQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAANQAAAAADNQAAAAABDAAAAAABDAAAAAABAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAANQAAAAAAagAAAAAANQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAANQAAAAABagAAAAAAagAAAAAAagAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAQAAAAAAAfAAAAAAAMwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAQAAAAAAA version: 6 0,-24: ind: 0,-24 - tiles: DAAAAAAADAAAAAADeAAAAAADfAAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAADAAAAAAADAAAAAACDAAAAAADfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAADAAAAAAAfAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAADAAAAAAADAAAAAABDAAAAAAANQAAAAAAagAAAAAANQAAAAABagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAAAagAAAAAAagAAAAAANQAAAAADagAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAANQAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAfAAAAAAAQAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAA + tiles: DAAAAAABDAAAAAAAeAAAAAACfAAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAADAAAAAABDAAAAAAADAAAAAABfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAKgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAADAAAAAAAfAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAADAAAAAADDAAAAAADDAAAAAABNQAAAAADagAAAAAANQAAAAABagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADDAAAAAACagAAAAAAagAAAAAANQAAAAACagAAAAAAagAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAANQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAADfAAAAAAAQAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAA version: 6 0,-25: ind: 0,-25 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAACfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADAAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAABDAAAAAABfAAAAAAADAAAAAADDAAAAAACDAAAAAABfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAACDAAAAAAAfAAAAAAADAAAAAADDAAAAAAADAAAAAAADAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAACeAAAAAABDAAAAAAADAAAAAAADAAAAAACDAAAAAABDAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAACfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAACDAAAAAAAfAAAAAAADAAAAAABDAAAAAACDAAAAAADfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAADDAAAAAACfAAAAAAADAAAAAABDAAAAAADDAAAAAAADAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAAAeAAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAABDAAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-25: ind: -1,-25 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAeAAAAAABEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAEwAAAAACeAAAAAACEwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAeAAAAAAAEwAAAAAAEwAAAAAFeAAAAAAADAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAADAAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAACDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAADAAAAAADDAAAAAAADAAAAAAAfAAAAAAAfAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAADAAAAAADDAAAAAACDAAAAAACDAAAAAACfAAAAAAADAAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAeAAAAAACEwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAEwAAAAAEeAAAAAAAEwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAeAAAAAACEwAAAAAFEwAAAAAAeAAAAAABDAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAADAAAAAACDAAAAAABDAAAAAACDAAAAAACDAAAAAACDAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAADAAAAAADDAAAAAACDAAAAAADfAAAAAAAfAAAAAAADAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAADAAAAAAADAAAAAABDAAAAAAADAAAAAAAfAAAAAAADAAAAAAA version: 6 -2,-22: ind: -2,-22 @@ -377,11 +378,11 @@ entities: version: 6 1,-4: ind: 1,-4 - tiles: MwAAAAABMwAAAAABfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAABMwAAAAACfAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAMwAAAAAAfAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAADMwAAAAADfAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAADfAAAAAAAfAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: MwAAAAABMwAAAAADfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAADMwAAAAACfAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAABMwAAAAADfAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAADMwAAAAADfAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAACfAAAAAAAfAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-5: ind: 1,-5 - tiles: JgAAAAAAJgAAAAABfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACJgAAAAADfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACJgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABJgAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACJgAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABJgAAAAADfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAABfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACJgAAAAABfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADJgAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABJgAAAAADfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: JgAAAAACJgAAAAABfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABJgAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACJgAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADJgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADJgAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADJgAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAABfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAABfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADJgAAAAABfAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABJgAAAAADfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACJgAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABJgAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-4: ind: -2,-4 @@ -393,7 +394,7 @@ entities: version: 6 1,-6: ind: 1,-6 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABfAAAAAAAfAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABJgAAAAADfAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABJgAAAAACfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADJgAAAAACfAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABJgAAAAADfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACfAAAAAAAfAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABJgAAAAAAfAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACJgAAAAACfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADJgAAAAACfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-7: ind: 1,-7 @@ -461,15 +462,15 @@ entities: version: 6 -2,-16: ind: -2,-16 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: fAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 -2,-15: ind: -2,-15 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-17: ind: -2,-17 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 -2,-23: ind: -2,-23 @@ -495,6 +496,14 @@ entities: ind: -2,-19 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 + -3,-16: + ind: -3,-16 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-17: + ind: -3,-17 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAA + version: 6 - type: Broadphase - type: Physics bodyStatus: InAir @@ -521,14 +530,18 @@ entities: id: Arrows decals: 470: -2,-124 - 471: 0,-124 - 472: 1,-124 - node: color: '#FFFFFFFF' id: Bot decals: 469: -1,-124 838: 6,-280 + 1470: 5,-281 + 1471: 5,-280 + 1472: 5,-279 + 1473: 4,-279 + 1474: 4,-280 + 1475: 4,-281 - node: color: '#FFFFFFFF' id: BotGreyscale @@ -547,6 +560,9 @@ entities: 1359: -2,-340 1360: -2,-339 1361: -2,-338 + 1476: 3,-281 + 1477: 2,-281 + 1478: 1,-281 - node: color: '#FFFFFFFF' id: BotLeft @@ -585,7 +601,6 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 111: -6,-33 112: -6,-31 281: -3,-7 - node: @@ -621,12 +636,6 @@ entities: 278: -1,-7 478: 2,-139 479: 3,-139 - 480: 4,-139 - 481: 5,-139 - 482: 6,-139 - 483: 3,-138 - 484: 4,-138 - 485: 5,-138 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -639,106 +648,22 @@ entities: 275: -1,-7 473: 3,-140 474: 2,-140 - 475: 4,-140 - 476: 5,-140 - 477: 6,-140 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: 113: -6,-30 114: -6,-32 - - node: - color: '#639137FF' - id: BrickTileSteelCornerNe - decals: - 342: 1,-87 - - node: - color: '#639137FF' - id: BrickTileSteelCornerSw - decals: - 345: 0,-88 - 346: 0,-88 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndE - decals: - 486: 5,-144 - node: color: '#639137FF' id: BrickTileSteelEndN decals: 357: 3,-86 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndN - decals: - 491: 4,-143 - node: color: '#639137FF' id: BrickTileSteelEndS decals: - 343: 1,-89 358: 3,-92 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndS - decals: - 488: 4,-146 - - node: - color: '#639137FF' - id: BrickTileSteelEndW - decals: - 344: -1,-87 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndW - decals: - 487: 3,-144 - - node: - color: '#639137FF' - id: BrickTileSteelInnerNe - decals: - 351: -1,-88 - 352: 0,-89 - 353: 0,-88 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerNe - decals: - 495: 4,-144 - - node: - color: '#639137FF' - id: BrickTileSteelInnerNw - decals: - 354: 1,-88 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerNw - decals: - 494: 4,-144 - - node: - color: '#639137FF' - id: BrickTileSteelInnerSe - decals: - 356: 0,-87 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerSe - decals: - 492: 4,-144 - - node: - color: '#639137FF' - id: BrickTileSteelInnerSw - decals: - 349: 1,-88 - 350: 0,-87 - 355: 1,-87 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerSw - decals: - 493: 4,-144 - node: cleanable: True color: '#FFFFFFFF' @@ -749,27 +674,11 @@ entities: color: '#639137FF' id: BrickTileSteelLineE decals: - 348: 1,-88 364: 3,-87 365: 3,-88 366: 3,-89 367: 3,-90 368: 3,-91 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineE - decals: - 490: 4,-145 - - node: - color: '#639137FF' - id: BrickTileSteelLineN - decals: - 347: 0,-87 - - node: - color: '#96DAFFFF' - id: BrickTileSteelLineN - decals: - 83: 1,-31 - node: cleanable: True color: '#FFFFFFFF' @@ -787,11 +696,6 @@ entities: 361: 3,-89 362: 3,-88 363: 3,-87 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineW - decals: - 489: 4,-145 - node: cleanable: True color: '#FFFFFFFF' @@ -850,13 +754,6 @@ entities: id: BrickTileWhiteCornerNe decals: 1417: 3,-197 - - node: - color: '#639137FF' - id: BrickTileWhiteCornerNe - decals: - 304: -6,-85 - 319: 1,-85 - 320: 2,-86 - node: color: '#A0A0A0FF' id: BrickTileWhiteCornerNe @@ -873,12 +770,6 @@ entities: id: BrickTileWhiteCornerNw decals: 1416: -1,-197 - - node: - color: '#639137FF' - id: BrickTileWhiteCornerNw - decals: - 289: -9,-90 - 315: -2,-85 - node: color: '#A0A0A0FF' id: BrickTileWhiteCornerNw @@ -890,12 +781,6 @@ entities: id: BrickTileWhiteCornerSe decals: 1423: 3,-200 - - node: - color: '#639137FF' - id: BrickTileWhiteCornerSe - decals: - 305: -6,-89 - 326: 2,-92 - node: color: '#A0A0A0FF' id: BrickTileWhiteCornerSe @@ -912,13 +797,6 @@ entities: id: BrickTileWhiteCornerSw decals: 1422: -1,-200 - - node: - color: '#639137FF' - id: BrickTileWhiteCornerSw - decals: - 292: -9,-84 - 331: -1,-90 - 332: -2,-89 - node: color: '#A0A0A0FF' id: BrickTileWhiteCornerSw @@ -943,11 +821,6 @@ entities: id: BrickTileWhiteInnerNe decals: 262: -1,2 - - node: - color: '#639137FF' - id: BrickTileWhiteInnerNe - decals: - 312: -7,-85 - node: color: '#A0A0A0FF' id: BrickTileWhiteInnerNe @@ -965,12 +838,6 @@ entities: id: BrickTileWhiteInnerNw decals: 263: 1,2 - - node: - color: '#639137FF' - id: BrickTileWhiteInnerNw - decals: - 311: -9,-85 - 341: 0,-92 - node: color: '#646464FF' id: BrickTileWhiteInnerNw @@ -984,13 +851,6 @@ entities: 404: 5,-94 443: 2,-97 452: 3,-98 - - node: - color: '#639137FF' - id: BrickTileWhiteInnerSe - decals: - 314: -7,-89 - 329: 1,-92 - 330: 1,-92 - node: color: '#A0A0A0FF' id: BrickTileWhiteInnerSe @@ -1002,14 +862,6 @@ entities: id: BrickTileWhiteInnerSe decals: 374: 4,-92 - - node: - color: '#639137FF' - id: BrickTileWhiteInnerSw - decals: - 310: -9,-89 - 336: -1,-89 - 337: 0,-90 - 340: 0,-92 - node: color: '#646464FF' id: BrickTileWhiteInnerSw @@ -1029,18 +881,6 @@ entities: id: BrickTileWhiteLineE decals: 261: -1,3 - - node: - color: '#639137FF' - id: BrickTileWhiteLineE - decals: - 303: -6,-86 - 306: -6,-88 - 307: -6,-87 - 321: 2,-87 - 322: 2,-88 - 323: 2,-89 - 324: 2,-90 - 325: 2,-91 - node: color: '#A0A0A0FF' id: BrickTileWhiteLineE @@ -1062,21 +902,6 @@ entities: decals: 1418: 1,-197 1419: 0,-197 - - node: - color: '#639137FF' - id: BrickTileWhiteLineN - decals: - 283: -10,-89 - 284: -9,-89 - 285: -8,-89 - 290: -8,-90 - 291: -7,-90 - 308: -10,-85 - 316: -1,-85 - 317: -1,-85 - 318: 0,-85 - 327: 1,-93 - 328: 0,-93 - node: color: '#A0A0A0FF' id: BrickTileWhiteLineN @@ -1093,16 +918,6 @@ entities: decals: 1420: 0,-200 1421: 1,-200 - - node: - color: '#639137FF' - id: BrickTileWhiteLineS - decals: - 286: -8,-85 - 287: -9,-85 - 288: -10,-85 - 293: -8,-84 - 294: -7,-84 - 309: -10,-89 - node: color: '#A0A0A0FF' id: BrickTileWhiteLineS @@ -1119,18 +934,6 @@ entities: id: BrickTileWhiteLineW decals: 1415: -1,-198 - - node: - color: '#639137FF' - id: BrickTileWhiteLineW - decals: - 295: -7,-87 - 296: -7,-88 - 313: -7,-86 - 333: -2,-88 - 334: -2,-87 - 335: -2,-86 - 338: 0,-91 - 339: 0,-91 - node: color: '#646464FF' id: BrickTileWhiteLineW @@ -1223,6 +1026,15 @@ entities: 1163: 3,-374 1304: 9,-200 1312: 7,-202 + - node: + color: '#3EB38896' + id: CheckerNESW + decals: + 1464: -11,-261 + 1465: -10,-261 + 1466: -12,-261 + 1467: -9,-261 + 1468: -8,-261 - node: color: '#52B4E996' id: CheckerNWSE @@ -1266,57 +1078,6 @@ entities: 1412: 3,-204 1413: 3,-203 1414: 3,-202 - - node: - color: '#FFFFFFFF' - id: ConcreteTrimCornerNe - decals: - 787: -2,-284 - - node: - color: '#FFFFFFFF' - id: ConcreteTrimCornerSe - decals: - 790: -2,-276 - - node: - color: '#FFFFFFFF' - id: ConcreteTrimInnerNe - decals: - 783: -3,-284 - 788: -2,-285 - - node: - color: '#FFFFFFFF' - id: ConcreteTrimInnerSe - decals: - 784: -3,-276 - 789: -2,-275 - - node: - color: '#FFFFFFFF' - id: ConcreteTrimLineE - decals: - 776: -3,-278 - 777: -3,-279 - 778: -3,-280 - 779: -3,-281 - 780: -3,-282 - 781: -3,-283 - 782: -3,-277 - - node: - color: '#FFFFFFFF' - id: ConcreteTrimLineN - decals: - 785: -1,-285 - 786: 0,-285 - - node: - color: '#FFFFFFFF' - id: ConcreteTrimLineS - decals: - 791: -1,-275 - 792: 0,-275 - 793: 1,-275 - 794: 3,-275 - 795: 4,-275 - 796: 5,-275 - 797: 6,-275 - 798: 2,-275 - node: cleanable: True color: '#FFFFFFFF' @@ -1466,18 +1227,6 @@ entities: 1167: -1,-373 1172: -4,-374 1300: 11,-199 - - node: - color: '#FFFFFFFF' - id: GrayConcreteTrimInnerNw - decals: - 754: -4,-278 - 761: 0,-274 - - node: - color: '#FFFFFFFF' - id: GrayConcreteTrimInnerSw - decals: - 770: -1,-286 - 771: -4,-282 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineE @@ -1490,11 +1239,6 @@ entities: color: '#FFFFFFFF' id: GrayConcreteTrimLineN decals: - 752: -6,-278 - 753: -5,-278 - 758: -2,-274 - 759: -3,-274 - 760: -1,-274 1270: 14,-60 1271: 15,-60 1272: 16,-60 @@ -1512,10 +1256,6 @@ entities: color: '#FFFFFFFF' id: GrayConcreteTrimLineS decals: - 772: -2,-286 - 773: -3,-286 - 774: -5,-282 - 775: -6,-282 1278: 13,-76 1279: 14,-76 1280: 15,-76 @@ -1530,17 +1270,6 @@ entities: color: '#FFFFFFFF' id: GrayConcreteTrimLineW decals: - 755: -4,-277 - 756: -4,-276 - 757: -4,-275 - 762: 0,-273 - 763: 0,-272 - 764: 0,-271 - 765: -4,-285 - 766: -4,-284 - 767: -4,-283 - 768: -1,-288 - 769: -1,-287 1262: 13,-64 1263: 13,-63 1264: 13,-62 @@ -1751,12 +1480,6 @@ entities: decals: 1080: 2,-360 1081: 3,-361 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelInnerNe - decals: - 101: -5,-32 - 161: 5,-46 - node: color: '#D381C996' id: MiniTileSteelInnerNw @@ -1774,11 +1497,6 @@ entities: id: MiniTileSteelInnerNw decals: 1231: 15,-251 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelInnerNw - decals: - 102: 3,-32 - node: color: '#D381C996' id: MiniTileSteelInnerSe @@ -1786,12 +1504,6 @@ entities: 896: 1,-309 915: 1,-298 1215: -8,-310 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelInnerSe - decals: - 103: -5,-29 - 149: 0,-33 - node: color: '#D381C996' id: MiniTileSteelInnerSw @@ -1809,12 +1521,6 @@ entities: id: MiniTileSteelInnerSw decals: 1230: 15,-255 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelInnerSw - decals: - 104: 3,-29 - 150: -1,-33 - node: color: '#5A64BC93' id: MiniTileSteelLineE @@ -1913,31 +1619,8 @@ entities: color: '#FFFFFFFF' id: MiniTileSteelLineE decals: - 99: -5,-31 - 100: -5,-30 - 132: 5,-45 - 133: 5,-44 - 134: 5,-43 135: 5,-38 136: 5,-37 - 137: 0,-37 - 138: 0,-36 - 139: 0,-35 - 140: 0,-34 - 162: 5,-40 - 163: 5,-41 - 534: 0,-138 - 535: 0,-139 - 536: 0,-140 - 537: 0,-141 - 538: 0,-142 - 539: 0,-143 - 540: 0,-144 - 541: 0,-145 - 542: 0,-146 - 543: 0,-147 - 544: 1,-152 - 545: 1,-153 - node: color: '#999453FF' id: MiniTileSteelLineN @@ -1985,26 +1668,6 @@ entities: 1237: 16,-246 1238: 17,-246 1239: 18,-246 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelLineN - decals: - 91: -4,-32 - 92: -2,-32 - 93: -1,-32 - 94: 0,-32 - 95: 1,-32 - 96: 2,-32 - 151: 2,-28 - 152: 1,-28 - 153: 0,-28 - 154: -1,-28 - 155: -2,-28 - 156: -3,-28 - 157: -4,-28 - 158: -5,-28 - 159: -6,-28 - 160: 3,-28 - node: color: '#999453FF' id: MiniTileSteelLineS @@ -2049,25 +1712,6 @@ entities: id: MiniTileSteelLineS decals: 1251: 16,-262 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelLineS - decals: - 84: -4,-29 - 85: -3,-29 - 86: -2,-29 - 87: -1,-29 - 88: 0,-29 - 89: 1,-29 - 90: 2,-29 - 141: -2,-33 - 142: -3,-33 - 143: -4,-33 - 144: -5,-33 - 145: -6,-33 - 146: 1,-33 - 147: 2,-33 - 148: 3,-33 - node: color: '#5A64BC93' id: MiniTileSteelLineW @@ -2179,41 +1823,6 @@ entities: 1235: 15,-247 1248: 15,-260 1249: 15,-261 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelLineW - decals: - 97: 3,-30 - 98: 3,-31 - 120: -1,-45 - 121: -1,-44 - 122: -1,-43 - 123: -1,-42 - 124: -1,-41 - 125: -1,-40 - 126: -1,-39 - 127: -1,-38 - 128: -1,-37 - 129: -1,-36 - 130: -1,-35 - 131: -1,-34 - 517: -1,-152 - 518: -1,-151 - 519: -1,-149 - 520: -1,-150 - 521: -1,-148 - 522: -1,-147 - 523: -1,-146 - 524: -1,-145 - 525: -1,-144 - 526: -1,-143 - 527: -1,-142 - 528: -1,-141 - 529: -1,-140 - 530: -1,-139 - 531: -1,-138 - 532: -1,-137 - 533: -1,-136 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNe @@ -2874,19 +2483,29 @@ entities: 1131: -1,-365 1132: -1,-364 - node: - color: '#639137FF' + color: '#3EB38896' id: QuarterTileOverlayGreyscale180 decals: - 300: -9,-90 - 301: -8,-90 - 302: -7,-90 + 1456: -15,-266 + 1457: -14,-266 + 1458: -13,-266 + 1459: -12,-266 - node: - color: '#639137FF' + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 1480: 1,-275 + 1481: 1,-274 + 1482: 1,-273 + 1483: 1,-272 + - node: + color: '#3EB38896' id: QuarterTileOverlayGreyscale90 decals: - 297: -9,-84 - 298: -8,-84 - 299: -7,-84 + 1460: -15,-264 + 1461: -14,-264 + 1462: -13,-264 + 1463: -12,-264 - node: color: '#FFFFFFFF' id: Rock02 @@ -2904,14 +2523,12 @@ entities: color: '#FFFFFFFF' id: StandClear decals: - 546: 0,-153 547: 0,-136 548: 0,-126 549: 0,-109 550: 0,-99 551: 0,-82 552: 0,-45 - 553: 0,-28 554: 0,-18 1187: 0,-163 1188: 0,-180 @@ -2919,8 +2536,9 @@ entities: 1190: 0,-207 1191: 0,-244 1192: 0,-261 - 1193: 0,-271 1194: 0,-288 + 1469: 0,-28 + 1479: 0,-271 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -3280,9 +2898,6 @@ entities: 499: -4,-149 500: -4,-148 501: -4,-143 - 502: -4,-142 - 503: -4,-141 - 504: -4,-140 505: -4,-139 - node: color: '#FFFFFFFF' @@ -3306,9 +2921,6 @@ entities: 426: -9,-122 427: -8,-122 428: -7,-122 - 429: -9,-119 - 430: -8,-119 - 431: -7,-119 432: -9,-116 433: -8,-116 434: -7,-116 @@ -3337,10 +2949,6 @@ entities: 410: -9,-117 411: -8,-117 412: -7,-117 - 413: -7,-120 - 414: -7,-120 - 415: -8,-120 - 416: -9,-120 417: -9,-123 418: -8,-123 419: -7,-123 @@ -3412,1993 +3020,2223 @@ entities: data: tiles: 0,0: - 0: 65535 - 0,-1: - 0: 65535 + 0: 14199 -1,0: - 0: 65535 + 0: 36349 + 0,-1: + 0: 9830 0,1: - 0: 143 + 1: 140 1,0: - 0: 65535 + 0: 887 + 1: 51200 1,1: - 0: 45879 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 - 1,-4: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 65535 + 1: 45879 + 1,3: + 1: 30702 + 1,4: + 1: 4983 1,-1: - 0: 65535 - 2,-4: - 0: 4991 + 0: 12274 + 1,2: + 1: 59118 + 2,0: + 1: 61239 + 2,1: + 1: 16236 + 2,2: + 1: 17 2,-1: - 0: 55799 - -2,0: - 0: 61439 - -2,1: - 0: 47500 - -1,1: - 0: 4415 - -2,-4: - 0: 65535 - -2,-1: - 0: 65535 - -2,-3: - 0: 65535 - -2,-2: - 0: 65262 - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - -1,-1: - 0: 65535 - 0,-6: - 0: 63351 + 1: 55526 + 3,0: + 1: 8044 + 3,1: + 1: 12544 + 3,2: + 1: 33074 + 3,-1: + 1: 33272 + 4,0: + 1: 65484 + 4,2: + 1: 14190 + 0,-4: + 0: 25839 0,-5: - 0: 65535 - 1,-6: - 0: 63351 + 0: 63379 + -1,-4: + 0: 12272 + 0,-3: + 0: 61046 + -1,-3: + 0: 4095 + 0,-2: + 0: 61182 + -1,-2: + 0: 4095 + -1,-1: + 0: 4095 + 1,-4: + 0: 28735 + 1,-3: + 0: 30583 + 1,-2: + 0: 30583 1,-5: - 0: 65535 - 2,-5: - 0: 63281 - -2,-5: - 0: 65535 - -2,-6: - 0: 60620 - -1,-6: - 0: 64989 - -1,-5: - 0: 65535 + 0: 48370 + 2,-4: + 1: 4990 + 2,-3: + 1: 4369 2,-2: - 0: 4096 + 1: 4096 + 2,-5: + 1: 58912 + 3,-4: + 1: 15 + 3,-5: + 1: 61440 + 4,-4: + 1: 35023 + 4,-1: + 1: 57341 + -4,0: + 1: 8134 + -5,0: + 1: 61030 + -4,2: + 1: 12680 + -5,2: + 1: 36046 + -4,-1: + 1: 12787 + -3,0: + 1: 65420 + -4,1: + 1: 32768 + -3,1: + 1: 40902 + -3,2: + 1: 272 + -3,-1: + 1: 25596 + -2,0: + 1: 25361 + 0: 2252 + -2,1: + 1: 47500 + -2,-1: + 1: 4096 + 0: 18020 + -2,2: + 1: 60671 + -2,3: + 1: 52462 + -2,4: + 1: 2252 + -1,1: + 1: 4407 + -1,3: + 1: 4352 + -1,4: + 1: 65329 + -4,-2: + 1: 4096 + -5,-2: + 1: 61030 + -5,-1: + 1: 28390 -3,-4: - 0: 2184 + 1: 2184 + -3,-5: + 1: 34944 + -2,-4: + 1: 4368 + 0: 17478 + -2,-5: + 0: 65224 + 1: 3 + -2,-3: + 1: 4369 + 0: 17476 + -2,-2: + 1: 4096 + 0: 17476 + -1,-5: + 0: 48952 0,-8: 0: 65535 - 0,-7: - 0: 65535 - 1,-8: - 0: 65535 - 1,-7: - 0: 32767 - 2,-8: - 0: 63281 - -3,-5: - 0: 34944 - -2,-8: - 0: 65535 - -2,-7: - 0: 52974 + 0,-9: + 0: 61919 -1,-8: 0: 65535 + 0,-7: + 0: 21407 + 1: 32768 -1,-7: - 0: 65535 + 0: 18495 + 1: 8192 + 0,-6: + 0: 22391 + 1: 34952 + -1,-6: + 0: 19660 + 1: 9011 + 1,-6: + 1: 34133 + 0: 8738 + 1,-8: + 0: 28270 + 1,-7: + 0: 8742 + 1: 2048 + 1,-9: + 0: 26224 + 2,-8: + 0: 257 + 1: 58912 + 2,-7: + 1: 15 + 3,-8: + 1: 61440 + 3,-7: + 1: 207 + 4,-8: + 1: 64640 + 4,-7: + 1: 36095 + 4,-5: + 1: 64640 + -2,-8: + 0: 53199 + -2,-7: + 0: 35020 + 1: 512 + -2,-6: + 1: 9284 + 0: 34952 + -2,-9: + 0: 49356 + -1,-9: + 0: 63739 0,-12: - 0: 65535 + 0: 63797 + 1: 8 + 0,-13: + 0: 30581 + 1: 34952 + -1,-12: + 0: 45700 + 1: 2 0,-11: 0: 65535 - 0,-10: - 0: 65535 - 0,-9: - 0: 65535 - 1,-12: - 0: 65399 - 1,-11: - 0: 65535 - 1,-10: - 0: 65535 - 1,-9: - 0: 65535 - 2,-12: - 0: 4096 - 2,-11: - 0: 17 - 2,-10: - 0: 4352 - 2,-9: - 0: 4097 - -2,-12: - 0: 65228 - -2,-11: - 0: 61183 - -2,-10: - 0: 65518 - -2,-9: - 0: 65263 - -1,-12: - 0: 65535 -1,-11: - 0: 65535 + 0: 53130 + 0,-10: + 0: 8191 -1,-10: - 0: 65535 - -1,-9: - 0: 65535 - -2,-16: - 0: 65535 - -2,-15: - 0: 65535 + 0: 40413 + 1,-12: + 0: 29218 + 1,-11: + 0: 30591 + 1,-10: + 0: 59255 + 1,-13: + 1: 21840 + 0: 8738 + 2,-11: + 0: 1 + 2,-10: + 0: 4096 + -2,-11: + 0: 36047 + -2,-10: + 0: 64716 + -2,-12: + 0: 51328 + -1,-13: + 1: 8738 + 0: 52420 + -4,-15: + 1: 61440 + -4,-14: + 1: 15 + -5,-15: + 1: 61713 + -5,-14: + 1: 31 + -3,-15: + 1: 65152 + -3,-14: + 1: 143 -2,-14: - 0: 61167 - -2,-13: - 0: 34952 + 1: 8193 + 0: 3276 + -2,-16: + 0: 61166 + -2,-15: + 0: 3822 + -2,-17: + 0: 61166 -1,-16: 0: 65535 -1,-15: - 0: 65535 + 0: 36863 -1,-14: - 0: 65535 - -1,-13: - 0: 52430 - 0,-16: - 0: 65535 - 0,-15: - 0: 65535 - 0,-14: - 0: 65535 - 0,-13: - 0: 30591 - 1,-16: - 0: 65535 - 1,-15: - 0: 65535 - 1,-14: - 0: 32767 - 1,-13: - 0: 30583 - 2,-15: - 0: 65329 - 2,-14: - 0: 63 - 0,-20: - 0: 30719 - 0,-19: - 0: 65527 - 0,-18: - 0: 65535 - 0,-17: - 0: 65535 - 1,-20: - 0: 30583 - 1,-19: - 0: 65399 - 1,-18: - 0: 65535 - 1,-17: - 0: 65535 - 2,-18: - 0: 65535 - 2,-17: - 0: 319 - -2,-18: - 0: 65535 - -2,-17: - 0: 65535 - -2,-19: - 0: 61164 - -2,-20: - 0: 52428 - -1,-20: - 0: 56831 - -1,-19: - 0: 65533 - -1,-18: - 0: 65535 + 0: 33787 + -2,-13: + 1: 8 -1,-17: 0: 65535 + 0,-16: + 0: 3067 + 0,-15: + 0: 32631 + 0,-14: + 0: 14771 + 0,-17: + 0: 45175 + 1,-16: + 0: 17751 + 1,-15: + 0: 65399 + 1,-14: + 0: 8830 + 1,-17: + 0: 21623 + 2,-15: + 1: 60977 + 2,-14: + 1: 46 + 3,-15: + 1: 64528 + 0: 12 + 3,-14: + 1: 15 + 3,-17: + 1: 5136 + 0: 34958 + 3,-16: + 0: 61166 + 4,-16: + 0: 13107 + 1: 8 + 4,-15: + 0: 1 + 1: 61760 + 4,-14: + 1: 15 + 0,-20: + 0: 30547 + 1: 34944 + 0,-21: + 0: 40952 + -1,-20: + 0: 52296 + 1: 13088 + 0,-19: + 0: 37719 + 1: 136 + -1,-19: + 0: 15116 + 1: 3 + 0,-18: + 0: 63291 + -1,-18: + 0: 64667 + 1,-20: + 1: 21760 + 0: 8738 + 1,-19: + 1: 2053 + 0: 8738 + 1,-18: + 0: 65511 + 1,-21: + 0: 12151 + 2,-19: + 1: 36864 + 2,-18: + 0: 240 + 1: 60942 + 2,-17: + 1: 319 + 3,-18: + 0: 61182 + 3,-20: + 0: 36590 + 3,-19: + 0: 61166 + 3,-21: + 0: 61422 + 4,-20: + 0: 819 + 4,-19: + 0: 13107 + 1: 34816 + 4,-18: + 0: 13107 + 1: 34952 + 4,-17: + 0: 3 + 1: 51656 + -4,-18: + 1: 65280 + -5,-18: + 1: 65382 + -3,-18: + 1: 65408 + -3,-17: + 1: 142 + -2,-18: + 1: 17 + 0: 59596 + -2,-19: + 1: 516 + 0: 52360 + -2,-20: + 0: 34952 + 1: 17408 + -2,-21: + 0: 35971 + 1: 256 + -1,-21: + 0: 12217 0,-24: - 0: 65535 + 0: 14591 + 0,-25: + 0: 65529 + -1,-24: + 0: 155 + 2: 29440 0,-23: 0: 65535 - 0,-22: - 0: 65535 - 0,-21: - 0: 65535 - 1,-24: - 0: 65535 - 1,-23: - 0: 65535 - 1,-22: - 0: 65535 - 1,-21: - 0: 65535 - -3,-23: - 0: 60544 - -3,-22: - 0: 65262 - -3,-24: - 0: 2255 - -3,-21: - 0: 2303 - -2,-24: - 0: 14335 - 1: 51200 - -2,-23: - 0: 65395 - 1: 140 - -2,-22: - 0: 65535 - -2,-21: - 0: 61439 - -1,-24: - 0: 36095 - 1: 29440 -1,-23: - 1: 55 - 0: 65480 - -1,-22: - 0: 65535 - -1,-21: - 0: 65535 - -3,-28: - 0: 53247 - -3,-27: - 0: 204 - -3,-25: - 0: 64712 - -2,-28: - 0: 65535 - -2,-27: - 0: 53247 - -2,-25: - 0: 65535 - -2,-26: - 0: 52428 - -1,-28: - 0: 65535 - -1,-27: - 0: 57343 - -1,-26: - 0: 65501 - -1,-25: - 0: 65535 - 0,-28: - 0: 65535 - 0,-27: - 0: 32767 - 0,-26: - 0: 65399 - 0,-25: - 0: 65535 - 1,-28: - 0: 65535 - 1,-27: - 0: 30719 - 1,-26: - 0: 63351 - 1,-25: - 0: 65535 - -3,-32: - 0: 64704 - -3,-31: - 0: 52479 - -3,-30: - 0: 52428 - -3,-29: - 0: 52428 - -2,-32: - 0: 65535 - -2,-31: - 0: 65535 - -2,-30: - 0: 65535 - -2,-29: - 0: 65535 - -1,-32: - 0: 65535 - -1,-31: - 0: 65535 - -1,-30: - 0: 65535 - -1,-29: - 0: 65535 - 0,-32: - 0: 65535 - 0,-31: - 0: 65535 - 0,-30: - 0: 65535 - 0,-29: - 0: 65535 - 1,-32: - 0: 65527 - 1,-31: - 0: 65535 - 1,-30: - 0: 65535 - 1,-29: - 0: 65535 - 2,-30: - 0: 30583 - 2,-29: - 0: 30583 - -2,-36: - 0: 65535 - -2,-35: - 0: 65535 - -2,-34: - 0: 65535 - -2,-33: - 0: 64719 - -1,-36: - 0: 65535 - -1,-35: - 0: 65535 - -1,-34: - 0: 65535 - -1,-33: - 0: 64989 - 0,-36: - 0: 65535 - 0,-35: - 0: 65535 - 0,-34: - 0: 65535 - 0,-33: - 0: 63351 - 1,-36: - 0: 65535 - 1,-35: - 0: 65535 - 1,-34: - 0: 32767 - 1,-33: - 0: 30583 - 2,-36: - 0: 65523 - 2,-35: - 0: 13107 - 2,-34: - 0: 19 - -2,-39: - 0: 65535 - -2,-38: - 0: 65535 - -2,-37: - 0: 65535 - -2,-40: - 0: 65484 - -1,-39: - 0: 65535 - -1,-38: - 0: 65535 - -1,-37: - 0: 65535 - -1,-40: - 0: 56799 - 0,-40: - 0: 30591 - 0,-39: - 0: 65535 - 0,-38: - 0: 65535 - 0,-37: - 0: 65535 - 1,-39: - 0: 65527 - 1,-38: - 0: 65535 - 1,-37: - 0: 65535 - 1,-40: - 0: 30583 - 2,-39: - 0: 12560 - 2,-38: + 0: 55560 + 2: 55 + 0,-22: 0: 16383 - 2,-37: + -1,-22: + 0: 56831 + 1,-24: + 0: 30583 + 1,-23: + 0: 30583 + 1,-22: + 0: 30583 + 1,-25: + 0: 30579 + 2,-24: + 1: 383 + 2,-22: + 1: 28928 + 2,-21: + 1: 61695 + 0: 3840 + 2,-25: + 1: 62224 + 3,-24: + 1: 34959 + 3,-25: + 1: 63624 + 3,-22: + 1: 30 + 0: 60416 + 4,-24: + 1: 34959 + 3,-23: + 1: 34952 + 4,-22: + 1: 67 + 0: 12544 + 4,-21: 0: 13107 - -3,-44: - 0: 36079 - -3,-43: - 0: 62344 - -2,-44: - 0: 65535 - -2,-43: - 0: 65535 - -2,-42: - 0: 65535 + 1: 136 + -4,-24: + 1: 15 + -4,-25: + 1: 61440 + -5,-24: + 1: 13119 + -4,-21: + 1: 255 + -5,-21: + 1: 511 + -3,-24: + 1: 2191 + -3,-21: + 1: 2097 + 0: 8 + -3,-25: + 1: 63624 + -3,-22: + 1: 4096 + 0: 52428 + -3,-23: + 0: 51200 + -2,-24: + 1: 4369 + 0: 12 + 2: 51200 + -2,-23: + 0: 29440 + 1: 1 + 2: 140 + -2,-22: + 0: 30719 + -2,-25: + 1: 4369 + 0: 27848 + -1,-25: + 0: 49058 + -4,-28: + 1: 4080 + -5,-28: + 1: 8177 + -5,-25: + 1: 63078 + -3,-28: + 1: 819 + 0: 34944 + -3,-27: + 1: 64 + 0: 8 + -3,-29: + 0: 34824 + -2,-28: + 0: 15352 + -2,-27: + 0: 34959 + 1: 17152 + -2,-29: + 0: 49035 + -2,-26: + 1: 68 + 0: 34952 + -1,-28: + 0: 53235 + -1,-27: + 0: 50307 + 1: 12800 + -1,-26: + 1: 563 + 0: 33996 + -1,-29: + 0: 65521 + 0,-28: + 0: 49080 + 0,-27: + 0: 30009 + 1: 34816 + 0,-26: + 0: 13687 + 1: 2184 + 0,-29: + 0: 57304 + 1,-28: + 0: 28790 + 1,-27: + 1: 20608 + 0: 8738 + 1,-26: + 1: 32853 + 0: 8738 + 2,-28: + 1: 65393 + 2,-27: + 1: 1 + 3,-28: + 1: 65416 + 3,-29: + 1: 34952 + 4,-28: + 1: 65280 + 3,-27: + 1: 34952 + 3,-26: + 1: 34952 + 4,-25: + 1: 64716 + -4,-31: + 1: 255 + -5,-31: + 1: 13311 + -3,-31: + 1: 51 + 0: 2176 + -3,-32: + 1: 12352 + 0: 34816 + -3,-30: + 0: 32904 + -2,-32: + 0: 49070 + -2,-31: + 0: 35832 + -2,-30: + 0: 63679 + -2,-33: + 1: 5191 + 0: 34952 + -1,-32: + 0: 65320 + -1,-31: + 0: 56735 + -1,-30: + 0: 56605 + -1,-33: + 1: 9011 + 0: 19660 + 0,-32: + 0: 65427 + 0,-31: + 0: 63247 + 0,-30: + 0: 64279 + 0,-33: + 0: 22391 + 1: 34952 + 1,-32: + 0: 30514 + 1: 128 + 1,-31: + 0: 62327 + 1,-30: + 0: 39851 + 1,-29: + 0: 3822 + 1,-33: + 0: 8738 + 1: 1365 + 2,-32: + 1: 4096 + 2,-31: + 1: 3315 + 0: 12288 + 2,-30: + 0: 13107 + 2,-29: + 0: 819 + 1: 24576 + 3,-31: + 1: 36856 + 3,-32: + 1: 34952 + 3,-33: + 1: 34952 + 4,-31: + 1: 36860 + 3,-30: + 1: 34952 + -4,-35: + 1: 65280 + -5,-35: + 1: 65297 + -3,-35: + 1: 30580 + 0: 34952 + -3,-34: + 1: 4369 + 0: 61166 + -3,-33: + 1: 15 + -3,-36: + 1: 17476 + 0: 34952 + -3,-37: + 1: 17476 + 0: 34952 + -2,-35: + 0: 55534 + -2,-34: + 0: 63773 + 1: 544 + -2,-36: + 0: 61164 + -2,-37: + 0: 61166 + -1,-36: + 0: 65467 + -1,-35: + 0: 47295 + -1,-34: + 0: 18475 + 1: 12288 + -1,-37: + 0: 48059 + 0,-36: + 0: 7645 + 0,-35: + 0: 14813 + 0,-34: + 0: 21407 + 1: 32768 + 0,-37: + 0: 56795 + 1,-36: + 0: 6007 + 1,-35: + 0: 33783 + 1,-34: + 0: 8767 + 1: 22528 + 1,-37: + 0: 30579 + 2,-36: + 0: 7953 + 1: 49344 + 2,-35: + 0: 4369 + 2,-34: + 1: 18 + 2,-37: + 0: 4369 + 3,-36: + 0: 61254 + 3,-35: + 0: 3310 + 1: 4096 + 3,-37: + 0: 28398 + 3,-34: + 1: 34958 + 4,-36: + 0: 12594 + 4,-35: + 0: 307 + 1: 16384 + 4,-34: + 1: 3 + -4,-38: + 1: 4080 + -5,-38: + 1: 16374 + -3,-38: + 1: 18292 + 0: 34952 + -3,-39: + 1: 17484 + 0: 34944 + -2,-39: + 1: 257 + 0: 59578 + -2,-40: + 1: 5956 + 0: 59528 + -2,-38: + 0: 57576 -2,-41: - 0: 53247 - -1,-44: - 0: 65535 - -1,-43: - 0: 65535 - -1,-42: - 0: 65535 + 0: 35070 + -1,-40: + 1: 13107 + 0: 52420 + -1,-39: + 0: 45700 + 1: 2 + -1,-38: + 0: 47295 -1,-41: - 0: 65535 - 0,-44: - 0: 65535 - 0,-43: - 0: 65535 - 0,-42: - 0: 65535 + 0: 33455 + 0,-40: + 0: 30581 + 1: 34952 + 0,-39: + 0: 63797 + 1: 8 + 0,-38: + 0: 65403 0,-41: - 0: 65535 + 0: 14843 + 1,-40: + 1: 21845 + 0: 8738 + 1,-39: + 0: 47650 + 1,-38: + 0: 63247 + 1,-41: + 0: 8959 + 1: 32768 + 2,-38: + 0: 4593 + 1: 3084 + 3,-40: + 0: 35022 + 1: 24832 + 3,-39: + 1: 1 + 0: 61128 + 3,-38: + 0: 28398 + 3,-41: + 0: 61176 + 4,-40: + 0: 19 + 1: 13312 + 4,-39: + 0: 13072 + 1: 4 + 4,-38: + 0: 13075 + 4,-37: + 0: 14195 + -4,-43: + 1: 4352 + 0: 57344 + -4,-42: + 1: 4369 + 0: 61166 + -5,-42: + 1: 4383 + -4,-41: + 1: 4369 + 0: 3822 + -5,-41: + 1: 241 + -4,-44: + 1: 12 + -4,-45: + 1: 63232 + -3,-44: + 1: 1127 + -3,-43: + 0: 4096 + 1: 49664 + -3,-42: + 0: 4383 + 1: 8896 + -3,-41: + 0: 497 + 1: 11276 + -3,-45: + 1: 28672 + 0: 128 + -2,-44: + 0: 49083 + -2,-43: + 0: 43747 + -2,-42: + 0: 10915 + -2,-45: + 0: 47934 + -1,-44: + 0: 30719 + -1,-43: + 0: 32624 + -1,-42: + 0: 8048 + -1,-45: + 0: 30607 + 0,-44: + 0: 48059 + 0,-43: + 0: 64315 + 0,-42: + 0: 15359 + 0,-45: + 0: 46079 1,-44: 0: 65535 1,-43: - 0: 65535 + 0: 65407 1,-42: - 0: 65535 - 1,-41: - 0: 65535 - 2,-44: - 0: 13183 - 2,-43: - 0: 4403 - 2,-42: - 0: 4369 - 0,-46: - 0: 65527 - 0,-45: - 0: 65535 - 1,-46: - 0: 65394 + 0: 20479 1,-45: - 0: 65535 - 2,-46: - 0: 4096 + 0: 64443 + 2,-44: + 0: 4369 + 1: 76 + 2,-43: + 0: 1 + 2,-41: + 0: 240 + 1: 3598 2,-45: - 0: 62259 - -3,-45: - 0: 63624 - -2,-46: - 0: 65228 - -2,-45: - 0: 65535 - -1,-46: - 0: 65533 - -1,-45: - 0: 65535 + 0: 4368 + 1: 49152 + 3,-44: + 1: 15 + 3,-45: + 1: 61440 + 3,-42: + 1: 20736 + 0: 10240 + 4,-44: + 1: 34959 + 4,-42: + 1: 4384 + 0: 8704 + 4,-41: + 0: 13074 + 1: 136 0,-48: - 0: 65535 - 0,-47: - 0: 30719 - 1,-48: - 0: 65535 - 1,-47: - 0: 8823 - -2,-48: - 0: 65535 - -2,-47: - 0: 52428 + 0: 40945 + 0,-49: + 0: 65524 -1,-48: - 0: 65535 + 0: 4087 + 0,-47: + 0: 30547 + 1: 34944 -1,-47: - 0: 56831 - -2,-51: - 0: 65263 - -2,-50: - 0: 65535 - -2,-49: - 0: 65535 - -2,-52: - 0: 65262 - -1,-52: - 0: 65535 - -1,-51: - 0: 65535 - -1,-50: - 0: 65535 + 0: 52296 + 1: 13088 + 0,-46: + 0: 37719 + 1: 136 + -1,-46: + 0: 14412 + 1: 35 + 1,-48: + 0: 10230 + 1,-46: + 0: 12288 + 1: 2082 + 1,-47: + 0: 2 + 1: 8704 + 1,-49: + 0: 26350 + 2,-48: + 1: 1997 + 0: 50 + 2,-46: + 1: 4096 + 2,-49: + 1: 56704 + 0: 8814 + 3,-48: + 1: 255 + 4,-48: + 1: 255 + 4,-45: + 1: 64716 + -4,-48: + 1: 255 + -5,-48: + 1: 511 + -5,-45: + 1: 65382 + -4,-49: + 1: 34944 + -3,-48: + 1: 26231 + -3,-49: + 1: 24820 + -2,-48: + 0: 36863 + -2,-46: + 1: 4612 + 0: 34952 + -2,-47: + 0: 34952 + 1: 17408 -1,-49: - 0: 65535 + 0: 39859 + -4,-52: + 1: 61440 + -4,-51: + 1: 15 + -5,-52: + 1: 63078 + -5,-51: + 1: 13119 + -3,-52: + 1: 62532 + -3,-51: + 1: 17487 + -3,-53: + 1: 17476 + -3,-50: + 1: 17476 + -2,-52: + 1: 4096 + 0: 52416 + -2,-51: + 1: 4097 + 0: 52416 + -2,-50: + 0: 61152 + -2,-49: + 0: 3822 + -2,-53: + 1: 34952 + -1,-52: + 0: 12194 + -1,-51: + 0: 11194 + -1,-50: + 0: 48122 + -1,-53: + 0: 33996 + 1: 546 0,-52: - 0: 65535 + 0: 4089 0,-51: - 0: 65535 + 0: 20479 0,-50: 0: 65535 - 0,-49: - 0: 65535 - 1,-52: - 0: 65535 - 1,-51: - 0: 65535 - 1,-50: - 0: 65535 - 1,-49: - 0: 65535 - 2,-51: - 0: 65535 - 2,-50: - 0: 65535 - 2,-49: - 0: 65535 - -3,-56: - 0: 61030 - -3,-55: - 0: 17476 - -2,-56: - 0: 64319 - -2,-55: - 0: 11195 - -2,-53: - 0: 51336 - -2,-54: - 0: 34952 - -1,-56: - 0: 65503 - -1,-55: - 0: 57343 - -1,-54: - 0: 53245 - -1,-53: - 0: 65228 - 0,-56: - 0: 65535 - 0,-55: - 0: 32767 - 0,-54: - 0: 32759 0,-53: - 0: 65399 - 1,-56: - 0: 65535 - 1,-55: - 0: 40959 - 1,-54: - 0: 9011 + 0: 13687 + 1: 2184 + 1,-52: + 0: 28528 + 1,-50: + 0: 61438 + 1,-51: + 0: 61030 1,-53: - 0: 61986 - 2,-56: - 0: 65501 - 2,-55: - 0: 341 - -3,-58: - 0: 60996 + 1: 41506 + 2,-52: + 1: 54384 + 0: 8960 + 2,-51: + 1: 2269 + 0: 58914 + 2,-50: + 0: 61166 + 3,-52: + 1: 61440 + 3,-51: + 1: 4367 + 3,-50: + 1: 4369 + 3,-49: + 1: 17 + 4,-52: + 1: 63624 + 4,-51: + 1: 15 + -3,-56: + 1: 61030 -3,-57: - 0: 26214 - -2,-59: - 0: 45704 - -2,-58: - 0: 49083 + 1: 26214 + -3,-55: + 1: 17476 + -3,-54: + 1: 17476 + -2,-56: + 1: 29503 -2,-57: - 0: 13299 - -2,-60: - 0: 34952 - -1,-60: - 0: 64716 - -1,-59: - 0: 64989 - -1,-58: - 0: 65535 + 1: 13299 + -2,-55: + 1: 9011 + -1,-56: + 1: 17 + 0: 47530 + -1,-55: + 0: 35007 + 1: 12288 + -2,-54: + 1: 34952 + -1,-54: + 1: 9011 + 0: 50304 -1,-57: - 0: 56829 - 0,-60: - 0: 63351 - 0,-59: - 0: 63351 - 0,-58: - 0: 65535 + 1: 4369 + 0: 43690 + 0,-56: + 0: 48051 + 0,-55: + 0: 13247 + 1: 32768 + 0,-54: + 0: 30001 + 1: 34952 0,-57: - 0: 30711 - 1,-60: - 0: 12834 - 1,-59: - 0: 47411 - 1,-58: - 0: 49083 + 0: 48059 + 1,-56: + 0: 13105 + 1: 34956 + 1,-55: + 0: 51 + 1: 48264 + 1,-54: + 1: 9011 1,-57: - 0: 39417 - 2,-59: - 0: 4096 - 2,-58: - 0: 65365 + 1: 39417 + 2,-56: + 1: 65501 + 2,-55: + 1: 341 2,-57: - 0: 56797 - -3,-64: - 0: 65535 - -3,-63: - 0: 65535 - -3,-62: - 0: 65535 + 1: 56797 + -4,-61: + 0: 30591 + -4,-60: + 0: 26466 + -5,-60: + 0: 65520 + -4,-59: + 1: 240 + 0: 2 + -5,-59: + 1: 240 + -3,-59: + 1: 17524 + -3,-58: + 1: 60996 + -3,-60: + 1: 17476 -3,-61: - 0: 17663 - -2,-64: - 0: 65535 - -2,-63: - 0: 65535 - -2,-62: - 0: 65535 + 1: 17648 + 0: 15 + -2,-58: + 1: 14131 + -2,-59: + 1: 12936 + -2,-60: + 1: 34952 -2,-61: - 0: 36095 - -1,-64: - 0: 65535 - -1,-63: - 0: 65535 - -1,-62: - 0: 65535 + 1: 34832 + 0: 143 + -1,-60: + 1: 12834 + 0: 19660 + -1,-59: + 1: 819 + 0: 34824 + -1,-58: + 0: 39931 -1,-61: - 0: 61439 - 0,-64: - 0: 65535 - 0,-63: - 0: 65535 - 0,-62: - 0: 65535 + 1: 8192 + 0: 18479 + 0,-60: + 0: 22391 + 1: 34952 + 0,-59: + 0: 13075 + 1: 2184 + 0,-58: + 0: 15355 0,-61: + 0: 21407 + 1: 32768 + 1,-60: + 1: 12834 + 1,-59: + 1: 35123 + 1,-58: + 0: 4369 + 1: 35976 + 1,-61: + 1: 8704 + 0: 255 + 2,-59: + 1: 4096 + 2,-58: + 1: 65365 + 3,-60: + 1: 3170 + 0: 8 + 3,-61: + 1: 8752 + 0: 34959 + 4,-60: + 0: 15 + 1: 3840 + -4,-64: 0: 65535 + -4,-65: + 0: 65399 + -5,-64: + 0: 65535 + -4,-63: + 0: 61823 + -5,-63: + 0: 2047 + -4,-62: + 0: 30583 + -5,-62: + 0: 65535 + -5,-61: + 0: 65535 + -3,-64: + 0: 4369 + 1: 17476 + -3,-63: + 0: 61441 + 1: 1860 + -3,-62: + 1: 62663 + -3,-65: + 0: 4352 + 1: 17487 + -2,-64: + 0: 11259 + -2,-63: + 0: 64767 + -2,-62: + 1: 4112 + 0: 52424 + -2,-65: + 0: 16364 + -1,-64: + 0: 36863 + -1,-63: + 0: 65262 + -1,-62: + 0: 47342 + -1,-65: + 0: 36251 + 0,-64: + 0: 56603 + 0,-63: + 0: 40447 + 0,-62: + 0: 65467 + 0,-65: + 0: 64315 1,-64: 0: 65535 1,-63: 0: 65535 1,-62: - 0: 65535 - 1,-61: - 0: 12287 - 2,-64: - 0: 65535 - 2,-63: - 0: 65535 - 2,-62: - 0: 65535 - 2,-61: - 0: 511 - 3,-64: - 0: 65535 - 3,-63: - 0: 65535 - 3,-62: - 0: 65535 - 3,-61: - 0: 65535 - -3,-66: - 0: 65476 - -3,-65: - 0: 65535 - -2,-66: - 0: 65532 - -2,-65: - 0: 65535 - -2,-67: - 0: 34952 - -1,-66: - 0: 65535 - -1,-65: - 0: 65535 - -1,-67: - 0: 60622 - 0,-67: - 0: 63359 - 0,-66: - 0: 65535 - 0,-65: - 0: 65535 - 1,-66: - 0: 65527 + 0: 65295 1,-65: - 0: 65535 - 1,-67: - 0: 30583 - 2,-66: - 0: 65328 + 0: 65423 + 2,-64: + 0: 64977 + 2,-63: + 0: 61917 + 2,-62: + 0: 1 + 1: 57356 + 2,-61: + 0: 15 + 1: 224 2,-65: - 0: 65535 - 3,-66: - 0: 65501 + 0: 61697 + 1: 3084 + 3,-63: + 0: 63726 + 3,-62: + 1: 12291 + 0: 2184 3,-65: - 0: 65535 + 0: 63624 + 1: 771 + 3,-64: + 0: 61160 4,-64: 0: 65535 4,-63: 0: 65535 4,-62: - 0: 65535 + 0: 20479 4,-61: 0: 65535 - 5,-64: + -4,-67: + 0: 65280 + -5,-67: + 0: 65399 + -4,-66: + 0: 63359 + -5,-66: 0: 65535 - 5,-63: - 0: 65535 - 5,-62: - 0: 65535 - 5,-61: + -5,-65: 0: 65535 + -3,-67: + 0: 4352 + 1: 17476 + -3,-66: + 0: 61441 + 1: 3908 + -3,-68: + 1: 17472 + -3,-69: + 0: 52224 + 1: 4 + -2,-68: + 0: 2799 + 1: 8192 + -2,-66: + 1: 264 + 0: 63616 + -2,-69: + 0: 63351 + -1,-68: + 0: 33663 + -2,-67: + 1: 34952 + -1,-66: + 0: 62084 + 1: 2 + -1,-67: + 1: 8738 + 0: 52420 + 0,-68: + 0: 14783 + 0,-67: + 0: 30581 + 1: 34952 + 0,-66: + 0: 63797 + 1: 8 + 0,-69: + 0: 64496 + 1,-68: + 0: 8823 + 1,-67: + 1: 21845 + 0: 8738 + 1,-66: + 0: 61986 + 1: 136 + 1,-69: + 0: 30579 + 2,-66: + 1: 3120 + 0: 61440 + 2,-67: + 1: 32768 + 3,-67: + 1: 12808 + 0: 34816 + 3,-66: + 1: 770 + 0: 63496 + 3,-68: + 1: 57568 + 4,-68: + 1: 62192 + 4,-67: + 0: 65280 + 1: 10 4,-66: - 0: 65535 + 0: 65359 4,-65: 0: 65535 - 5,-66: - 0: 65535 + 5,-64: + 0: 4360 + 1: 2182 + 5,-63: + 0: 1 5,-65: - 0: 65535 - 3,-68: - 0: 20736 - 3,-67: - 0: 64991 - 4,-67: - 0: 65535 - 4,-68: - 0: 43008 - 3,-36: - 0: 65535 - 3,-35: - 0: 65535 - 3,-34: - 0: 34958 - 3,-40: - 0: 61439 - 3,-39: - 0: 65535 - 3,-38: - 0: 65535 - 3,-37: - 0: 65535 - 2,-41: - 0: 4095 - 3,-42: - 0: 63744 - 3,-41: - 0: 65535 - -4,-64: - 0: 65535 - -4,-63: - 0: 65535 - -4,-62: - 0: 65535 - -4,-61: - 0: 65535 - -4,-66: - 0: 65535 - -4,-65: - 0: 65535 - -3,-68: - 0: 17612 - -2,-68: - 0: 61439 - -1,-68: - 0: 65535 - 0,-68: - 0: 65535 - 1,-68: - 0: 32767 - 4,-36: - 0: 30583 - 4,-35: - 0: 30583 - 4,-34: - 0: 3 - 4,-40: - 0: 14199 - 4,-39: - 0: 30583 - 4,-38: - 0: 30583 - 4,-37: - 0: 30583 - 4,-42: - 0: 30564 - 4,-41: - 0: 30719 + 0: 39048 + 1: 24576 + 6,-64: + 0: 15 + 1: 544 + 6,-65: + 1: 62933 + 7,-64: + 0: 15 + 1: 2720 + 7,-65: + 1: 30037 + 0: 34952 + 8,-64: + 1: 3 + 5,-68: + 1: 12336 + 5,-66: + 1: 102 + 0: 34952 + 5,-67: + 1: 34816 + 6,-66: + 0: 15 + 1: 54768 + 6,-67: + 1: 8704 + 7,-66: + 1: 20784 + 0: 32768 + 7,-67: + 1: 8704 + 8,-66: + 1: 272 + 8,-65: + 1: 4096 + 4,-33: + 1: 16384 + 4,-32: + 1: 52420 + 5,-40: + 1: 1094 + 5,-41: + 1: 26483 4,-43: - 0: 16520 - -6,-65: - 0: 58082 - 2: 3084 - -6,-66: - 0: 8942 - 2: 52224 - -5,-66: - 0: 61183 - 2: 4352 - -5,-65: - 2: 257 - 0: 65278 - -6,-64: - 0: 58082 - 2: 3084 - -6,-63: - 3: 12 - 0: 60642 - -6,-62: - 0: 61166 - -6,-61: - 0: 61166 - -5,-64: - 2: 257 - 0: 65278 - -5,-63: - 3: 1 - 0: 65534 - -5,-62: - 0: 65535 - -5,-61: - 0: 65535 + 1: 16520 + 5,-44: + 1: 4369 + 5,-43: + 1: 13073 + 5,-45: + 1: 4096 + 5,-42: + 1: 13107 + -4,-80: + 1: 65280 + -5,-80: + 1: 65382 -4,-78: - 0: 51200 + 1: 49152 -4,-77: - 0: 52428 - -3,-78: - 0: 65524 - -3,-77: - 0: 65535 + 1: 50244 -3,-80: - 0: 65484 + 1: 4864 + 0: 2184 + -3,-78: + 1: 4884 + 0: 34816 + -4,-76: + 1: 34952 + -3,-77: + 1: 4115 + 0: 52232 -3,-79: - 0: 65535 + 1: 4369 + 0: 3276 + -3,-81: + 1: 16384 + -3,-76: + 0: 51404 -2,-80: - 0: 65535 + 0: 53247 -2,-79: - 0: 65535 + 0: 52733 -2,-78: - 0: 65535 + 0: 65292 + 1: 1 -2,-77: - 0: 65535 + 0: 60943 + -2,-76: + 0: 61167 + -2,-81: + 0: 34952 + 1: 68 -1,-80: - 0: 65535 + 0: 49083 -1,-79: - 0: 65535 + 0: 48059 -1,-78: - 0: 65535 + 0: 65499 -1,-77: + 0: 64479 + -1,-76: 0: 65535 + -1,-81: + 0: 10316 + 1: 51 0,-80: - 0: 65535 + 0: 46015 0,-79: - 0: 65535 + 0: 48059 0,-78: - 0: 65535 + 0: 63419 0,-77: - 0: 65535 + 0: 47103 + 0,-81: + 0: 37719 + 1: 136 + 0,-76: + 0: 48059 1,-80: - 0: 65535 + 0: 61687 1,-79: 0: 65535 1,-78: - 0: 65535 + 0: 62719 1,-77: - 0: 65535 - 2,-80: - 0: 65535 - 2,-79: - 0: 65535 - 2,-78: - 0: 65535 - 2,-77: - 0: 32767 - 3,-80: - 0: 4095 - 3,-79: - 0: 4095 - 3,-78: - 0: 62208 - 3,-77: - 0: 1023 - 0,-72: - 0: 65535 - 0,-71: - 0: 65535 - 0,-70: - 0: 65535 - 0,-69: - 0: 65535 - 1,-72: - 0: 65535 - 1,-71: - 0: 65535 - 1,-70: - 0: 65535 - 1,-69: - 0: 65535 - 2,-72: - 0: 13107 - 2,-71: - 0: 65527 - 2,-70: - 0: 65535 - 2,-69: - 0: 311 - -3,-69: - 0: 52428 - -3,-70: - 0: 50244 - -2,-72: - 0: 65535 - -2,-71: - 0: 61439 - -2,-70: - 0: 65518 - -2,-69: - 0: 65535 - -1,-72: - 0: 65535 - -1,-71: - 0: 65535 - -1,-70: - 0: 65535 - -1,-69: - 0: 65535 - 0,-76: - 0: 65535 - 0,-75: - 0: 65535 - 0,-74: - 0: 30719 - 0,-73: - 0: 65527 + 0: 62719 1,-76: 0: 65535 - 1,-75: - 0: 65535 - 1,-74: - 0: 30591 - 1,-73: - 0: 65527 - 2,-76: - 0: 65399 - 2,-75: - 0: 65535 - 2,-73: - 0: 12544 - 3,-76: - 0: 65280 - 3,-75: - 0: 65295 - -4,-76: - 0: 34952 - -4,-75: - 0: 35071 - -3,-76: - 0: 65535 - -3,-75: - 0: 52479 - -2,-76: - 0: 65535 - -2,-75: - 0: 65535 - -2,-73: - 0: 65224 - -2,-74: - 0: 35022 - -1,-76: - 0: 65535 - -1,-75: - 0: 65535 - -1,-74: - 0: 52479 - -1,-73: - 0: 65532 - -3,-81: - 0: 49152 - -2,-81: - 0: 64716 - -1,-81: - 0: 65533 - 0,-81: - 0: 65527 1,-81: - 0: 63346 - 4,-80: - 0: 53247 - 4,-79: - 0: 36863 - 4,-78: - 0: 65516 - 4,-77: - 0: 61439 - 5,-80: - 0: 65521 - 5,-79: - 0: 65535 - 5,-78: - 0: 65535 - 5,-77: - 0: 65535 - 6,-80: - 0: 65393 - 6,-79: - 0: 12671 - 6,-78: - 0: 65527 - 6,-77: - 0: 65535 - 7,-78: - 0: 65314 - 7,-77: - 0: 12287 - 4,-76: - 0: 65420 - 4,-75: - 0: 65487 - 5,-76: - 0: 65535 - 5,-75: - 0: 65535 - 5,-74: - 0: 1531 - 6,-76: - 0: 28983 - 6,-75: - 0: 32767 - 6,-74: - 0: 371 - 7,-76: - 0: 26146 - 5,-81: + 0: 8704 + 1: 34 + 2,-80: + 0: 21616 + 2,-79: + 0: 26181 + 2,-78: + 0: 62054 + 2,-77: + 0: 8959 + 2,-76: + 0: 8738 + 1: 2048 + 3,-80: + 1: 3855 + 0: 240 + 3,-79: + 1: 3855 + 0: 240 + 3,-78: 0: 4096 + 1: 49664 + 3,-77: + 0: 31 + 1: 704 + 4,-80: + 1: 783 + 0: 34928 + 4,-79: + 1: 36611 + 0: 120 + 4,-78: + 1: 4388 + 0: 52352 + 4,-77: + 0: 36045 + 1: 8464 + 0,-72: + 0: 22365 + 0,-73: + 0: 37719 + 1: 136 + -1,-72: + 0: 65163 + 0,-71: + 0: 65524 + -1,-71: + 0: 48051 + 0,-70: + 0: 65535 + -1,-70: + 0: 48059 + -1,-69: + 0: 3827 + 1,-72: + 0: 30479 + 1,-71: + 0: 65524 + 1,-70: + 0: 65535 + 1,-73: + 0: 12834 + 1: 2181 + 2,-72: + 0: 4369 + 2,-71: + 0: 62736 + 1: 4 + 2,-70: + 0: 5617 + 2,-69: + 1: 308 + -4,-72: + 1: 8 + -4,-73: + 1: 34952 + -3,-72: + 1: 17487 + -3,-71: + 1: 17484 + -3,-70: + 1: 17476 + -2,-72: + 0: 26350 + -2,-71: + 0: 52294 + 1: 256 + -2,-70: + 1: 256 + 0: 19660 + -2,-73: + 0: 49152 + 1: 192 + -1,-73: + 0: 14412 + 1: 50 + 0,-75: + 0: 40763 + -1,-75: + 0: 12171 + 0,-74: + 0: 30547 + 1: 34944 + -1,-74: + 0: 52296 + 1: 8736 + 1,-75: + 0: 28431 + 1,-74: + 1: 21760 + 0: 8738 + 2,-75: + 0: 1894 + 2,-74: + 1: 15 + 2,-73: + 1: 256 + 3,-76: + 1: 3840 + 0: 61440 + 3,-75: + 1: 3855 + 0: 61440 + 3,-74: + 1: 15 + 4,-76: + 1: 3972 + 0: 28672 + 4,-75: + 1: 771 + 0: 30856 + 4,-74: + 1: 207 + -4,-75: + 1: 35071 + -5,-75: + 1: 511 + -3,-75: + 1: 17 + 0: 2060 + -4,-74: + 1: 34952 + -2,-75: + 0: 53006 + -2,-74: + 0: 8 + -4,-83: + 1: 255 + -5,-83: + 1: 511 + -3,-83: + 1: 255 + -3,-84: + 1: 2180 -2,-84: - 0: 65535 + 1: 4352 + 0: 206 -2,-83: - 0: 61439 - -2,-82: - 0: 52430 - -1,-84: - 0: 65535 - -1,-83: - 0: 65535 - -1,-82: - 0: 56831 - 0,-84: - 0: 65535 - 0,-83: - 0: 65535 - 0,-82: - 0: 30719 - 1,-84: - 0: 65535 - 1,-83: - 0: 65535 - 1,-82: - 0: 8831 - 2,-84: - 0: 13111 - 0,-88: - 0: 65399 - 0,-87: - 0: 65535 - 0,-86: - 0: 65535 - 0,-85: - 0: 65535 - 1,-88: - 0: 63266 - 1,-87: - 0: 65535 - 1,-86: - 0: 65535 - 1,-85: - 0: 65535 - 2,-87: - 0: 62224 - 2,-86: - 0: 65535 - 2,-85: - 0: 65535 - -2,-87: - 0: 65534 - -2,-86: - 0: 65535 + 1: 273 + 0: 36044 -2,-85: 0: 65535 - -2,-88: - 0: 60552 - -1,-88: - 0: 65484 - -1,-87: - 0: 65535 - -1,-86: - 0: 65535 + -2,-82: + 1: 17410 + 0: 34952 + -1,-84: + 0: 52381 + -1,-83: + 0: 4095 + -1,-82: + 1: 13088 + 0: 52296 -1,-85: - 0: 65535 - 0,-92: - 0: 65535 - 0,-91: - 0: 65535 - 0,-90: - 0: 65535 - 0,-89: - 0: 32767 - 1,-92: - 0: 65535 - 1,-91: - 0: 65535 - 1,-90: - 0: 65535 - 1,-89: - 0: 10111 - 2,-92: - 0: 4369 - 2,-91: - 0: 61713 - 2,-90: - 0: 4383 - -2,-92: - 0: 65535 - -2,-91: - 0: 65535 - -2,-90: - 0: 65535 - -2,-89: - 0: 36046 - -1,-92: - 0: 65535 - -1,-91: - 0: 65535 - -1,-90: - 0: 65535 - -1,-89: - 0: 53247 - -2,-93: - 0: 65518 - -2,-96: - 0: 52974 - -2,-94: - 0: 65516 - -2,-95: - 0: 49160 - -1,-96: - 0: 65535 - -1,-95: - 0: 63692 - -1,-94: - 0: 65535 - -1,-93: - 0: 65535 - 0,-96: - 0: 65535 - 0,-95: - 0: 63351 - 0,-94: - 0: 65535 - 0,-93: - 0: 65535 - 1,-96: - 0: 32767 - 1,-95: - 0: 29218 - 1,-94: - 0: 65527 - 1,-93: - 0: 65535 - 2,-93: - 0: 4352 - 0,-98: - 0: 65535 - 0,-97: - 0: 65535 - 1,-99: - 0: 65535 - 1,-98: - 0: 65535 - 1,-97: - 0: 65535 - -2,-97: - 0: 61166 - -1,-98: - 0: 65254 - -1,-97: - 0: 65535 - 2,-96: - 0: 17 - 0,-100: - 0: 65535 - 0,-99: - 0: 61183 - 1,-100: - 0: 65535 - 2,-100: - 0: 4368 - 2,-99: - 0: 4369 - 2,-97: - 0: 4368 - -2,-100: - 0: 36078 - -2,-99: - 0: 8 - -1,-100: - 0: 61439 - -1,-99: - 0: 16384 - 0,-101: - 0: 65399 - 1,-101: - 0: 30496 - -2,-101: - 0: 51336 - -2,-102: - 0: 32768 - -1,-101: - 0: 65484 - 1,3: - 0: 30702 - 1,2: - 0: 59118 - 2,0: - 0: 61239 - 2,1: - 0: 16236 - 2,2: - 0: 17 - 3,0: - 0: 8044 - 3,1: - 0: 12544 - 3,2: - 0: 33074 - 2,-3: - 0: 4369 - 3,-4: - 0: 15 - 3,-1: - 0: 33272 - -4,0: - 0: 8134 - -4,2: - 0: 12680 - -4,1: - 0: 32768 - -3,0: - 0: 65420 - -3,1: - 0: 40902 - -3,2: - 0: 272 - -2,2: - 0: 60671 - -2,3: - 0: 52462 - -1,3: - 0: 4352 - -4,-2: - 0: 4096 - -4,-1: - 0: 12787 - -3,-1: - 0: 25596 - 2,-7: - 0: 15 - 3,-8: - 0: 61440 - 3,-7: - 0: 207 - 3,-5: - 0: 61440 - -4,-15: - 0: 61440 - -4,-14: - 0: 15 - -3,-15: - 0: 65152 - -3,-14: - 0: 143 - 3,-15: - 0: 64767 - 3,-14: - 0: 15 - 2,-19: - 0: 36864 - 3,-18: - 0: 65535 - -4,-18: - 0: 65280 - -3,-18: - 0: 65408 - -3,-17: - 0: 142 - 2,-24: - 0: 383 - 2,-22: - 0: 28928 - 2,-21: - 0: 65535 - 3,-24: - 0: 34959 - 3,-21: - 0: 65535 - -4,-24: - 0: 15 - -4,-21: - 0: 255 - -4,-28: - 0: 4080 - -4,-25: - 0: 61440 - 2,-28: - 0: 65393 - 2,-27: - 0: 1 - 2,-25: - 0: 62224 - 3,-28: - 0: 65416 - 3,-25: - 0: 63624 - -4,-31: - 0: 255 - 2,-32: - 0: 4096 - 2,-31: - 0: 32755 - 3,-31: - 0: 36856 - -4,-35: - 0: 65280 - -3,-35: - 0: 65532 - -3,-34: - 0: 65535 - -4,-38: - 0: 4080 - -3,-38: - 0: 53244 - -3,-39: - 0: 52428 - 4,-33: - 0: 16384 - -2,4: - 0: 2252 - -1,4: - 0: 65329 - -1,5: - 0: 2190 - 0,4: - 0: 65152 - 0,5: - 0: 4927 - 0,6: - 0: 17 - 1,4: - 0: 4983 - -5,0: - 0: 61030 - -5,1: - 0: 26214 - -5,2: - 0: 36046 - -5,-3: - 0: 8738 - -5,-2: - 0: 61030 - -5,-1: - 0: 28390 - 4,-4: - 0: 35023 - 4,-2: - 0: 65228 - 4,-1: - 0: 57341 - 4,-3: - 0: 34952 - 4,0: - 0: 65484 - 4,2: - 0: 14190 - 4,1: - 0: 52428 - 4,-8: - 0: 64640 - 4,-7: - 0: 36095 - 4,-5: - 0: 64640 - 4,-6: - 0: 8 - 5,-8: - 0: 4919 - 5,-7: - 0: 17 - 5,-12: - 0: 13073 - 5,-11: - 0: 26211 - 5,-10: - 0: 26214 - 5,-9: - 0: 26214 - 4,-15: - 0: 61815 - 4,-14: - 0: 15 - 4,-16: + 0: 56831 + 0,-84: + 0: 30487 + 0,-83: + 0: 6135 + 0,-82: + 0: 30547 + 1: 34944 + 0,-85: 0: 30591 - 5,-16: - 0: 13105 - 5,-15: - 0: 13107 - 5,-14: - 0: 26231 - 5,-13: - 0: 5444 - 4,-18: - 0: 65535 - 4,-19: - 0: 65399 - 4,-17: - 0: 63999 - 5,-18: - 0: 4352 - 5,-17: - 0: 4369 - 5,-20: - 0: 17478 - -6,-14: - 0: 52428 - -6,-13: - 0: 1092 - -6,-16: - 0: 34944 - -6,-15: - 0: 34952 - -5,-16: - 0: 4371 - -5,-15: - 0: 61713 - -5,-14: - 0: 31 - -6,-20: - 0: 17484 - -5,-18: - 0: 65382 - -5,-17: - 0: 13107 - -5,-19: - 0: 26180 - 4,-24: - 0: 34959 - 4,-21: - 0: 30719 - 4,-23: - 0: 136 - 5,-24: - 0: 4369 - 5,-23: - 0: 13073 - 5,-22: - 0: 13107 - 5,-21: - 0: 26483 - 4,-28: - 0: 65280 - 4,-25: - 0: 64716 - 4,-26: - 0: 50240 - 5,-28: - 0: 29491 - 5,-27: - 0: 18023 - 5,-25: - 0: 4096 - 5,-26: - 0: 68 - -6,-21: - 0: 52424 - -6,-23: - 0: 34816 - -6,-22: - 0: 34952 - -5,-24: - 0: 13119 - -5,-23: - 0: 4403 - -5,-22: - 0: 4369 - -5,-21: - 0: 511 - -6,-28: - 0: 52360 - -6,-27: - 0: 17612 - -6,-26: - 0: 4 - -5,-28: - 0: 8177 - -5,-25: - 0: 63078 - -5,-26: - 0: 25664 - 4,-31: - 0: 36860 - 4,-32: - 0: 52420 - 4,-30: - 0: 34952 - 5,-31: - 0: 4368 - 5,-30: - 0: 4369 - 5,-29: - 0: 13107 - -6,-30: - 0: 32768 - -6,-29: - 0: 34952 - -5,-31: - 0: 13311 - -5,-30: - 0: 4915 - -5,-29: - 0: 4369 - -5,-32: - 0: 26214 - -6,-35: - 0: 51336 - -6,-34: - 0: 19660 - -6,-33: - 0: 68 - -6,-36: - 0: 34952 - -5,-36: - 0: 4369 - -5,-35: - 0: 65297 - -5,-34: - 0: 1 - -5,-33: - 0: 17408 - -5,-38: - 0: 16374 - -5,-37: - 0: 13107 - -5,-39: - 0: 26212 - -5,-40: - 0: 16384 - 3,-16: - 0: 65535 - 3,-20: - 0: 65535 - 3,-19: - 0: 65535 - 3,-17: - 0: 64767 - 3,-22: - 0: 65534 - 3,-23: - 0: 34952 - 3,-27: - 0: 34952 - 3,-26: - 0: 34952 - 3,-32: - 0: 34952 - 3,-30: - 0: 34952 - 3,-29: - 0: 34952 - 3,-33: - 0: 34952 - -4,-48: - 0: 255 - -3,-48: - 0: 61183 - -4,-49: - 0: 34944 - -3,-49: - 0: 57588 - -3,-52: - 0: 62532 - -3,-51: - 0: 17487 - -3,-50: - 0: 17476 - -3,-54: - 0: 17476 - -3,-53: - 0: 17476 - -3,-60: - 0: 17476 - -3,-59: - 0: 17476 - 3,-60: - 0: 3310 - -3,-67: - 0: 17476 - 6,-64: - 0: 8751 - 6,-63: - 0: 65535 - 6,-62: - 0: 65535 - 6,-61: - 0: 65535 - 7,-64: - 0: 43695 - 7,-63: - 0: 65535 - 7,-62: - 0: 65535 - 7,-61: - 0: 65535 - 5,-67: - 0: 39184 - 6,-67: - 0: 65535 - 6,-66: - 0: 54783 - 6,-65: - 0: 62941 - 7,-67: - 0: 30583 - 7,-66: - 0: 55603 - 7,-65: - 0: 64989 - 8,-64: - 0: 3 - 8,-63: - 0: 30583 - 8,-62: - 0: 30583 - 8,-61: - 0: 30583 - 8,-66: - 0: 272 - 8,-65: - 0: 4096 - -4,-72: - 0: 8 - -3,-72: - 0: 17487 - -3,-71: - 0: 17484 - 2,-74: - 0: 15 - 3,-74: - 0: 15 - -4,-74: - 0: 34952 - -4,-73: - 0: 34952 - 4,-74: - 0: 207 - 4,-20: - 0: 30583 - 4,-22: - 0: 30579 - 4,-60: - 0: 4095 - 5,-60: - 0: 2553 - 6,-60: - 0: 4095 - 7,-60: - 0: 4095 - 8,-60: - 0: 887 - -3,-36: - 0: 52428 - -3,-33: - 0: 15 - -3,-37: - 0: 52428 - 2,-48: - 0: 2047 - 2,-52: - 0: 63344 - 3,-51: - 0: 4367 - 3,-50: - 0: 4369 - 3,-49: - 0: 17 - -4,-42: - 0: 65535 - -4,-41: - 0: 65535 - -4,-44: - 0: 12 - -3,-42: - 0: 65535 - -3,-41: - 0: 16383 - 3,-44: - 0: 15 - 3,-48: - 0: 255 - 3,-45: - 0: 61440 - -4,-45: - 0: 63232 - -4,-52: - 0: 61440 - -4,-51: - 0: 15 - 3,-52: - 0: 61440 - 5,-40: - 0: 1094 - 4,-44: - 0: 34959 - 5,-44: - 0: 4369 - 5,-43: - 0: 13073 - 5,-42: - 0: 13107 - 5,-41: - 0: 26483 - -3,-84: - 0: 2188 - -3,-86: - 0: 61167 - -3,-85: - 0: 61166 - -3,-87: - 0: 63488 - -6,-40: - 0: 68 - -6,-48: - 0: 52424 - -6,-47: - 0: 1100 - -5,-48: - 0: 511 - -5,-45: - 0: 65382 - -5,-46: - 0: 26180 - -5,-47: - 0: 17408 - -6,-41: - 0: 52428 - -6,-43: - 0: 34944 - -6,-42: - 0: 34952 - -5,-44: - 0: 13107 - -5,-43: - 0: 4403 - -5,-42: - 0: 61727 - -5,-41: - 0: 255 - 4,-48: - 0: 255 - 4,-45: - 0: 64716 - 4,-47: - 0: 16384 - 4,-46: - 0: 50244 - 5,-48: - 0: 52983 - 5,-45: - 0: 4096 - 5,-47: - 0: 2188 - 4,-52: - 0: 63624 - 4,-51: - 0: 15 - 5,-52: - 0: 12561 - 5,-51: - 0: 13107 - 5,-50: - 0: 26163 - 5,-49: - 0: 26214 - 4,-53: - 0: 34944 - 5,-53: - 0: 4096 - -6,-50: - 0: 34816 - -6,-49: - 0: 34952 - -5,-52: - 0: 63078 - -5,-51: - 0: 13119 - -5,-50: - 0: 4403 - -5,-49: - 0: 4369 - -5,-53: - 0: 25664 - -4,-43: - 0: 65280 - -4,-60: - 0: 65535 - -4,-67: - 0: 65392 - -4,-80: - 0: 65280 - -4,-83: - 0: 255 - -3,-83: - 0: 255 + 1,-84: + 0: 28687 + 1,-83: + 0: 14199 + 1,-85: + 0: 65522 + 1,-82: + 1: 8744 + 2,-84: + 1: 13092 2,-83: - 0: 4607 + 1: 4607 3,-83: - 0: 255 - 7,-80: - 0: 30562 - 7,-79: - 0: 17511 - 7,-75: - 0: 61303 - 7,-74: - 0: 36044 + 1: 255 4,-83: - 0: 255 - 5,-84: - 0: 13107 - 5,-83: - 0: 26483 - 5,-82: - 0: 1094 + 1: 255 + 5,-80: + 1: 1 + 0: 65280 + 5,-79: + 0: 17423 + 1: 256 + 5,-78: + 0: 49151 + 5,-77: + 0: 65456 + 5,-81: + 1: 4096 + 5,-76: + 0: 1103 + 1: 256 + 6,-80: + 0: 13056 + 1: 34881 + 6,-79: + 0: 3 + 1: 8520 + 6,-78: + 0: 30513 + 1: 132 + 6,-77: + 0: 14206 + 1: 32768 + 6,-76: + 0: 1 + 1: 16676 + 7,-80: + 1: 30562 + 7,-79: + 1: 17511 + 7,-78: + 0: 28672 + 1: 2082 + 7,-77: + 0: 119 + 1: 10240 7,-81: - 0: 13073 - 3,-87: - 0: 61440 - 3,-86: - 0: 287 - -4,-87: - 0: 61440 - -4,-86: - 0: 15 - 3,-91: - 0: 63624 - 3,-90: - 0: 143 - 3,-92: - 0: 34956 - -4,-92: - 0: 13110 - -4,-91: - 0: 62259 - -4,-90: - 0: 4415 - -3,-91: - 0: 61440 - -3,-90: - 0: 15 - -4,-94: - 0: 61132 - -4,-93: - 0: 26214 - -4,-95: - 0: 52360 - -3,-94: - 0: 65280 - 2,-94: - 0: 65280 - 3,-94: - 0: 65382 - 3,-95: - 0: 26146 - 3,-93: - 0: 52428 - -2,-98: - 0: 40960 - -6,-85: - 0: 34816 - -5,-87: - 0: 63078 - -5,-86: - 0: 13119 - -5,-85: - 0: 4403 - -5,-88: - 0: 25664 - -6,-83: - 0: 52424 - -6,-82: - 0: 1100 - -6,-84: - 0: 34952 - -5,-84: - 0: 4369 - -5,-83: - 0: 511 - -5,-81: - 0: 26180 - 4,-87: - 0: 64716 - 4,-86: - 0: 34959 - 4,-88: - 0: 50240 - 4,-85: - 0: 136 - 5,-87: - 0: 4096 - 5,-86: - 0: 4369 - 5,-85: - 0: 13073 - -5,-60: - 0: 65535 - -6,-67: - 0: 61152 - -5,-67: - 0: 65520 - -5,-90: - 0: 34952 - -5,-89: - 0: 136 - 4,-92: - 0: 4368 - 4,-91: - 0: 4369 - 4,-90: - 0: 13107 - 4,-89: - 0: 34 + 1: 13073 + 7,-76: + 1: 26146 8,-78: - 0: 61440 + 1: 61440 8,-77: - 0: 255 - 8,-80: + 1: 255 + 5,-75: + 0: 4095 + 5,-74: + 1: 1530 + 6,-75: + 0: 819 + 1: 18568 + 6,-74: + 1: 370 + 7,-75: + 1: 61303 + 7,-74: + 1: 36044 + 5,-83: + 1: 26483 + 5,-84: + 1: 13107 + 5,-85: + 1: 13073 + 5,-82: + 1: 1094 + 0,-88: + 0: 12561 + 1: 3140 + 0,-89: + 0: 4401 + 1: 19456 + 0,-87: + 0: 16305 + -1,-88: 0: 32768 - 8,-79: - 0: 34952 - 9,-79: - 0: 4368 - 9,-78: - 0: 13107 - 9,-77: - 0: 29491 - 9,-76: - 0: 18023 - 9,-75: - 0: 4 - -6,-77: - 0: 34952 - -5,-80: - 0: 65382 - -5,-79: - 0: 13107 - -5,-78: - 0: 13107 - -5,-77: - 0: 4369 - -6,-75: - 0: 52424 - -6,-74: - 0: 1100 - -6,-76: - 0: 34952 - -5,-76: - 0: 4369 - -5,-75: - 0: 511 - -4,-59: - 0: 15 + 1: 1621 + -1,-87: + 0: 48048 + 0,-86: + 0: 65393 + -1,-86: + 0: 56784 + 1,-87: + 0: 816 + 1,-86: + 0: 65279 + 1,-88: + 1: 85 + 0: 546 + 1,-89: + 1: 20480 + 0: 8707 + 2,-86: + 0: 12305 + 1: 8 + 2,-85: + 0: 272 + 1: 32768 + 2,-87: + 1: 49664 + 3,-87: + 1: 61440 + 3,-86: + 1: 287 + 4,-87: + 1: 64716 + 4,-86: + 1: 34959 + -4,-87: + 1: 61440 + -4,-86: + 1: 15 + -5,-87: + 1: 63078 + -5,-86: + 1: 13119 + -3,-87: + 1: 30720 + -3,-86: + 1: 3 + 0: 34816 + -3,-85: + 1: 8192 + 0: 2184 + -2,-86: + 0: 65528 + -2,-87: + 0: 52352 + -2,-88: + 1: 68 + 0: 2184 + -2,-89: + 1: 16384 + 0: 34824 + -1,-89: + 1: 22016 + 0: 129 + 0,-92: + 0: 48051 + 0,-93: + 0: 45311 + -1,-92: + 0: 48057 + 0,-91: + 0: 64955 + -1,-91: + 0: 63419 + 0,-90: + 0: 32639 + -1,-90: + 0: 57310 + 1,-92: + 0: 53757 + 1,-91: + 0: 64799 + 1,-90: + 0: 16368 + 1,-93: + 0: 5495 + 2,-91: + 1: 57344 + 2,-90: + 1: 14 + 3,-91: + 1: 63624 + 3,-90: + 1: 143 + 3,-92: + 1: 34956 + 3,-93: + 1: 52428 + 4,-92: + 1: 4368 + 4,-91: + 1: 4369 + 4,-90: + 1: 13107 + -4,-92: + 1: 13110 + -4,-91: + 1: 62259 + -4,-90: + 1: 4415 + -5,-90: + 1: 34952 + -4,-93: + 1: 26214 + -3,-91: + 1: 61440 + -3,-90: + 1: 15 + -2,-92: + 0: 24806 + -2,-91: + 0: 60942 + -2,-90: + 0: 52960 + -1,-93: + 0: 45567 + -4,-94: + 1: 61132 + -4,-95: + 1: 52360 + -3,-94: + 1: 65280 + -2,-94: + 1: 4352 + 0: 52352 + -2,-93: + 1: 256 + 0: 1228 + -2,-96: + 0: 204 + 1: 32768 + -2,-97: + 0: 50380 + 1: 34 + -2,-95: + 1: 32776 + -1,-96: + 0: 2107 + 1: 24576 + -1,-94: + 0: 65320 + -1,-97: + 0: 47359 + -1,-95: + 1: 24644 + 0: 2184 + 0,-96: + 0: 4887 + 1: 49152 + 0,-95: + 0: 4915 + 1: 50244 + 0,-94: + 0: 65411 + 0,-97: + 0: 63344 + 1,-96: + 0: 639 + 1: 8192 + 1,-94: + 0: 30496 + 1,-97: + 0: 65404 + 1,-95: + 1: 8738 + 2,-94: + 1: 65280 + 2,-93: + 1: 256 + 3,-94: + 1: 65382 + 3,-95: + 1: 26146 + 0,-98: + 0: 48912 + 1: 34 + -1,-98: + 0: 65216 + 1: 34 + 1,-98: + 0: 12288 + 1: 544 + -2,-98: + 1: 8192 + 0: 32768 + -6,-85: + 1: 34816 + -5,-85: + 1: 4403 + -6,-84: + 1: 34952 + -5,-84: + 1: 4369 + -5,-88: + 1: 25664 + -6,-83: + 1: 52424 + -6,-82: + 1: 1100 + -5,-81: + 1: 26180 + -1,5: + 1: 2190 + 0,4: + 1: 65152 + 0,5: + 1: 4927 + 0,6: + 1: 17 + -5,1: + 1: 26214 + -5,-3: + 1: 8738 + 4,-2: + 1: 65228 + 4,-3: + 1: 34952 + 4,1: + 1: 52428 + 5,-8: + 1: 4919 + 5,-7: + 1: 17 + 4,-6: + 1: 8 + 5,-9: + 1: 26214 + 5,-12: + 1: 13073 + 5,-13: + 1: 5444 + 5,-11: + 1: 26211 + 5,-10: + 1: 26214 + 5,-16: + 1: 13105 + 5,-15: + 1: 13107 + 5,-14: + 1: 26231 + 5,-17: + 1: 4369 + 5,-18: + 1: 4352 + 5,-20: + 1: 17478 + 5,-21: + 1: 26483 + -6,-14: + 1: 52428 + -6,-13: + 1: 1092 + -6,-16: + 1: 34944 + -5,-16: + 1: 4371 + -6,-15: + 1: 34952 + -5,-17: + 1: 13107 + -6,-20: + 1: 17484 + -6,-21: + 1: 52424 + -5,-19: + 1: 26180 + 5,-24: + 1: 4369 + 4,-23: + 1: 136 + 5,-23: + 1: 13073 + 5,-25: + 1: 4096 + 5,-22: + 1: 13107 + 4,-26: + 1: 50240 + 5,-28: + 1: 29491 + 5,-29: + 1: 13107 + 5,-27: + 1: 18023 + 5,-26: + 1: 68 + -6,-23: + 1: 34816 + -5,-23: + 1: 4403 + -6,-22: + 1: 34952 + -5,-22: + 1: 4369 + -6,-28: + 1: 52360 + -6,-27: + 1: 17612 + -6,-26: + 1: 4 + -6,-29: + 1: 34952 + -5,-29: + 1: 4369 + -5,-26: + 1: 25664 + 5,-31: + 1: 4368 + 4,-30: + 1: 34952 + 5,-30: + 1: 4369 + -6,-30: + 1: 32768 + -5,-30: + 1: 4915 + -5,-32: + 1: 26214 + -5,-33: + 1: 17408 + -6,-35: + 1: 51336 + -6,-34: + 1: 19660 + -6,-33: + 1: 68 + -6,-36: + 1: 34952 + -5,-36: + 1: 4369 + -5,-34: + 1: 1 + -5,-37: + 1: 13107 + -6,-40: + 1: 68 + -6,-41: + 1: 52428 + -5,-39: + 1: 26212 + -5,-40: + 1: 16384 + 5,-60: + 1: 272 + 4,-88: + 1: 50240 + 5,-87: + 1: 4096 + 5,-86: + 1: 4369 + 4,-85: + 1: 136 + -6,-48: + 1: 52424 + -6,-47: + 1: 1100 + -6,-49: + 1: 34952 + -5,-49: + 1: 4369 + -5,-44: + 1: 13107 + -5,-46: + 1: 26180 + -5,-47: + 1: 17408 + -6,-43: + 1: 34944 + -5,-43: + 1: 4403 + -6,-42: + 1: 34952 + 4,-47: + 1: 16384 + 4,-46: + 1: 50244 + 5,-48: + 1: 52983 + 5,-49: + 1: 26214 + 5,-47: + 1: 2188 + 4,-53: + 1: 34944 + 5,-52: + 1: 12561 + 5,-51: + 1: 13107 + 5,-53: + 1: 4096 + 5,-50: + 1: 26163 + -6,-50: + 1: 34816 + -5,-50: + 1: 4403 + -5,-53: + 1: 25664 + -8,-64: + 1: 43690 + -9,-64: + 1: 34952 + -8,-63: + 1: 15278 + -9,-63: + 1: 8 + -8,-62: + 1: 255 + -8,-65: + 1: 44680 + -7,-63: + 1: 61184 + 5: 12 + -7,-62: + 1: 64443 + -7,-61: + 1: 6587 + -7,-60: + 1: 4369 + -7,-64: + 3: 12 + 4: 3072 + -6,-64: + 3: 1 + 4: 256 + 1: 17476 + -6,-63: + 5: 1 + 1: 5956 + -6,-62: + 1: 4096 + 0: 52428 + -6,-61: + 1: 1 + 0: 52428 + -6,-65: + 1: 17476 + 3: 257 -6,-60: - 0: 34958 + 1: 1 -6,-59: - 0: 8 - -5,-59: - 0: 15 + 1: 240 + -8,-68: + 1: 60032 + -8,-67: + 1: 43690 + -8,-66: + 1: 43694 + -9,-65: + 1: 34952 + -7,-67: + 1: 3840 + 0: 14 + -7,-68: + 0: 60928 + -7,-66: + 3: 3084 + -7,-65: + 3: 3084 + -6,-68: + 0: 65024 + -6,-67: + 1: 18176 + 0: 14 + -6,-66: + 3: 257 + 1: 17476 + -5,-68: + 0: 30464 + -5,-89: + 1: 136 + 4,-89: + 1: 34 + 8,-80: + 1: 32768 + 8,-79: + 1: 34952 + 9,-79: + 1: 4368 + 9,-78: + 1: 13107 + 9,-77: + 1: 29491 + 9,-76: + 1: 18023 + 9,-75: + 1: 4 + -6,-77: + 1: 34952 + -5,-77: + 1: 4369 + -6,-76: + 1: 34952 + -5,-79: + 1: 13107 + -5,-78: + 1: 13107 + -5,-76: + 1: 4369 + -6,-75: + 1: 52424 + -6,-74: + 1: 1100 + -9,-66: + 1: 32768 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -5415,6 +5253,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: 235 moles: @@ -5448,9 +5301,22 @@ entities: - volume: 2500 temperature: 293.15 moles: + - 6666.982 - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 - 6666.982 - 0 - 0 @@ -5460,6 +5326,8 @@ entities: - 0 - 0 - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -5467,6 +5335,1278 @@ entities: - type: FTLDestination - type: BecomesStation id: Train + - uid: 17345 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -2,-16: + ind: -2,-16 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17346 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -2,-15: + ind: -2,-15 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17347 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -2,-15: + ind: -2,-15 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17348 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -2,-15: + ind: -2,-15 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17349 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -2,-15: + ind: -2,-15 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17350 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -2,-15: + ind: -2,-15 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17351 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -2,-17: + ind: -2,-17 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17352 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -2,-15: + ind: -2,-15 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17353 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -2,-17: + ind: -2,-17 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17354 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -2,-17: + ind: -2,-17 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17355 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -2,-17: + ind: -2,-17 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17356 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -3,-17: + ind: -3,-17 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17358 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -3,-17: + ind: -3,-17 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17360 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -3,-17: + ind: -3,-17 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17362 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -3,-17: + ind: -3,-17 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17364 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -3,-17: + ind: -3,-17 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17366 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -3,-17: + ind: -3,-17 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17368 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -3,-17: + ind: -3,-17 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17370 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -3,-17: + ind: -3,-17 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17372 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -3,-17: + ind: -3,-17 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17374 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -3,-17: + ind: -3,-17 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17376 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -2,-16: + ind: -2,-16 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17377 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -2,-16: + ind: -2,-16 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17378 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -2,-15: + ind: -2,-15 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17379 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -2,-15: + ind: -2,-15 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17380 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -2,-15: + ind: -2,-15 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17381 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -2,-15: + ind: -2,-15 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - type: RadiationGridResistance + - uid: 17386 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -2,-15: + ind: -2,-15 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17387 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -2,-15: + ind: -2,-15 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17388 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -2,-15: + ind: -2,-15 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap + - uid: 17390 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5056241,-0.46626663 + parent: 1 + - type: MapGrid + chunks: + -2,-15: + ind: -2,-15 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: IFF + flags: HideLabel + - type: NavMap - proto: AccordionInstrument entities: - uid: 3 @@ -6537,11 +7677,6 @@ entities: - 9670 - proto: AirCanister entities: - - uid: 73 - components: - - type: Transform - pos: -21.5,-260.5 - parent: 2 - uid: 74 components: - type: Transform @@ -6574,11 +7709,6 @@ entities: - type: Transform pos: -5.5,-116.5 parent: 2 - - uid: 79 - components: - - type: Transform - pos: -5.5,-119.5 - parent: 2 - uid: 80 components: - type: Transform @@ -6608,16 +7738,21 @@ entities: - type: Transform pos: -12.5,-260.5 parent: 2 - - uid: 85 - components: - - type: Transform - pos: -15.5,-249.5 - parent: 2 - uid: 86 components: - type: Transform pos: -6.5,-260.5 parent: 2 + - uid: 16981 + components: + - type: Transform + pos: -15.5,-249.5 + parent: 2 + - uid: 17066 + components: + - type: Transform + pos: -23.5,-268.5 + parent: 2 - proto: AirlockBarLocked entities: - uid: 87 @@ -6772,20 +7907,18 @@ entities: parent: 2 - proto: AirlockDetectiveLocked entities: - - uid: 111 + - uid: 17246 components: - type: Transform - pos: -4.5,-69.5 + pos: 3.5,-330.5 parent: 2 -- proto: AirlockEngineeringGlass +- proto: AirlockEngineeringGlassLocked entities: - uid: 112 components: - type: Transform pos: -3.5,-248.5 parent: 2 -- proto: AirlockEngineeringGlassLocked - entities: - uid: 113 components: - type: Transform @@ -6964,32 +8097,6 @@ entities: - type: Transform pos: -7.5,-36.5 parent: 2 -- proto: AirlockExternalGlassAtmosphericsLocked - entities: - - uid: 143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-265.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 144: - - DoorStatus: DoorBolt - - uid: 144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-265.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 143: - - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: - uid: 145 @@ -7269,401 +8376,128 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-312.5 parent: 2 -- proto: AirlockHatchMaintenance - entities: - - uid: 187 + - uid: 17259 components: - type: Transform - pos: 0.5,-53.5 + pos: 0.5,-320.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16522: - - DoorStatus: Close - 16533: - - DoorStatus: Close - - uid: 188 + - uid: 17260 components: - type: Transform - pos: 0.5,-26.5 + pos: 0.5,-328.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16510: - - DoorStatus: Close - 16534: - - DoorStatus: Close - - uid: 189 + - uid: 17261 components: - type: Transform - pos: 0.5,-18.5 + pos: 0.5,-296.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16510: - - DoorStatus: Close - 16534: - - DoorStatus: Close - - uid: 190 + - uid: 17262 components: - type: Transform - pos: 0.5,-45.5 + pos: 0.5,-288.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16533: - - DoorStatus: Close - 16522: - - DoorStatus: Close - - uid: 191 + - uid: 17263 components: - type: Transform - pos: 0.5,-72.5 + pos: 0.5,-269.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16525: - - DoorStatus: Close - 16535: - - DoorStatus: Close - - uid: 192 + - uid: 17264 components: - type: Transform - pos: 0.5,-80.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16525: - - DoorStatus: Close - 16535: - - DoorStatus: Close - - uid: 193 - components: - - type: Transform - pos: 0.5,-99.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16530: - - DoorStatus: Close - 16536: - - DoorStatus: Close - - uid: 194 - components: - - type: Transform - pos: 0.5,-107.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16536: - - DoorStatus: Close - 16530: - - DoorStatus: Close - - uid: 195 - components: - - type: Transform - pos: 0.5,-126.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 3 - - type: DeviceLinkSource - linkedPorts: - 16537: - - DoorStatus: Close - 16523: - - DoorStatus: Close - - uid: 196 - components: - - type: Transform - pos: 0.5,-134.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16537: - - DoorStatus: Close - 16523: - - DoorStatus: Close - 195: - - DoorStatus: Close - - uid: 197 - components: - - type: Transform - rot: 3.141592653589793 rad pos: 0.5,-261.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16540: - - DoorStatus: Close - 16541: - - DoorStatus: Close - - uid: 198 - components: - - type: Transform - pos: 0.5,-153.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16531: - - DoorStatus: Close - 16538: - - DoorStatus: Close - - uid: 199 - components: - - type: Transform - pos: 0.5,-20.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16510: - - DoorStatus: DoorBolt - 16534: - - DoorStatus: DoorBolt - - uid: 200 - components: - - type: Transform - pos: 0.5,-24.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16510: - - DoorStatus: DoorBolt - 16534: - - DoorStatus: DoorBolt - - uid: 201 - components: - - type: Transform - pos: 0.5,-105.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16530: - - DoorStatus: DoorBolt - 16536: - - DoorStatus: DoorBolt - - uid: 202 - components: - - type: Transform - pos: 0.5,-186.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 16524: - - DoorStatus: DoorBolt - 16511: - - DoorStatus: DoorBolt - - uid: 203 - components: - - type: Transform - pos: 0.5,-161.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16538: - - DoorStatus: Close - 16531: - - DoorStatus: Close - - uid: 204 - components: - - type: Transform - pos: 0.5,-188.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16524: - - DoorStatus: Close - 16511: - - DoorStatus: Close - - uid: 205 - components: - - type: Transform - pos: 0.5,-180.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16524: - - DoorStatus: Close - 16511: - - DoorStatus: Close - - uid: 206 - components: - - type: Transform - pos: 0.5,-215.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16513: - - DoorStatus: Close - 16512: - - DoorStatus: Close - - uid: 207 - components: - - type: Transform - pos: 0.5,-207.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16513: - - DoorStatus: Close - 16512: - - DoorStatus: Close - - uid: 208 + - uid: 17265 components: - type: Transform pos: 0.5,-242.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16539: - - DoorStatus: Close - 16532: - - DoorStatus: Close - - uid: 209 + - uid: 17266 components: - type: Transform pos: 0.5,-234.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16539: - - DoorStatus: Close - 16532: - - DoorStatus: Close - - uid: 210 + - uid: 17267 components: - type: Transform - pos: 0.5,-74.5 + pos: 0.5,-215.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16535: - - DoorStatus: DoorBolt - 16525: - - DoorStatus: DoorBolt - - uid: 211 + - uid: 17268 components: - type: Transform - pos: 0.5,-78.5 + pos: 0.5,-207.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16535: - - DoorStatus: DoorBolt - 16525: - - DoorStatus: DoorBolt - - uid: 212 + - uid: 17269 components: - type: Transform - pos: 0.5,-182.5 + pos: 0.5,-188.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 3 - - type: DeviceLinkSource - linkedPorts: - 16511: - - DoorStatus: DoorBolt - 16524: - - DoorStatus: DoorBolt - - uid: 213 + - uid: 17270 components: - type: Transform - pos: 0.5,-159.5 + pos: 0.5,-180.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16531: - - DoorStatus: DoorBolt - 16538: - - DoorStatus: DoorBolt - - uid: 214 + - uid: 17271 components: - type: Transform - pos: 0.5,-263.5 + pos: 0.5,-161.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16540: - - DoorStatus: DoorBolt - 16541: - - DoorStatus: DoorBolt - - uid: 215 + - uid: 17272 components: - type: Transform - pos: 0.5,-240.5 + pos: 0.5,-153.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16539: - - DoorStatus: DoorBolt - 16532: - - DoorStatus: DoorBolt - - uid: 216 + - uid: 17273 components: - type: Transform - pos: 0.5,-326.5 + pos: 0.5,-134.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16528: - - DoorStatus: DoorBolt - 16516: - - DoorStatus: DoorBolt + - uid: 17274 + components: + - type: Transform + pos: 0.5,-126.5 + parent: 2 + - uid: 17275 + components: + - type: Transform + pos: 0.5,-107.5 + parent: 2 + - uid: 17276 + components: + - type: Transform + pos: 0.5,-99.5 + parent: 2 + - uid: 17277 + components: + - type: Transform + pos: 0.5,-80.5 + parent: 2 + - uid: 17278 + components: + - type: Transform + pos: 0.5,-72.5 + parent: 2 + - uid: 17279 + components: + - type: Transform + pos: 0.5,-53.5 + parent: 2 + - uid: 17280 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 2 + - uid: 17281 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 + - uid: 17282 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 +- proto: AirlockHatchMaintenance + entities: - uid: 217 components: - type: Transform @@ -7679,244 +8513,6 @@ entities: - type: Transform pos: 15.5,-155.5 parent: 2 - - uid: 220 - components: - - type: Transform - pos: 0.5,-132.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16523: - - DoorStatus: DoorBolt - 16537: - - DoorStatus: DoorBolt - - uid: 221 - components: - - type: Transform - pos: 0.5,-47.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16533: - - DoorStatus: DoorBolt - 16522: - - DoorStatus: DoorBolt - - uid: 222 - components: - - type: Transform - pos: 0.5,-213.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16513: - - DoorStatus: DoorBolt - 16512: - - DoorStatus: DoorBolt - - uid: 223 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-269.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 3 - - type: DeviceLinkSource - linkedPorts: - 16540: - - DoorStatus: Close - 16541: - - DoorStatus: Close - - uid: 224 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-288.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16526: - - DoorStatus: Close - 16527: - - DoorStatus: Close - - uid: 225 - components: - - type: Transform - pos: 0.5,-290.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16526: - - DoorStatus: DoorBolt - 16527: - - DoorStatus: DoorBolt - - uid: 226 - components: - - type: Transform - pos: 0.5,-296.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16527: - - DoorStatus: Close - 16526: - - DoorStatus: Close - - uid: 227 - components: - - type: Transform - pos: 0.5,-155.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16531: - - DoorStatus: DoorBolt - 16538: - - DoorStatus: DoorBolt - - uid: 228 - components: - - type: Transform - pos: 0.5,-128.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 3 - - type: DeviceLinkSource - linkedPorts: - 16523: - - DoorStatus: DoorBolt - 16537: - - DoorStatus: DoorBolt - - uid: 229 - components: - - type: Transform - pos: 0.5,-101.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16530: - - DoorStatus: DoorBolt - 16536: - - DoorStatus: DoorBolt - - uid: 230 - components: - - type: Transform - pos: 0.5,-51.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16522: - - DoorStatus: DoorBolt - 16533: - - DoorStatus: DoorBolt - - uid: 231 - components: - - type: Transform - pos: 0.5,-209.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16513: - - DoorStatus: DoorBolt - 16512: - - DoorStatus: DoorBolt - - uid: 232 - components: - - type: Transform - pos: 0.5,-236.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16539: - - DoorStatus: DoorBolt - 16532: - - DoorStatus: DoorBolt - - uid: 233 - components: - - type: Transform - pos: 0.5,-267.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16541: - - DoorStatus: DoorBolt - 16540: - - DoorStatus: DoorBolt - - uid: 234 - components: - - type: Transform - pos: 0.5,-294.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16527: - - DoorStatus: DoorBolt - 16526: - - DoorStatus: DoorBolt - - uid: 235 - components: - - type: Transform - pos: 0.5,-322.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16528: - - DoorStatus: DoorBolt - 16516: - - DoorStatus: DoorBolt - - uid: 236 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-320.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16528: - - DoorStatus: Close - 16516: - - DoorStatus: Close - - uid: 237 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-328.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 16516: - - DoorStatus: Close - 16528: - - DoorStatus: Close - uid: 238 components: - type: Transform @@ -7977,10 +8573,11 @@ entities: parent: 2 - proto: AirlockLawyerLocked entities: - - uid: 246 + - uid: 253 components: - type: Transform - pos: 3.5,-330.5 + rot: -1.5707963267948966 rad + pos: -4.5,-69.5 parent: 2 - proto: AirlockMaintBarLocked entities: @@ -8022,20 +8619,6 @@ entities: - type: Transform pos: -2.5,1.5 parent: 2 -- proto: AirlockMaintDetectiveLocked - entities: - - uid: 253 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-74.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16547: - - DoorStatus: DoorBolt - 16509: - - DoorStatus: DoorBolt - proto: AirlockMaintEngiLocked entities: - uid: 254 @@ -8088,6 +8671,14 @@ entities: - type: Transform pos: 2.5,-116.5 parent: 2 +- proto: AirlockMaintLawyerLocked + entities: + - uid: 111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-74.5 + parent: 2 - proto: AirlockMaintLocked entities: - uid: 262 @@ -8908,6 +9499,13 @@ entities: - type: Transform pos: -5.5,-385.5 parent: 2 + - uid: 11691 + components: + - type: MetaData + name: Reporter's Room + - type: Transform + pos: -5.5,-119.5 + parent: 2 - proto: AirlockTheatreLocked entities: - uid: 377 @@ -9644,7 +10242,7 @@ entities: - 71 - proto: AltarSpawner entities: - - uid: 467 + - uid: 11643 components: - type: Transform pos: 4.5,-143.5 @@ -9950,11 +10548,11 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-84.5 parent: 2 - - uid: 519 + - uid: 10582 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-266.5 + pos: -12.5,-258.5 parent: 2 - proto: APCHighCapacity entities: @@ -10097,6 +10695,152 @@ entities: - type: Transform pos: 15.5,-142.5 parent: 2 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-103.5 + parent: 2 + - uid: 208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-76.5 + parent: 2 + - uid: 209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 2 + - uid: 214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-103.5 + parent: 2 + - uid: 215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-49.5 + parent: 2 + - uid: 216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-324.5 + parent: 2 + - uid: 223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-157.5 + parent: 2 + - uid: 224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-184.5 + parent: 2 + - uid: 225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-184.5 + parent: 2 + - uid: 226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-238.5 + parent: 2 + - uid: 232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-22.5 + parent: 2 + - uid: 233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-157.5 + parent: 2 + - uid: 234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-238.5 + parent: 2 + - uid: 235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-265.5 + parent: 2 + - uid: 236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-265.5 + parent: 2 + - uid: 237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-324.5 + parent: 2 + - uid: 15630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-292.5 + parent: 2 + - uid: 15639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-211.5 + parent: 2 + - uid: 15640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-211.5 + parent: 2 + - uid: 15657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-292.5 + parent: 2 + - uid: 15660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-49.5 + parent: 2 + - uid: 15708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-76.5 + parent: 2 + - uid: 15709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-130.5 + parent: 2 + - uid: 15710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-130.5 + parent: 2 - proto: AtmosDeviceFanTiny entities: - uid: 544 @@ -10180,12 +10924,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-87.5 parent: 2 - - uid: 559 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-86.5 - parent: 2 - uid: 560 components: - type: Transform @@ -10287,110 +11025,80 @@ entities: parent: 2 - proto: AtmosFixBlockerMarker entities: - - uid: 577 + - uid: 17029 components: - type: Transform - pos: -21.5,-255.5 + pos: -23.5,-255.5 parent: 2 - - uid: 578 + - uid: 17030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-261.5 + pos: -24.5,-255.5 parent: 2 - - uid: 579 + - uid: 17031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-260.5 + pos: -25.5,-255.5 parent: 2 - - uid: 580 + - uid: 17032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-259.5 + pos: -25.5,-257.5 parent: 2 - - uid: 581 + - uid: 17033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-259.5 + pos: -24.5,-257.5 parent: 2 - - uid: 582 + - uid: 17034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-260.5 + pos: -23.5,-257.5 parent: 2 - - uid: 583 + - uid: 17035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-261.5 + pos: -23.5,-259.5 parent: 2 - - uid: 584 + - uid: 17036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-261.5 + pos: -24.5,-259.5 parent: 2 - - uid: 585 + - uid: 17037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-260.5 + pos: -25.5,-259.5 parent: 2 - - uid: 586 + - uid: 17038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-259.5 + pos: -25.5,-261.5 parent: 2 - - uid: 587 + - uid: 17039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-257.5 + pos: -24.5,-261.5 parent: 2 - - uid: 588 + - uid: 17040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-257.5 + pos: -23.5,-261.5 parent: 2 - - uid: 589 + - uid: 17041 components: - type: Transform - pos: -21.5,-257.5 + pos: -23.5,-263.5 parent: 2 - - uid: 590 + - uid: 17042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-255.5 + pos: -24.5,-263.5 parent: 2 - - uid: 591 + - uid: 17043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-255.5 - parent: 2 - - uid: 592 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-253.5 - parent: 2 - - uid: 593 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-253.5 - parent: 2 - - uid: 594 - components: - - type: Transform - pos: -21.5,-253.5 + pos: -25.5,-263.5 parent: 2 - proto: AtmosFixFreezerMarker entities: @@ -10474,25 +11182,39 @@ entities: - type: Transform pos: -2.5,-90.5 parent: 2 -- proto: AtmosFixPlasmaMarker +- proto: AtmosFixNitrogenMarker entities: - - uid: 611 + - uid: 17026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-251.5 + pos: -23.5,-251.5 parent: 2 - - uid: 612 + - uid: 17027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-251.5 + pos: -24.5,-251.5 parent: 2 - - uid: 613 + - uid: 17028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-251.5 + pos: -25.5,-251.5 + parent: 2 +- proto: AtmosFixOxygenMarker + entities: + - uid: 17023 + components: + - type: Transform + pos: -25.5,-253.5 + parent: 2 + - uid: 17024 + components: + - type: Transform + pos: -24.5,-253.5 + parent: 2 + - uid: 17025 + components: + - type: Transform + pos: -23.5,-253.5 parent: 2 - proto: Autolathe entities: @@ -10527,11 +11249,6 @@ entities: parent: 2 - proto: BannerCargo entities: - - uid: 619 - components: - - type: Transform - pos: -0.5,-282.5 - parent: 2 - uid: 620 components: - type: Transform @@ -10794,11 +11511,6 @@ entities: - type: Transform pos: 4.5,-64.5 parent: 2 - - uid: 668 - components: - - type: Transform - pos: -5.5,-73.5 - parent: 2 - uid: 669 components: - type: Transform @@ -10829,16 +11541,6 @@ entities: - type: Transform pos: -6.5,-115.5 parent: 2 - - uid: 675 - components: - - type: Transform - pos: -6.5,-118.5 - parent: 2 - - uid: 676 - components: - - type: Transform - pos: -8.5,-118.5 - parent: 2 - uid: 677 components: - type: Transform @@ -10936,13 +11638,6 @@ entities: - type: Transform pos: 6.5,-139.5 parent: 2 -- proto: BedsheetBrown - entities: - - uid: 697 - components: - - type: Transform - pos: -5.5,-73.5 - parent: 2 - proto: BedsheetCaptain entities: - uid: 698 @@ -11086,16 +11781,6 @@ entities: parent: 2 - proto: BedsheetSpawner entities: - - uid: 720 - components: - - type: Transform - pos: -8.5,-118.5 - parent: 2 - - uid: 721 - components: - - type: Transform - pos: -6.5,-118.5 - parent: 2 - uid: 722 components: - type: Transform @@ -11716,6 +12401,42 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-60.5 parent: 2 + - uid: 4776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-144.5 + parent: 2 + - uid: 11611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-146.5 + parent: 2 + - uid: 11615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-146.5 + parent: 2 + - uid: 11621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-145.5 + parent: 2 + - uid: 12876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-145.5 + parent: 2 + - uid: 12878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-144.5 + parent: 2 - proto: BlastDoor entities: - uid: 828 @@ -11792,6 +12513,21 @@ entities: - type: Transform pos: -4.5,-385.5 parent: 2 + - uid: 9057 + components: + - type: Transform + pos: -27.5,-268.5 + parent: 2 + - uid: 15823 + components: + - type: Transform + pos: -27.5,-267.5 + parent: 2 + - uid: 16513 + components: + - type: Transform + pos: -27.5,-269.5 + parent: 2 - proto: BlastDoorOpen entities: - uid: 842 @@ -11903,42 +12639,6 @@ entities: - type: Transform pos: -2.34363,-175.13622 parent: 2 -- proto: BookAtmosAirAlarms - entities: - - uid: 863 - components: - - type: Transform - parent: 862 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BookAtmosDistro - entities: - - uid: 864 - components: - - type: Transform - parent: 862 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BookAtmosVentsMore - entities: - - uid: 865 - components: - - type: Transform - parent: 862 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BookAtmosWaste - entities: - - uid: 866 - components: - - type: Transform - parent: 862 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: BookshelfFilled entities: - uid: 869 @@ -12006,6 +12706,13 @@ entities: - type: Transform pos: -5.5,-148.5 parent: 2 +- proto: BookSpaceLaw + entities: + - uid: 4748 + components: + - type: Transform + pos: -3.270634,-72.414474 + parent: 2 - proto: BoozeDispenser entities: - uid: 882 @@ -12014,6 +12721,11 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-64.5 parent: 2 + - uid: 12168 + components: + - type: Transform + pos: -12.5,-251.5 + parent: 2 - proto: BorgCharger entities: - uid: 883 @@ -12077,11 +12789,6 @@ entities: - type: Transform pos: 6.7308598,-6.9109907 parent: 2 - - uid: 892 - components: - - type: Transform - pos: 4.492667,-332.38788 - parent: 2 - proto: BoxFolderBlue entities: - uid: 893 @@ -12101,13 +12808,6 @@ entities: - type: Transform pos: 2.4827733,-42.50757 parent: 2 -- proto: BoxFolderGrey - entities: - - uid: 896 - components: - - type: Transform - pos: 5.4435487,-332.5595 - parent: 2 - proto: BoxFolderRed entities: - uid: 897 @@ -12130,11 +12830,6 @@ entities: - type: Transform pos: 1.4750745,-67.40666 parent: 2 - - uid: 901 - components: - - type: Transform - pos: 4.703974,-332.5463 - parent: 2 - uid: 902 components: - type: Transform @@ -12146,13 +12841,6 @@ entities: - type: Transform pos: -6.6729684,-339.83936 parent: 2 -- proto: BoxFolderWhite - entities: - - uid: 904 - components: - - type: Transform - pos: 5.205828,-332.4011 - parent: 2 - proto: BoxFolderYellow entities: - uid: 905 @@ -12249,10 +12937,10 @@ entities: parent: 2 - proto: BriefcaseBrownFilled entities: - - uid: 920 + - uid: 12694 components: - type: Transform - pos: 4.4794602,-328.2291 + pos: -5.5219617,-71.09076 parent: 2 - proto: BrigTimer entities: @@ -12344,18 +13032,23 @@ entities: - type: Transform pos: -5.7254634,-38.660492 parent: 2 - - uid: 933 - components: - - type: Transform - parent: 932 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 936 components: - type: Transform pos: -4.342669,-374.57834 parent: 2 + - uid: 16541 + components: + - type: Transform + pos: -8.672086,-88.5724 + parent: 2 +- proto: ButtonFrameCaution + entities: + - uid: 10103 + components: + - type: Transform + pos: -22.5,-266.5 + parent: 2 - proto: ButtonFrameCautionSecurity entities: - uid: 937 @@ -12365,6 +13058,111 @@ entities: parent: 2 - proto: CableApcExtension entities: + - uid: 187 + components: + - type: Transform + pos: -18.5,-260.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: -20.5,-252.5 + parent: 2 + - uid: 189 + components: + - type: Transform + pos: -20.5,-253.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: -18.5,-265.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: -18.5,-259.5 + parent: 2 + - uid: 192 + components: + - type: Transform + pos: -18.5,-254.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: -18.5,-255.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: -15.5,-257.5 + parent: 2 + - uid: 199 + components: + - type: Transform + pos: -20.5,-254.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: -20.5,-251.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: -16.5,-257.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: -18.5,-258.5 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: -18.5,-253.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: -18.5,-264.5 + parent: 2 + - uid: 229 + components: + - type: Transform + pos: -18.5,-256.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: -18.5,-261.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: -20.5,-263.5 + parent: 2 + - uid: 697 + components: + - type: Transform + pos: -20.5,-264.5 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: -12.5,-257.5 + parent: 2 + - uid: 865 + components: + - type: Transform + pos: -12.5,-256.5 + parent: 2 + - uid: 867 + components: + - type: Transform + pos: -12.5,-254.5 + parent: 2 - uid: 938 components: - type: Transform @@ -12515,11 +13313,6 @@ entities: - type: Transform pos: 0.5,-24.5 parent: 2 - - uid: 968 - components: - - type: Transform - pos: -17.5,-252.5 - parent: 2 - uid: 969 components: - type: Transform @@ -20750,11 +21543,6 @@ entities: - type: Transform pos: -2.5,-330.5 parent: 2 - - uid: 2615 - components: - - type: Transform - pos: -17.5,-256.5 - parent: 2 - uid: 2616 components: - type: Transform @@ -22210,11 +22998,6 @@ entities: - type: Transform pos: -4.5,-243.5 parent: 2 - - uid: 2907 - components: - - type: Transform - pos: -16.5,-255.5 - parent: 2 - uid: 2908 components: - type: Transform @@ -22805,121 +23588,11 @@ entities: - type: Transform pos: 5.5,-264.5 parent: 2 - - uid: 3026 - components: - - type: Transform - pos: -16.5,-265.5 - parent: 2 - - uid: 3027 - components: - - type: Transform - pos: -18.5,-265.5 - parent: 2 - - uid: 3028 - components: - - type: Transform - pos: -18.5,-266.5 - parent: 2 - - uid: 3029 - components: - - type: Transform - pos: -19.5,-265.5 - parent: 2 - - uid: 3030 - components: - - type: Transform - pos: -20.5,-265.5 - parent: 2 - - uid: 3031 - components: - - type: Transform - pos: -21.5,-265.5 - parent: 2 - uid: 3032 components: - type: Transform pos: -11.5,-248.5 parent: 2 - - uid: 3033 - components: - - type: Transform - pos: -16.5,-262.5 - parent: 2 - - uid: 3034 - components: - - type: Transform - pos: -17.5,-265.5 - parent: 2 - - uid: 3035 - components: - - type: Transform - pos: -16.5,-264.5 - parent: 2 - - uid: 3036 - components: - - type: Transform - pos: -16.5,-263.5 - parent: 2 - - uid: 3037 - components: - - type: Transform - pos: -16.5,-261.5 - parent: 2 - - uid: 3038 - components: - - type: Transform - pos: -16.5,-260.5 - parent: 2 - - uid: 3039 - components: - - type: Transform - pos: -16.5,-259.5 - parent: 2 - - uid: 3040 - components: - - type: Transform - pos: -16.5,-258.5 - parent: 2 - - uid: 3041 - components: - - type: Transform - pos: -16.5,-257.5 - parent: 2 - - uid: 3042 - components: - - type: Transform - pos: -16.5,-256.5 - parent: 2 - - uid: 3043 - components: - - type: Transform - pos: -16.5,-254.5 - parent: 2 - - uid: 3044 - components: - - type: Transform - pos: -16.5,-253.5 - parent: 2 - - uid: 3045 - components: - - type: Transform - pos: -16.5,-252.5 - parent: 2 - - uid: 3046 - components: - - type: Transform - pos: -18.5,-256.5 - parent: 2 - - uid: 3047 - components: - - type: Transform - pos: -16.5,-251.5 - parent: 2 - - uid: 3048 - components: - - type: Transform - pos: -19.5,-256.5 - parent: 2 - uid: 3049 components: - type: Transform @@ -23040,61 +23713,6 @@ entities: - type: Transform pos: -10.5,-260.5 parent: 2 - - uid: 3073 - components: - - type: Transform - pos: -20.5,-256.5 - parent: 2 - - uid: 3074 - components: - - type: Transform - pos: -21.5,-256.5 - parent: 2 - - uid: 3075 - components: - - type: Transform - pos: -17.5,-263.5 - parent: 2 - - uid: 3076 - components: - - type: Transform - pos: -18.5,-263.5 - parent: 2 - - uid: 3077 - components: - - type: Transform - pos: -19.5,-263.5 - parent: 2 - - uid: 3078 - components: - - type: Transform - pos: -20.5,-263.5 - parent: 2 - - uid: 3079 - components: - - type: Transform - pos: -21.5,-263.5 - parent: 2 - - uid: 3080 - components: - - type: Transform - pos: -18.5,-252.5 - parent: 2 - - uid: 3081 - components: - - type: Transform - pos: -19.5,-252.5 - parent: 2 - - uid: 3082 - components: - - type: Transform - pos: -20.5,-252.5 - parent: 2 - - uid: 3083 - components: - - type: Transform - pos: -21.5,-252.5 - parent: 2 - uid: 3084 components: - type: Transform @@ -23120,15 +23738,378 @@ entities: - type: Transform pos: -12.5,-243.5 parent: 2 -- proto: CableApcStack - entities: - - uid: 934 + - uid: 4761 components: - type: Transform - parent: 932 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -20.5,-262.5 + parent: 2 + - uid: 4762 + components: + - type: Transform + pos: -23.5,-263.5 + parent: 2 + - uid: 4768 + components: + - type: Transform + pos: -21.5,-263.5 + parent: 2 + - uid: 4769 + components: + - type: Transform + pos: -22.5,-263.5 + parent: 2 + - uid: 10166 + components: + - type: Transform + pos: -20.5,-257.5 + parent: 2 + - uid: 10200 + components: + - type: Transform + pos: -14.5,-257.5 + parent: 2 + - uid: 10575 + components: + - type: Transform + pos: -24.5,-263.5 + parent: 2 + - uid: 10589 + components: + - type: Transform + pos: -20.5,-260.5 + parent: 2 + - uid: 10593 + components: + - type: Transform + pos: -20.5,-258.5 + parent: 2 + - uid: 10594 + components: + - type: Transform + pos: -12.5,-252.5 + parent: 2 + - uid: 10601 + components: + - type: Transform + pos: -13.5,-257.5 + parent: 2 + - uid: 10603 + components: + - type: Transform + pos: -20.5,-259.5 + parent: 2 + - uid: 12861 + components: + - type: Transform + pos: -20.5,-261.5 + parent: 2 + - uid: 12927 + components: + - type: Transform + pos: -12.5,-255.5 + parent: 2 + - uid: 12957 + components: + - type: Transform + pos: -12.5,-253.5 + parent: 2 + - uid: 12961 + components: + - type: Transform + pos: -12.5,-258.5 + parent: 2 + - uid: 12962 + components: + - type: Transform + pos: -20.5,-255.5 + parent: 2 + - uid: 13002 + components: + - type: Transform + pos: -20.5,-256.5 + parent: 2 + - uid: 15048 + components: + - type: Transform + pos: -20.5,-249.5 + parent: 2 + - uid: 15635 + components: + - type: Transform + pos: -18.5,-263.5 + parent: 2 + - uid: 15638 + components: + - type: Transform + pos: -19.5,-252.5 + parent: 2 + - uid: 15658 + components: + - type: Transform + pos: -18.5,-257.5 + parent: 2 + - uid: 15663 + components: + - type: Transform + pos: -18.5,-262.5 + parent: 2 + - uid: 15665 + components: + - type: Transform + pos: -20.5,-250.5 + parent: 2 + - uid: 15667 + components: + - type: Transform + pos: -18.5,-252.5 + parent: 2 + - uid: 15689 + components: + - type: Transform + pos: -17.5,-257.5 + parent: 2 + - uid: 16527 + components: + - type: Transform + pos: 8.5,-252.5 + parent: 2 + - uid: 16528 + components: + - type: Transform + pos: 9.5,-252.5 + parent: 2 + - uid: 16530 + components: + - type: Transform + pos: 10.5,-252.5 + parent: 2 + - uid: 16531 + components: + - type: Transform + pos: 11.5,-252.5 + parent: 2 + - uid: 16577 + components: + - type: Transform + pos: -21.5,-261.5 + parent: 2 + - uid: 16579 + components: + - type: Transform + pos: -22.5,-261.5 + parent: 2 + - uid: 16580 + components: + - type: Transform + pos: -23.5,-261.5 + parent: 2 + - uid: 16581 + components: + - type: Transform + pos: -24.5,-261.5 + parent: 2 + - uid: 16582 + components: + - type: Transform + pos: -21.5,-259.5 + parent: 2 + - uid: 16591 + components: + - type: Transform + pos: -22.5,-259.5 + parent: 2 + - uid: 16592 + components: + - type: Transform + pos: -23.5,-259.5 + parent: 2 + - uid: 16593 + components: + - type: Transform + pos: -24.5,-259.5 + parent: 2 + - uid: 16594 + components: + - type: Transform + pos: -21.5,-257.5 + parent: 2 + - uid: 16595 + components: + - type: Transform + pos: -22.5,-257.5 + parent: 2 + - uid: 16596 + components: + - type: Transform + pos: -23.5,-257.5 + parent: 2 + - uid: 16597 + components: + - type: Transform + pos: -24.5,-257.5 + parent: 2 + - uid: 16598 + components: + - type: Transform + pos: -21.5,-255.5 + parent: 2 + - uid: 16599 + components: + - type: Transform + pos: -22.5,-255.5 + parent: 2 + - uid: 16605 + components: + - type: Transform + pos: -23.5,-255.5 + parent: 2 + - uid: 16606 + components: + - type: Transform + pos: -24.5,-255.5 + parent: 2 + - uid: 16607 + components: + - type: Transform + pos: -21.5,-253.5 + parent: 2 + - uid: 16608 + components: + - type: Transform + pos: -22.5,-253.5 + parent: 2 + - uid: 16609 + components: + - type: Transform + pos: -23.5,-253.5 + parent: 2 + - uid: 16610 + components: + - type: Transform + pos: -24.5,-253.5 + parent: 2 + - uid: 16611 + components: + - type: Transform + pos: -21.5,-251.5 + parent: 2 + - uid: 16612 + components: + - type: Transform + pos: -22.5,-251.5 + parent: 2 + - uid: 16613 + components: + - type: Transform + pos: -23.5,-251.5 + parent: 2 + - uid: 16964 + components: + - type: Transform + pos: -24.5,-251.5 + parent: 2 + - uid: 16977 + components: + - type: Transform + pos: -18.5,-251.5 + parent: 2 + - uid: 16978 + components: + - type: Transform + pos: -17.5,-251.5 + parent: 2 + - uid: 16979 + components: + - type: Transform + pos: -16.5,-251.5 + parent: 2 + - uid: 16980 + components: + - type: Transform + pos: -15.5,-251.5 + parent: 2 + - uid: 17051 + components: + - type: Transform + pos: -17.5,-264.5 + parent: 2 + - uid: 17052 + components: + - type: Transform + pos: -16.5,-264.5 + parent: 2 + - uid: 17053 + components: + - type: Transform + pos: -15.5,-264.5 + parent: 2 + - uid: 17054 + components: + - type: Transform + pos: -14.5,-264.5 + parent: 2 + - uid: 17055 + components: + - type: Transform + pos: -13.5,-264.5 + parent: 2 + - uid: 17056 + components: + - type: Transform + pos: -12.5,-264.5 + parent: 2 + - uid: 17072 + components: + - type: Transform + pos: -18.5,-266.5 + parent: 2 + - uid: 17073 + components: + - type: Transform + pos: -18.5,-267.5 + parent: 2 + - uid: 17074 + components: + - type: Transform + pos: -18.5,-268.5 + parent: 2 + - uid: 17075 + components: + - type: Transform + pos: -19.5,-268.5 + parent: 2 + - uid: 17076 + components: + - type: Transform + pos: -20.5,-268.5 + parent: 2 + - uid: 17077 + components: + - type: Transform + pos: -21.5,-268.5 + parent: 2 + - uid: 17078 + components: + - type: Transform + pos: -22.5,-268.5 + parent: 2 + - uid: 17079 + components: + - type: Transform + pos: -23.5,-268.5 + parent: 2 + - uid: 17080 + components: + - type: Transform + pos: -24.5,-268.5 + parent: 2 + - uid: 17081 + components: + - type: Transform + pos: -25.5,-268.5 + parent: 2 +- proto: CableApcStack + entities: - uid: 3089 components: - type: Transform @@ -23167,11 +24148,6 @@ entities: - type: Transform pos: -3.5,-82.5 parent: 2 - - uid: 3096 - components: - - type: Transform - pos: -12.5,-251.5 - parent: 2 - uid: 3097 components: - type: Transform @@ -23182,36 +24158,6 @@ entities: - type: Transform pos: 3.5,-346.5 parent: 2 - - uid: 3099 - components: - - type: Transform - pos: -12.5,-257.5 - parent: 2 - - uid: 3100 - components: - - type: Transform - pos: -13.5,-251.5 - parent: 2 - - uid: 3101 - components: - - type: Transform - pos: -15.5,-251.5 - parent: 2 - - uid: 3102 - components: - - type: Transform - pos: -14.5,-251.5 - parent: 2 - - uid: 3103 - components: - - type: Transform - pos: -11.5,-253.5 - parent: 2 - - uid: 3104 - components: - - type: Transform - pos: -11.5,-251.5 - parent: 2 - uid: 3105 components: - type: Transform @@ -23262,21 +24208,11 @@ entities: - type: Transform pos: -10.5,-260.5 parent: 2 - - uid: 3115 - components: - - type: Transform - pos: -13.5,-257.5 - parent: 2 - uid: 3116 components: - type: Transform pos: -13.5,-258.5 parent: 2 - - uid: 3117 - components: - - type: Transform - pos: -13.5,-259.5 - parent: 2 - uid: 3118 components: - type: Transform @@ -23292,11 +24228,6 @@ entities: - type: Transform pos: -11.5,-260.5 parent: 2 - - uid: 3121 - components: - - type: Transform - pos: -11.5,-252.5 - parent: 2 - uid: 3122 components: - type: Transform @@ -25877,31 +26808,11 @@ entities: - type: Transform pos: -6.5,-165.5 parent: 2 - - uid: 3638 - components: - - type: Transform - pos: -11.5,-256.5 - parent: 2 - - uid: 3639 - components: - - type: Transform - pos: -11.5,-257.5 - parent: 2 - uid: 3640 components: - type: Transform pos: 13.5,-255.5 parent: 2 - - uid: 3641 - components: - - type: Transform - pos: -11.5,-255.5 - parent: 2 - - uid: 3642 - components: - - type: Transform - pos: -11.5,-254.5 - parent: 2 - uid: 3643 components: - type: Transform @@ -27442,21 +28353,6 @@ entities: - type: Transform pos: 19.5,-255.5 parent: 2 - - uid: 3951 - components: - - type: Transform - pos: -15.5,-250.5 - parent: 2 - - uid: 3952 - components: - - type: Transform - pos: -15.5,-249.5 - parent: 2 - - uid: 3953 - components: - - type: Transform - pos: -15.5,-248.5 - parent: 2 - uid: 3954 components: - type: Transform @@ -27479,15 +28375,23 @@ entities: - type: Transform pos: -2.0963848,-7.519528 parent: 2 - - uid: 3959 - components: - - type: Transform - parent: 3958 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: CableMV entities: + - uid: 73 + components: + - type: Transform + pos: -12.5,-257.5 + parent: 2 + - uid: 864 + components: + - type: Transform + pos: -13.5,-251.5 + parent: 2 + - uid: 866 + components: + - type: Transform + pos: -13.5,-252.5 + parent: 2 - uid: 3962 components: - type: Transform @@ -27553,16 +28457,6 @@ entities: - type: Transform pos: 1.5,-360.5 parent: 2 - - uid: 3975 - components: - - type: Transform - pos: -12.5,-252.5 - parent: 2 - - uid: 3976 - components: - - type: Transform - pos: -11.5,-252.5 - parent: 2 - uid: 3977 components: - type: Transform @@ -27603,26 +28497,11 @@ entities: - type: Transform pos: 3.5,-54.5 parent: 2 - - uid: 3985 - components: - - type: Transform - pos: -14.5,-253.5 - parent: 2 - uid: 3986 components: - type: Transform pos: -2.5,-44.5 parent: 2 - - uid: 3987 - components: - - type: Transform - pos: -14.5,-251.5 - parent: 2 - - uid: 3988 - components: - - type: Transform - pos: -15.5,-251.5 - parent: 2 - uid: 3989 components: - type: Transform @@ -28828,16 +29707,6 @@ entities: - type: Transform pos: 10.5,-252.5 parent: 2 - - uid: 4230 - components: - - type: Transform - pos: -15.5,-249.5 - parent: 2 - - uid: 4231 - components: - - type: Transform - pos: -15.5,-250.5 - parent: 2 - uid: 4232 components: - type: Transform @@ -29133,11 +30002,6 @@ entities: - type: Transform pos: -3.5,-203.5 parent: 2 - - uid: 4291 - components: - - type: Transform - pos: -15.5,-248.5 - parent: 2 - uid: 4292 components: - type: Transform @@ -31028,110 +31892,60 @@ entities: - type: Transform pos: 7.5,-339.5 parent: 2 - - uid: 4670 - components: - - type: Transform - pos: -13.5,-251.5 - parent: 2 - - uid: 4671 - components: - - type: Transform - pos: -13.5,-250.5 - parent: 2 - - uid: 4672 - components: - - type: Transform - pos: -18.5,-266.5 - parent: 2 - - uid: 4673 - components: - - type: Transform - pos: -18.5,-265.5 - parent: 2 - - uid: 4674 - components: - - type: Transform - pos: -18.5,-264.5 - parent: 2 - - uid: 4675 - components: - - type: Transform - pos: -18.5,-263.5 - parent: 2 - - uid: 4676 - components: - - type: Transform - pos: -18.5,-262.5 - parent: 2 - - uid: 4677 - components: - - type: Transform - pos: -18.5,-261.5 - parent: 2 - - uid: 4678 - components: - - type: Transform - pos: -18.5,-260.5 - parent: 2 - - uid: 4679 - components: - - type: Transform - pos: -18.5,-259.5 - parent: 2 - - uid: 4680 - components: - - type: Transform - pos: -18.5,-258.5 - parent: 2 - uid: 4681 components: - type: Transform - pos: -18.5,-257.5 + pos: -15.5,-248.5 parent: 2 - - uid: 4682 + - uid: 4757 components: - type: Transform - pos: -18.5,-256.5 + pos: -15.5,-250.5 parent: 2 - - uid: 4683 + - uid: 8511 components: - type: Transform - pos: -18.5,-255.5 + pos: -13.5,-257.5 parent: 2 - - uid: 4684 - components: - - type: Transform - pos: -18.5,-254.5 - parent: 2 - - uid: 4685 - components: - - type: Transform - pos: -17.5,-254.5 - parent: 2 - - uid: 4686 - components: - - type: Transform - pos: -16.5,-254.5 - parent: 2 - - uid: 4687 - components: - - type: Transform - pos: -15.5,-254.5 - parent: 2 - - uid: 4688 - components: - - type: Transform - pos: -14.5,-254.5 - parent: 2 - - uid: 4689 + - uid: 8543 components: - type: Transform pos: -13.5,-253.5 parent: 2 - - uid: 4690 + - uid: 10588 components: - type: Transform - pos: -13.5,-252.5 + pos: -12.5,-258.5 + parent: 2 + - uid: 10605 + components: + - type: Transform + pos: -15.5,-249.5 + parent: 2 + - uid: 10606 + components: + - type: Transform + pos: -13.5,-254.5 + parent: 2 + - uid: 11302 + components: + - type: Transform + pos: -13.5,-256.5 + parent: 2 + - uid: 11307 + components: + - type: Transform + pos: -13.5,-255.5 + parent: 2 + - uid: 13717 + components: + - type: Transform + pos: -13.5,-250.5 + parent: 2 + - uid: 13928 + components: + - type: Transform + pos: -14.5,-250.5 parent: 2 - proto: CableMVStack entities: @@ -31150,21 +31964,8 @@ entities: - type: Transform pos: -2.1301281,-7.3508615 parent: 2 - - uid: 4695 - components: - - type: Transform - parent: 4694 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: CableTerminal entities: - - uid: 4698 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-251.5 - parent: 2 - uid: 4699 components: - type: Transform @@ -31306,11 +32107,6 @@ entities: parent: 2 - proto: CarbonDioxideCanister entities: - - uid: 4723 - components: - - type: Transform - pos: -21.5,-253.5 - parent: 2 - uid: 4724 components: - type: Transform @@ -31326,6 +32122,11 @@ entities: - type: Transform pos: 4.5,-355.5 parent: 2 + - uid: 13772 + components: + - type: Transform + pos: -25.5,-255.5 + parent: 2 - proto: Carpet entities: - uid: 4727 @@ -31364,12 +32165,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-116.5 parent: 2 - - uid: 4733 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-117.5 - parent: 2 - uid: 4734 components: - type: Transform @@ -31412,12 +32207,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-124.5 parent: 2 - - uid: 4741 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-125.5 - parent: 2 - uid: 4742 components: - type: Transform @@ -31454,12 +32243,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-116.5 parent: 2 - - uid: 4748 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-117.5 - parent: 2 - uid: 4749 components: - type: Transform @@ -31508,39 +32291,12 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-110.5 parent: 2 - - uid: 4757 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-109.5 - parent: 2 - - uid: 4758 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-109.5 - parent: 2 - uid: 4759 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-110.5 parent: 2 - - uid: 4760 - components: - - type: Transform - pos: -2.5,-110.5 - parent: 2 - - uid: 4761 - components: - - type: Transform - pos: -2.5,-109.5 - parent: 2 - - uid: 4762 - components: - - type: Transform - pos: -3.5,-125.5 - parent: 2 - uid: 4763 components: - type: Transform @@ -31566,17 +32322,6 @@ entities: - type: Transform pos: 4.5,-123.5 parent: 2 - - uid: 4768 - components: - - type: Transform - pos: -3.5,-125.5 - parent: 2 - - uid: 4769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-111.5 - parent: 2 - proto: CarpetBlack entities: - uid: 4770 @@ -31615,16 +32360,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-12.5 parent: 2 - - uid: 4776 - components: - - type: Transform - pos: -5.5,-72.5 - parent: 2 - - uid: 4777 - components: - - type: Transform - pos: -5.5,-73.5 - parent: 2 - uid: 4778 components: - type: Transform @@ -31871,42 +32606,6 @@ entities: - type: Transform pos: 17.5,-74.5 parent: 2 - - uid: 4827 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-73.5 - parent: 2 - - uid: 4828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-72.5 - parent: 2 - - uid: 4829 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-72.5 - parent: 2 - - uid: 4830 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-73.5 - parent: 2 - - uid: 4831 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-73.5 - parent: 2 - - uid: 4832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-72.5 - parent: 2 - proto: CarpetBlue entities: - uid: 4833 @@ -32010,6 +32709,132 @@ entities: - type: Transform pos: -1.5,-11.5 parent: 2 +- proto: CarpetChapel + entities: + - uid: 4682 + components: + - type: Transform + pos: 2.5,-146.5 + parent: 2 + - uid: 4683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-146.5 + parent: 2 + - uid: 4684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-145.5 + parent: 2 + - uid: 4685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-145.5 + parent: 2 + - uid: 4686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-145.5 + parent: 2 + - uid: 4687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-144.5 + parent: 2 + - uid: 4688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-146.5 + parent: 2 + - uid: 4689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-145.5 + parent: 2 + - uid: 4690 + components: + - type: Transform + pos: 5.5,-146.5 + parent: 2 + - uid: 4694 + components: + - type: Transform + pos: 3.5,-144.5 + parent: 2 + - uid: 17339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-142.5 + parent: 2 + - uid: 17340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-142.5 + parent: 2 + - uid: 17341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-144.5 + parent: 2 + - uid: 17342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-142.5 + parent: 2 + - uid: 17343 + components: + - type: Transform + pos: 6.5,-144.5 + parent: 2 + - uid: 17344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-142.5 + parent: 2 +- proto: CarpetCyan + entities: + - uid: 246 + components: + - type: Transform + pos: -3.5,-72.5 + parent: 2 + - uid: 5221 + components: + - type: Transform + pos: -4.5,-71.5 + parent: 2 + - uid: 10602 + components: + - type: Transform + pos: -2.5,-72.5 + parent: 2 + - uid: 12958 + components: + - type: Transform + pos: -4.5,-72.5 + parent: 2 + - uid: 12959 + components: + - type: Transform + pos: -2.5,-71.5 + parent: 2 + - uid: 13005 + components: + - type: Transform + pos: -3.5,-71.5 + parent: 2 - proto: CarpetOrange entities: - uid: 4851 @@ -33948,6 +34773,76 @@ entities: - type: Transform pos: -6.5,-164.5 parent: 2 + - uid: 17090 + components: + - type: Transform + pos: -21.5,-264.5 + parent: 2 + - uid: 17091 + components: + - type: Transform + pos: -21.5,-263.5 + parent: 2 + - uid: 17092 + components: + - type: Transform + pos: -21.5,-262.5 + parent: 2 + - uid: 17093 + components: + - type: Transform + pos: -21.5,-261.5 + parent: 2 + - uid: 17094 + components: + - type: Transform + pos: -21.5,-260.5 + parent: 2 + - uid: 17095 + components: + - type: Transform + pos: -21.5,-259.5 + parent: 2 + - uid: 17096 + components: + - type: Transform + pos: -21.5,-258.5 + parent: 2 + - uid: 17097 + components: + - type: Transform + pos: -21.5,-257.5 + parent: 2 + - uid: 17098 + components: + - type: Transform + pos: -21.5,-256.5 + parent: 2 + - uid: 17099 + components: + - type: Transform + pos: -21.5,-255.5 + parent: 2 + - uid: 17100 + components: + - type: Transform + pos: -21.5,-254.5 + parent: 2 + - uid: 17101 + components: + - type: Transform + pos: -21.5,-253.5 + parent: 2 + - uid: 17102 + components: + - type: Transform + pos: -21.5,-252.5 + parent: 2 + - uid: 17103 + components: + - type: Transform + pos: -21.5,-251.5 + parent: 2 - proto: Chair entities: - uid: 5203 @@ -34054,14 +34949,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-146.5 parent: 2 -- proto: ChairCursed - entities: - - uid: 5221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-145.5 - parent: 2 - proto: ChairFolding entities: - uid: 5222 @@ -34087,12 +34974,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-57.5 parent: 2 - - uid: 5226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-262.5 - parent: 2 - uid: 5227 components: - type: Transform @@ -34170,18 +35051,6 @@ entities: - type: Transform pos: 3.5,-272.5 parent: 2 - - uid: 5240 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-329.5 - parent: 2 - - uid: 5241 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-331.5 - parent: 2 - uid: 5242 components: - type: Transform @@ -34200,11 +35069,10 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-371.5 parent: 2 - - uid: 5245 + - uid: 13771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-72.5 + pos: -12.4766035,-253.40614 parent: 2 - proto: ChairOfficeLight entities: @@ -34338,36 +35206,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-58.5 parent: 2 - - uid: 5267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-146.5 - parent: 2 - - uid: 5268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-144.5 - parent: 2 - - uid: 5269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-146.5 - parent: 2 - - uid: 5270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-145.5 - parent: 2 - - uid: 5271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-144.5 - parent: 2 - uid: 5272 components: - type: Transform @@ -34392,6 +35230,17 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-58.5 parent: 2 + - uid: 17256 + components: + - type: Transform + pos: 6.065539,-329.53363 + parent: 2 + - uid: 17257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.987414,-331.4555 + parent: 2 - proto: CheapRollerBedSpawnFolded entities: - uid: 5276 @@ -34818,107 +35667,6 @@ entities: - 627 - 625 - 628 -- proto: ClosetWallAtmospherics - entities: - - uid: 862 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-266.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 93.465614 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 865 - - 868 - - 864 - - 863 - - 867 - - 866 - - uid: 932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-266.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: - - 933 - - 934 - - 935 - - uid: 3958 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-266.5 - parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 3960 - - 3961 - - 3959 - - uid: 4694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-266.5 - parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 4696 - - 4695 - - 4697 - proto: ClosetWallEmergencyFilledRandom entities: - uid: 5343 @@ -35783,13 +36531,6 @@ entities: - type: Transform pos: 16.43729,-78.522385 parent: 2 -- proto: ClothingHeadHatShrineMaidenWig - entities: - - uid: 5459 - components: - - type: Transform - pos: 2.5369916,-142.75755 - parent: 2 - proto: ClothingHeadHatSurgcapPurple entities: - uid: 5460 @@ -35825,15 +36566,6 @@ entities: - type: Transform pos: 8.351893,-250.58353 parent: 2 -- proto: ClothingHeadHelmetAtmosFire - entities: - - uid: 867 - components: - - type: Transform - parent: 862 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingHeadHelmetMerc entities: - uid: 5465 @@ -35859,13 +36591,6 @@ entities: - type: InsideEntityStorage - proto: ClothingMaskGasAtmos entities: - - uid: 4696 - components: - - type: Transform - parent: 4694 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 5477 components: - type: Transform @@ -35950,13 +36675,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.379782,-122.33475 parent: 2 -- proto: ClothingNeckStoleChaplain - entities: - - uid: 5492 - components: - - type: Transform - pos: 6.5223746,-143.07793 - parent: 2 - proto: ClothingNeckTieSci entities: - uid: 5493 @@ -35964,22 +36682,6 @@ entities: - type: Transform pos: 10.437636,-200.83151 parent: 2 -- proto: ClothingOuterSuitAtmosFire - entities: - - uid: 868 - components: - - type: Transform - parent: 862 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterSuitShrineMaiden - entities: - - uid: 5494 - components: - - type: Transform - pos: 2.4225328,-143.14482 - parent: 2 - proto: ClothingOuterVestWebMerc entities: - uid: 5495 @@ -36164,6 +36866,22 @@ entities: parent: 2 - proto: ComfyChair entities: + - uid: 4696 + components: + - type: Transform + pos: -2.5,-71.5 + parent: 2 + - uid: 4733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-73.5 + parent: 2 + - uid: 4741 + components: + - type: Transform + pos: -3.5,-71.5 + parent: 2 - uid: 5521 components: - type: Transform @@ -36212,6 +36930,12 @@ entities: - type: Transform pos: -5.5,-334.5 parent: 2 + - uid: 8643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-253.5 + parent: 2 - proto: ComputerAnalysisConsole entities: - uid: 5529 @@ -36297,11 +37021,11 @@ entities: - type: Transform pos: -6.5,-335.5 parent: 2 - - uid: 5541 + - uid: 17251 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-72.5 + rot: 3.141592653589793 rad + pos: 4.5,-332.5 parent: 2 - proto: ComputerId entities: @@ -36319,6 +37043,12 @@ entities: parent: 2 - proto: ComputerMassMedia entities: + - uid: 676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-119.5 + parent: 2 - uid: 5544 components: - type: Transform @@ -36451,17 +37181,18 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,0.5 parent: 2 - - uid: 5564 - components: - - type: Transform - pos: -3.5,-70.5 - parent: 2 - uid: 5565 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-364.5 parent: 2 + - uid: 17250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-332.5 + parent: 2 - proto: ComputerSurveillanceCameraMonitor entities: - uid: 5566 @@ -36474,19 +37205,39 @@ entities: - type: Transform pos: 23.5,-315.5 parent: 2 - - uid: 5568 + - uid: 17249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-71.5 + rot: 3.141592653589793 rad + pos: 6.5,-332.5 parent: 2 - proto: ComputerTelevision entities: + - uid: 619 + components: + - type: Transform + pos: 3.5,-86.5 + parent: 2 + - uid: 5226 + components: + - type: Transform + pos: 1.5,-364.5 + parent: 2 - uid: 5569 components: - type: Transform pos: -2.5,-61.5 parent: 2 + - uid: 11612 + components: + - type: Transform + pos: 2.5,-338.5 + parent: 2 + - uid: 11694 + components: + - type: Transform + pos: -0.5,-216.5 + parent: 2 - proto: ContainmentFieldGenerator entities: - uid: 5570 @@ -36998,16 +37749,6 @@ entities: parent: 2 - proto: CrystalCyan entities: - - uid: 5639 - components: - - type: Transform - pos: 2.5,-141.5 - parent: 2 - - uid: 5640 - components: - - type: Transform - pos: 6.5,-141.5 - parent: 2 - uid: 5641 components: - type: Transform @@ -37143,6 +37884,13 @@ entities: - type: Transform pos: -6.5,-315.5 parent: 2 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 17009 + components: + - type: Transform + pos: -16.5,-256.5 + parent: 2 - proto: DefaultStationBeaconBar entities: - uid: 5662 @@ -45388,11 +46136,6 @@ entities: - type: Transform pos: -8.5,-304.5 parent: 2 - - uid: 7127 - components: - - type: Transform - pos: -15.5,-265.5 - parent: 2 - proto: DonkpocketBoxSpawner entities: - uid: 7128 @@ -45400,16 +46143,6 @@ entities: - type: Transform pos: 7.5,-200.5 parent: 2 - - uid: 7129 - components: - - type: Transform - pos: -4.5,-286.5 - parent: 2 - - uid: 7130 - components: - - type: Transform - pos: -4.5,-286.5 - parent: 2 - uid: 7131 components: - type: Transform @@ -45537,16 +46270,6 @@ entities: - type: Transform pos: 5.6909623,-253.30362 parent: 2 - - uid: 7151 - components: - - type: Transform - pos: -3.847699,-286.55716 - parent: 2 - - uid: 7152 - components: - - type: Transform - pos: -3.7202213,-286.6471 - parent: 2 - proto: DrinkBlueCuracaoBottleFull entities: - uid: 7153 @@ -45633,6 +46356,21 @@ entities: - type: Transform pos: -1.7622352,-65.288376 parent: 2 + - uid: 9452 + components: + - type: Transform + pos: -11.3203535,-251.34364 + parent: 2 + - uid: 12247 + components: + - type: Transform + pos: -11.4922285,-251.45302 + parent: 2 + - uid: 13557 + components: + - type: Transform + pos: -11.2266035,-251.51552 + parent: 2 - proto: DrinkGoldenCup entities: - uid: 7167 @@ -45734,6 +46472,13 @@ entities: - type: Transform pos: -8.335806,-122.47121 parent: 2 +- proto: DrinkShaker + entities: + - uid: 12048 + components: + - type: Transform + pos: -11.8203535,-251.34364 + parent: 2 - proto: DrinkShotGlass entities: - uid: 7183 @@ -45823,6 +46568,11 @@ entities: - type: Transform pos: -6.2410164,-148.00874 parent: 2 + - uid: 17254 + components: + - type: Transform + pos: 6.659289,-330.15863 + parent: 2 - proto: DrinkWineBottleFull entities: - uid: 7198 @@ -45835,6 +46585,11 @@ entities: - type: Transform pos: 5.4743247,-6.6932936 parent: 2 + - uid: 11606 + components: + - type: Transform + pos: 6.685281,-141.22812 + parent: 2 - proto: DrinkWineGlass entities: - uid: 7200 @@ -46256,6 +47011,11 @@ entities: parent: 2 - proto: ExtinguisherCabinetFilled entities: + - uid: 4832 + components: + - type: Transform + pos: 1.5,-36.5 + parent: 2 - uid: 7278 components: - type: Transform @@ -46292,12 +47052,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-65.5 parent: 2 - - uid: 7284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-39.5 - parent: 2 - uid: 7285 components: - type: Transform @@ -46384,6 +47138,13 @@ entities: parent: 2 - proto: FaxMachineBase entities: + - uid: 4758 + components: + - type: Transform + pos: -5.5,-70.5 + parent: 2 + - type: FaxMachine + name: Law Office - uid: 7301 components: - type: Transform @@ -46433,13 +47194,6 @@ entities: parent: 2 - type: FaxMachine name: Research Director - - uid: 7308 - components: - - type: Transform - pos: 6.5,-331.5 - parent: 2 - - type: FaxMachine - name: Lawyer - uid: 7309 components: - type: Transform @@ -46461,10 +47215,12 @@ entities: - type: Transform pos: -3.5,-11.5 parent: 2 - - uid: 7312 +- proto: filingCabinetTallRandom + entities: + - uid: 12982 components: - type: Transform - pos: 1.5,-364.5 + pos: -5.5,-72.5 parent: 2 - proto: FireAxeCabinetFilled entities: @@ -48284,6 +49040,246 @@ entities: - type: Transform pos: -12.5,-243.5 parent: 2 + - uid: 17230 + components: + - type: Transform + pos: 0.5,-261.5 + parent: 2 + - uid: 17231 + components: + - type: Transform + pos: 0.5,-269.5 + parent: 2 + - uid: 17232 + components: + - type: Transform + pos: 0.5,-242.5 + parent: 2 + - uid: 17233 + components: + - type: Transform + pos: 0.5,-234.5 + parent: 2 + - uid: 17234 + components: + - type: Transform + pos: 0.5,-236.5 + parent: 2 + - uid: 17235 + components: + - type: Transform + pos: 0.5,-240.5 + parent: 2 + - uid: 17236 + components: + - type: Transform + pos: 0.5,-263.5 + parent: 2 + - uid: 17237 + components: + - type: Transform + pos: 0.5,-267.5 + parent: 2 + - uid: 17238 + components: + - type: Transform + pos: 0.5,-288.5 + parent: 2 + - uid: 17239 + components: + - type: Transform + pos: 0.5,-290.5 + parent: 2 + - uid: 17240 + components: + - type: Transform + pos: 0.5,-294.5 + parent: 2 + - uid: 17241 + components: + - type: Transform + pos: 0.5,-296.5 + parent: 2 + - uid: 17242 + components: + - type: Transform + pos: 0.5,-320.5 + parent: 2 + - uid: 17243 + components: + - type: Transform + pos: 0.5,-322.5 + parent: 2 + - uid: 17244 + components: + - type: Transform + pos: 0.5,-328.5 + parent: 2 + - uid: 17245 + components: + - type: Transform + pos: 0.5,-326.5 + parent: 2 + - uid: 17283 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 17284 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 17285 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - uid: 17286 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 + - uid: 17287 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 2 + - uid: 17288 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 2 + - uid: 17289 + components: + - type: Transform + pos: 0.5,-51.5 + parent: 2 + - uid: 17290 + components: + - type: Transform + pos: 0.5,-53.5 + parent: 2 + - uid: 17291 + components: + - type: Transform + pos: 0.5,-72.5 + parent: 2 + - uid: 17292 + components: + - type: Transform + pos: 0.5,-74.5 + parent: 2 + - uid: 17293 + components: + - type: Transform + pos: 0.5,-78.5 + parent: 2 + - uid: 17294 + components: + - type: Transform + pos: 0.5,-99.5 + parent: 2 + - uid: 17295 + components: + - type: Transform + pos: 0.5,-80.5 + parent: 2 + - uid: 17296 + components: + - type: Transform + pos: 0.5,-101.5 + parent: 2 + - uid: 17297 + components: + - type: Transform + pos: 0.5,-105.5 + parent: 2 + - uid: 17298 + components: + - type: Transform + pos: 0.5,-107.5 + parent: 2 + - uid: 17299 + components: + - type: Transform + pos: 0.5,-126.5 + parent: 2 + - uid: 17300 + components: + - type: Transform + pos: 0.5,-128.5 + parent: 2 + - uid: 17301 + components: + - type: Transform + pos: 0.5,-132.5 + parent: 2 + - uid: 17302 + components: + - type: Transform + pos: 0.5,-134.5 + parent: 2 + - uid: 17303 + components: + - type: Transform + pos: 0.5,-153.5 + parent: 2 + - uid: 17304 + components: + - type: Transform + pos: 0.5,-155.5 + parent: 2 + - uid: 17305 + components: + - type: Transform + pos: 0.5,-159.5 + parent: 2 + - uid: 17306 + components: + - type: Transform + pos: 0.5,-161.5 + parent: 2 + - uid: 17307 + components: + - type: Transform + pos: 0.5,-180.5 + parent: 2 + - uid: 17308 + components: + - type: Transform + pos: 0.5,-182.5 + parent: 2 + - uid: 17309 + components: + - type: Transform + pos: 0.5,-186.5 + parent: 2 + - uid: 17310 + components: + - type: Transform + pos: 0.5,-188.5 + parent: 2 + - uid: 17311 + components: + - type: Transform + pos: 0.5,-207.5 + parent: 2 + - uid: 17312 + components: + - type: Transform + pos: 0.5,-209.5 + parent: 2 + - uid: 17313 + components: + - type: Transform + pos: 0.5,-213.5 + parent: 2 + - uid: 17314 + components: + - type: Transform + pos: 0.5,-215.5 + parent: 2 - proto: Fireplace entities: - uid: 7518 @@ -48432,6 +49428,13 @@ entities: - type: Transform pos: 6.6280804,-11.907726 parent: 2 +- proto: FoodBreadPlain + entities: + - uid: 11616 + components: + - type: Transform + pos: 6.482156,-141.2125 + parent: 2 - proto: FoodBurgerBacon entities: - uid: 7534 @@ -48601,55 +49604,81 @@ entities: parent: 2 - proto: GasFilter entities: + - uid: 935 + components: + - type: Transform + pos: -19.5,-251.5 + parent: 2 + - uid: 3044 + components: + - type: Transform + pos: -19.5,-257.5 + parent: 2 + - uid: 3045 + components: + - type: Transform + pos: -19.5,-255.5 + parent: 2 + - uid: 3046 + components: + - type: Transform + pos: -19.5,-263.5 + parent: 2 + - uid: 7991 + components: + - type: Transform + pos: -19.5,-253.5 + parent: 2 + - uid: 8245 + components: + - type: Transform + pos: -19.5,-261.5 + parent: 2 + - uid: 8634 + components: + - type: Transform + pos: -19.5,-259.5 + parent: 2 - uid: 9218 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-170.5 parent: 2 -- proto: GasFilterFlipped - entities: - - uid: 7558 - components: - - type: Transform - pos: -17.5,-257.5 - parent: 2 - - uid: 7559 - components: - - type: Transform - pos: -17.5,-253.5 - parent: 2 - - uid: 7560 - components: - - type: Transform - pos: -17.5,-255.5 - parent: 2 - - uid: 7561 - components: - - type: Transform - pos: -17.5,-251.5 - parent: 2 - proto: GasMinerCarbonDioxide entities: - - uid: 7562 + - uid: 4675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-253.5 + pos: -24.5,-255.5 parent: 2 - proto: GasMinerNitrogenStationLarge entities: - - uid: 7563 + - uid: 3076 components: - type: Transform - pos: -20.5,-257.5 + pos: -24.5,-251.5 parent: 2 - proto: GasMinerOxygenStationLarge entities: - - uid: 7564 + - uid: 3639 components: - type: Transform - pos: -20.5,-255.5 + pos: -24.5,-253.5 + parent: 2 +- proto: GasMinerPlasma + entities: + - uid: 3102 + components: + - type: Transform + pos: -24.5,-259.5 + parent: 2 +- proto: GasMinerWaterVapor + entities: + - uid: 11306 + components: + - type: Transform + pos: -24.5,-257.5 parent: 2 - proto: GasMixer entities: @@ -48660,34 +49689,95 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' + - uid: 13428 + components: + - type: Transform + pos: -15.5,-254.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.23000002 + inletOneConcentration: 0.77 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasOutletInjector entities: - - uid: 7566 + - uid: 2907 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-257.5 + pos: -23.5,-255.5 parent: 2 - - uid: 7567 + - uid: 3029 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-255.5 + pos: -23.5,-257.5 parent: 2 - - uid: 7568 + - uid: 3030 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-251.5 + pos: -23.5,-259.5 parent: 2 - - uid: 7569 + - uid: 3031 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-253.5 + pos: -23.5,-261.5 + parent: 2 + - uid: 3034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-263.5 + parent: 2 + - uid: 12506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-251.5 + parent: 2 + - uid: 12569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-253.5 parent: 2 - proto: GasPassiveVent entities: + - uid: 3035 + components: + - type: Transform + pos: -25.5,-263.5 + parent: 2 + - uid: 3036 + components: + - type: Transform + pos: -25.5,-261.5 + parent: 2 + - uid: 3037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-249.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3038 + components: + - type: Transform + pos: -25.5,-259.5 + parent: 2 + - uid: 4674 + components: + - type: Transform + pos: -25.5,-257.5 + parent: 2 + - uid: 4827 + components: + - type: Transform + pos: -25.5,-253.5 + parent: 2 - uid: 7570 components: - type: Transform @@ -48720,12 +49810,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 7574 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-253.5 - parent: 2 - uid: 7575 components: - type: Transform @@ -48758,12 +49842,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 7579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-260.5 - parent: 2 - uid: 7580 components: - type: Transform @@ -48804,12 +49882,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 7585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-249.5 - parent: 2 - uid: 7586 components: - type: Transform @@ -48818,17 +49890,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 7587 - components: - - type: Transform - pos: -19.5,-257.5 - parent: 2 - - uid: 7588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-251.5 - parent: 2 - uid: 7589 components: - type: Transform @@ -48843,16 +49904,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 7591 - components: - - type: Transform - pos: -19.5,-255.5 - parent: 2 - - uid: 7592 - components: - - type: Transform - pos: -19.5,-260.5 - parent: 2 - uid: 7593 components: - type: Transform @@ -48909,12 +49960,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 7600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-263.5 - parent: 2 - uid: 7601 components: - type: Transform @@ -48923,8 +49968,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 12857 + components: + - type: Transform + pos: -25.5,-251.5 + parent: 2 + - uid: 15015 + components: + - type: Transform + pos: -25.5,-255.5 + parent: 2 + - uid: 16984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-265.5 + parent: 2 - proto: GasPipeBend entities: + - uid: 3976 + components: + - type: Transform + pos: -17.5,-249.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7563 + components: + - type: Transform + pos: -14.5,-250.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 7602 components: - type: Transform @@ -48947,7 +50022,7 @@ entities: pos: -1.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7605 components: - type: Transform @@ -48955,7 +50030,7 @@ entities: pos: -1.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7606 components: - type: Transform @@ -48963,7 +50038,7 @@ entities: pos: 4.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7607 components: - type: Transform @@ -48979,7 +50054,7 @@ entities: pos: -3.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7609 components: - type: Transform @@ -49009,7 +50084,7 @@ entities: pos: 5.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7613 components: - type: Transform @@ -49041,7 +50116,7 @@ entities: pos: 5.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7617 components: - type: Transform @@ -49063,7 +50138,7 @@ entities: pos: -5.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7622 components: - type: Transform @@ -49071,14 +50146,14 @@ entities: pos: 1.5,-125.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7623 components: - type: Transform pos: 5.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7624 components: - type: Transform @@ -49150,11 +50225,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 7633 - components: - - type: Transform - pos: -17.5,-249.5 - parent: 2 - uid: 7634 components: - type: Transform @@ -49168,7 +50238,7 @@ entities: pos: 16.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 7636 components: - type: Transform @@ -49176,7 +50246,7 @@ entities: pos: -2.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 7637 components: - type: Transform @@ -49197,7 +50267,7 @@ entities: pos: 5.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7640 components: - type: Transform @@ -49231,31 +50301,19 @@ entities: pos: 4.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7645 components: - type: Transform pos: 17.5,-262.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-250.5 - parent: 2 + color: '#FF1212FF' - uid: 7647 components: - type: Transform pos: -18.5,-243.5 parent: 2 - - uid: 7648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-258.5 - parent: 2 - uid: 7649 components: - type: Transform @@ -49263,13 +50321,7 @@ entities: pos: 17.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-256.5 - parent: 2 + color: '#0335FCFF' - uid: 7651 components: - type: Transform @@ -49277,7 +50329,7 @@ entities: pos: -9.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 7652 components: - type: Transform @@ -49285,7 +50337,7 @@ entities: pos: -3.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 7653 components: - type: Transform @@ -49293,7 +50345,7 @@ entities: pos: 16.5,-262.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 7654 components: - type: Transform @@ -49301,13 +50353,7 @@ entities: pos: 4.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-261.5 - parent: 2 + color: '#FF1212FF' - uid: 7656 components: - type: Transform @@ -49320,7 +50366,7 @@ entities: pos: 5.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7658 components: - type: Transform @@ -49342,7 +50388,7 @@ entities: pos: 7.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7661 components: - type: Transform @@ -49382,7 +50428,7 @@ entities: pos: 7.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7666 components: - type: Transform @@ -49414,7 +50460,7 @@ entities: pos: 7.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7670 components: - type: Transform @@ -49461,7 +50507,7 @@ entities: pos: -5.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7676 components: - type: Transform @@ -49469,7 +50515,7 @@ entities: pos: -5.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7677 components: - type: Transform @@ -49477,7 +50523,7 @@ entities: pos: -6.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7678 components: - type: Transform @@ -49485,7 +50531,7 @@ entities: pos: -6.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7679 components: - type: Transform @@ -49501,7 +50547,7 @@ entities: pos: 1.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7681 components: - type: Transform @@ -49517,7 +50563,7 @@ entities: pos: 6.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7683 components: - type: Transform @@ -49526,12 +50572,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 7684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-263.5 - parent: 2 - uid: 7685 components: - type: Transform @@ -49563,12 +50603,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 7689 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-252.5 - parent: 2 - uid: 7690 components: - type: Transform @@ -49576,7 +50610,7 @@ entities: pos: -4.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7691 components: - type: Transform @@ -49584,7 +50618,7 @@ entities: pos: 5.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7692 components: - type: Transform @@ -49592,14 +50626,14 @@ entities: pos: 5.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7693 components: - type: Transform pos: -3.5,-106.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7694 components: - type: Transform @@ -49607,7 +50641,7 @@ entities: pos: -4.5,-106.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7695 components: - type: Transform @@ -49615,7 +50649,7 @@ entities: pos: 8.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7696 components: - type: Transform @@ -49623,7 +50657,7 @@ entities: pos: -4.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7697 components: - type: Transform @@ -49631,14 +50665,14 @@ entities: pos: 5.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7698 components: - type: Transform pos: 5.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7699 components: - type: Transform @@ -49646,21 +50680,21 @@ entities: pos: -4.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7700 components: - type: Transform pos: 5.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7701 components: - type: Transform pos: 5.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7702 components: - type: Transform @@ -49683,7 +50717,13 @@ entities: pos: -3.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 7990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-250.5 + parent: 2 - uid: 8124 components: - type: Transform @@ -49691,24 +50731,105 @@ entities: pos: -6.5,-124.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8138 components: - type: Transform pos: -2.5,-169.5 parent: 2 + - uid: 8623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-259.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9221 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-170.5 parent: 2 + - uid: 10208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-258.5 + parent: 2 + - uid: 10212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-264.5 + parent: 2 + - uid: 10574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-256.5 + parent: 2 + - uid: 12858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-262.5 + parent: 2 + - uid: 12859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-260.5 + parent: 2 + - uid: 12860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-254.5 + parent: 2 + - uid: 13295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-252.5 + parent: 2 + - uid: 13351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-260.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-253.5 + parent: 2 - uid: 13633 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-170.5 parent: 2 + - uid: 13770 + components: + - type: Transform + pos: -15.5,-252.5 + parent: 2 + - uid: 14818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-255.5 + parent: 2 + - uid: 16982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-265.5 + parent: 2 - proto: GasPipeFourway entities: - uid: 7705 @@ -49724,21 +50845,21 @@ entities: pos: 1.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7707 components: - type: Transform pos: 1.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7708 components: - type: Transform pos: 0.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7709 components: - type: Transform @@ -49752,7 +50873,7 @@ entities: pos: 0.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7711 components: - type: Transform @@ -49766,28 +50887,28 @@ entities: pos: 0.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7713 components: - type: Transform pos: 0.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7714 components: - type: Transform pos: 0.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7715 components: - type: Transform pos: 1.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7716 components: - type: Transform @@ -49808,28 +50929,28 @@ entities: pos: 0.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7719 components: - type: Transform pos: 0.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7720 components: - type: Transform pos: 0.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7721 components: - type: Transform pos: 0.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7722 components: - type: Transform @@ -49843,7 +50964,7 @@ entities: pos: 0.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7724 components: - type: Transform @@ -49864,28 +50985,28 @@ entities: pos: 0.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7727 components: - type: Transform pos: 0.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7728 components: - type: Transform pos: 0.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7729 components: - type: Transform pos: 0.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7730 components: - type: Transform @@ -49899,7 +51020,7 @@ entities: pos: 0.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7732 components: - type: Transform @@ -49913,28 +51034,28 @@ entities: pos: 0.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7734 components: - type: Transform pos: 0.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7735 components: - type: Transform pos: -3.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7736 components: - type: Transform pos: 17.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7737 components: - type: Transform @@ -49955,7 +51076,7 @@ entities: pos: 0.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7740 components: - type: Transform @@ -49990,29 +51111,417 @@ entities: pos: 4.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7745 components: - type: Transform pos: 1.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - proto: GasPipeStraight entities: + - uid: 519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-264.5 + parent: 2 + - uid: 577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-252.5 + parent: 2 + - uid: 578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-254.5 + parent: 2 + - uid: 579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-251.5 + parent: 2 + - uid: 580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-253.5 + parent: 2 + - uid: 581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-254.5 + parent: 2 + - uid: 582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-254.5 + parent: 2 + - uid: 583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-255.5 + parent: 2 + - uid: 584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-257.5 + parent: 2 + - uid: 585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-259.5 + parent: 2 + - uid: 586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-261.5 + parent: 2 + - uid: 587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-263.5 + parent: 2 + - uid: 588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-264.5 + parent: 2 + - uid: 589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-256.5 + parent: 2 + - uid: 590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-252.5 + parent: 2 + - uid: 591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-252.5 + parent: 2 + - uid: 592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-263.5 + parent: 2 + - uid: 593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-262.5 + parent: 2 + - uid: 594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-261.5 + parent: 2 + - uid: 611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-258.5 + parent: 2 + - uid: 612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-256.5 + parent: 2 + - uid: 613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-256.5 + parent: 2 + - uid: 862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-258.5 + parent: 2 + - uid: 868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-260.5 + parent: 2 + - uid: 892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-262.5 + parent: 2 + - uid: 896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-264.5 + parent: 2 + - uid: 933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-252.5 + parent: 2 + - uid: 934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-251.5 + parent: 2 + - uid: 3040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-261.5 + parent: 2 + - uid: 3041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-259.5 + parent: 2 + - uid: 3042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-264.5 + parent: 2 + - uid: 3074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-256.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-260.5 + parent: 2 + - uid: 4673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-262.5 + parent: 2 + - uid: 4679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-260.5 + parent: 2 + - uid: 5268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-264.5 + parent: 2 + - uid: 5269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-253.5 + parent: 2 + - uid: 5270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-260.5 + parent: 2 + - uid: 5271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-251.5 + parent: 2 + - uid: 5459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-258.5 + parent: 2 + - uid: 5492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-258.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-254.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5564 + components: + - type: Transform + pos: -19.5,-258.5 + parent: 2 + - uid: 5639 + components: + - type: Transform + pos: -19.5,-252.5 + parent: 2 + - uid: 5640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-255.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-255.5 + parent: 2 + - uid: 7129 + components: + - type: Transform + pos: -19.5,-260.5 + parent: 2 + - uid: 7130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-262.5 + parent: 2 + - uid: 7284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-252.5 + parent: 2 + - uid: 7308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-257.5 + parent: 2 + - uid: 7559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-251.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-257.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-249.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7568 + components: + - type: Transform + pos: -19.5,-264.5 + parent: 2 + - uid: 7569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-249.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-253.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-252.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7591 + components: + - type: Transform + pos: -19.5,-262.5 + parent: 2 + - uid: 7592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-250.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 7618 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-171.5 parent: 2 + - uid: 7650 + components: + - type: Transform + pos: -19.5,-254.5 + parent: 2 + - uid: 7684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-256.5 + parent: 2 + - uid: 7689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-254.5 + parent: 2 - uid: 7746 components: - type: Transform pos: 1.5,-359.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7747 components: - type: Transform @@ -50331,7 +51840,7 @@ entities: pos: 0.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7787 components: - type: Transform @@ -50339,7 +51848,7 @@ entities: pos: 0.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7788 components: - type: Transform @@ -50347,7 +51856,7 @@ entities: pos: -0.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7789 components: - type: Transform @@ -50355,7 +51864,7 @@ entities: pos: -1.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7790 components: - type: Transform @@ -50363,7 +51872,7 @@ entities: pos: -2.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7791 components: - type: Transform @@ -50371,7 +51880,7 @@ entities: pos: 1.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7792 components: - type: Transform @@ -50379,7 +51888,7 @@ entities: pos: 1.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7793 components: - type: Transform @@ -50387,7 +51896,7 @@ entities: pos: 1.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7794 components: - type: Transform @@ -50395,7 +51904,7 @@ entities: pos: 1.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7795 components: - type: Transform @@ -50403,7 +51912,7 @@ entities: pos: 2.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7796 components: - type: Transform @@ -50411,7 +51920,7 @@ entities: pos: 3.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7797 components: - type: Transform @@ -50419,21 +51928,21 @@ entities: pos: 4.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7798 components: - type: Transform pos: 1.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7799 components: - type: Transform pos: 1.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7800 components: - type: Transform @@ -50441,7 +51950,7 @@ entities: pos: 0.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7801 components: - type: Transform @@ -50449,7 +51958,7 @@ entities: pos: 0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7802 components: - type: Transform @@ -50457,7 +51966,7 @@ entities: pos: -0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7803 components: - type: Transform @@ -50465,7 +51974,7 @@ entities: pos: -0.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7804 components: - type: Transform @@ -50473,7 +51982,7 @@ entities: pos: 1.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7805 components: - type: Transform @@ -50481,7 +51990,7 @@ entities: pos: 1.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7806 components: - type: Transform @@ -50489,7 +51998,7 @@ entities: pos: 1.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7807 components: - type: Transform @@ -50497,7 +52006,7 @@ entities: pos: 1.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7808 components: - type: Transform @@ -50505,7 +52014,7 @@ entities: pos: 1.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7809 components: - type: Transform @@ -50513,7 +52022,7 @@ entities: pos: 2.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7810 components: - type: Transform @@ -50521,7 +52030,7 @@ entities: pos: 3.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7811 components: - type: Transform @@ -50529,7 +52038,7 @@ entities: pos: 4.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7812 components: - type: Transform @@ -50537,7 +52046,7 @@ entities: pos: 1.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7813 components: - type: Transform @@ -50545,7 +52054,7 @@ entities: pos: 0.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7814 components: - type: Transform @@ -50553,7 +52062,7 @@ entities: pos: -1.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7815 components: - type: Transform @@ -50561,7 +52070,7 @@ entities: pos: -2.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7816 components: - type: Transform @@ -50577,7 +52086,7 @@ entities: pos: -0.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7818 components: - type: Transform @@ -50607,21 +52116,21 @@ entities: pos: 0.5,-228.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7822 components: - type: Transform pos: 0.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7823 components: - type: Transform pos: 0.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7824 components: - type: Transform @@ -50644,14 +52153,14 @@ entities: pos: 0.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7827 components: - type: Transform pos: 0.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7828 components: - type: Transform @@ -50666,7 +52175,7 @@ entities: pos: 0.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7830 components: - type: Transform @@ -50674,98 +52183,98 @@ entities: pos: -0.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7831 components: - type: Transform pos: 0.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7832 components: - type: Transform pos: 0.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7833 components: - type: Transform pos: 0.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7834 components: - type: Transform pos: 0.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7835 components: - type: Transform pos: 0.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7836 components: - type: Transform pos: 0.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7837 components: - type: Transform pos: 0.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7838 components: - type: Transform pos: 0.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7839 components: - type: Transform pos: 0.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7840 components: - type: Transform pos: 0.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7841 components: - type: Transform pos: 0.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7842 components: - type: Transform pos: 0.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7843 components: - type: Transform pos: 0.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7844 components: - type: Transform @@ -50789,7 +52298,7 @@ entities: pos: 1.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7847 components: - type: Transform @@ -50813,7 +52322,7 @@ entities: pos: 0.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7850 components: - type: Transform @@ -50900,7 +52409,7 @@ entities: pos: 5.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7861 components: - type: Transform @@ -50908,7 +52417,7 @@ entities: pos: 4.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7862 components: - type: Transform @@ -50916,7 +52425,7 @@ entities: pos: 3.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7863 components: - type: Transform @@ -50924,7 +52433,7 @@ entities: pos: 2.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7864 components: - type: Transform @@ -50932,7 +52441,7 @@ entities: pos: 1.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7865 components: - type: Transform @@ -50975,7 +52484,7 @@ entities: pos: -0.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7871 components: - type: Transform @@ -50983,7 +52492,7 @@ entities: pos: -1.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7872 components: - type: Transform @@ -50991,7 +52500,7 @@ entities: pos: -3.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7873 components: - type: Transform @@ -50999,14 +52508,14 @@ entities: pos: -2.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7874 components: - type: Transform pos: -4.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7875 components: - type: Transform @@ -51142,7 +52651,7 @@ entities: pos: 1.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7892 components: - type: Transform @@ -51150,7 +52659,7 @@ entities: pos: 2.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7893 components: - type: Transform @@ -51158,7 +52667,7 @@ entities: pos: 3.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7894 components: - type: Transform @@ -51166,7 +52675,7 @@ entities: pos: 4.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7895 components: - type: Transform @@ -51245,7 +52754,7 @@ entities: pos: 0.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7905 components: - type: Transform @@ -51269,7 +52778,7 @@ entities: pos: -1.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7908 components: - type: Transform @@ -51285,7 +52794,7 @@ entities: pos: -2.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7910 components: - type: Transform @@ -51293,7 +52802,7 @@ entities: pos: -3.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7911 components: - type: Transform @@ -51325,7 +52834,7 @@ entities: pos: -4.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7915 components: - type: Transform @@ -51404,7 +52913,7 @@ entities: pos: 0.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7925 components: - type: Transform @@ -51412,14 +52921,14 @@ entities: pos: 2.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7926 components: - type: Transform pos: 0.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7927 components: - type: Transform @@ -51434,35 +52943,35 @@ entities: pos: 0.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7929 components: - type: Transform pos: 0.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7930 components: - type: Transform pos: 0.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7931 components: - type: Transform pos: 0.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7932 components: - type: Transform pos: 0.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7933 components: - type: Transform @@ -51470,7 +52979,7 @@ entities: pos: 1.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7934 components: - type: Transform @@ -51478,7 +52987,7 @@ entities: pos: 2.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7935 components: - type: Transform @@ -51486,7 +52995,7 @@ entities: pos: -0.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7936 components: - type: Transform @@ -51542,7 +53051,7 @@ entities: pos: -1.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7943 components: - type: Transform @@ -51574,14 +53083,14 @@ entities: pos: 0.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7947 components: - type: Transform pos: 0.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7948 components: - type: Transform @@ -51589,7 +53098,7 @@ entities: pos: 0.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7949 components: - type: Transform @@ -51597,7 +53106,7 @@ entities: pos: 0.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7950 components: - type: Transform @@ -51605,7 +53114,7 @@ entities: pos: 0.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7951 components: - type: Transform @@ -51621,7 +53130,7 @@ entities: pos: 4.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7953 components: - type: Transform @@ -51629,7 +53138,7 @@ entities: pos: 3.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7954 components: - type: Transform @@ -51669,7 +53178,7 @@ entities: pos: 4.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7959 components: - type: Transform @@ -51677,7 +53186,7 @@ entities: pos: 3.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7960 components: - type: Transform @@ -51685,7 +53194,7 @@ entities: pos: 2.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7961 components: - type: Transform @@ -51693,7 +53202,7 @@ entities: pos: 1.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7962 components: - type: Transform @@ -51717,7 +53226,7 @@ entities: pos: -0.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7965 components: - type: Transform @@ -51725,7 +53234,7 @@ entities: pos: -1.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7966 components: - type: Transform @@ -51733,7 +53242,7 @@ entities: pos: -2.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7967 components: - type: Transform @@ -51741,7 +53250,7 @@ entities: pos: -3.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7968 components: - type: Transform @@ -51749,14 +53258,14 @@ entities: pos: -0.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7969 components: - type: Transform pos: 0.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7970 components: - type: Transform @@ -51764,7 +53273,7 @@ entities: pos: 4.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7971 components: - type: Transform @@ -51780,7 +53289,7 @@ entities: pos: -4.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7973 components: - type: Transform @@ -51788,33 +53297,28 @@ entities: pos: 0.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7974 components: - type: Transform pos: -4.5,-136.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7975 components: - type: Transform pos: -4.5,-134.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7976 components: - type: Transform pos: -4.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7977 - components: - - type: Transform - pos: -17.5,-258.5 - parent: 2 + color: '#0335FCFF' - uid: 7978 components: - type: Transform @@ -51831,11 +53335,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-245.5 parent: 2 - - uid: 7981 - components: - - type: Transform - pos: -17.5,-250.5 - parent: 2 - uid: 7982 components: - type: Transform @@ -51847,8 +53346,7 @@ entities: - uid: 7983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-258.5 + pos: -19.5,-256.5 parent: 2 - uid: 7984 components: @@ -51872,14 +53370,14 @@ entities: pos: 0.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7987 components: - type: Transform pos: -9.5,-253.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 7988 components: - type: Transform @@ -51887,29 +53385,17 @@ entities: pos: -2.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7989 components: - type: Transform pos: -18.5,-239.5 parent: 2 - - uid: 7990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-251.5 - parent: 2 - - uid: 7991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-253.5 - parent: 2 - uid: 7992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-251.5 + rot: 1.5707963267948966 rad + pos: -20.5,-263.5 parent: 2 - uid: 7993 components: @@ -52238,7 +53724,7 @@ entities: pos: 0.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8035 components: - type: Transform @@ -52253,7 +53739,7 @@ entities: pos: 0.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8037 components: - type: Transform @@ -52261,14 +53747,14 @@ entities: pos: 0.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8038 components: - type: Transform pos: 0.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8039 components: - type: Transform @@ -52276,7 +53762,7 @@ entities: pos: 1.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8040 components: - type: Transform @@ -52284,7 +53770,7 @@ entities: pos: 2.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8041 components: - type: Transform @@ -52292,7 +53778,7 @@ entities: pos: 3.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8042 components: - type: Transform @@ -52300,7 +53786,7 @@ entities: pos: -0.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8043 components: - type: Transform @@ -52308,7 +53794,7 @@ entities: pos: -1.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8044 components: - type: Transform @@ -52316,7 +53802,7 @@ entities: pos: -2.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8045 components: - type: Transform @@ -52324,7 +53810,7 @@ entities: pos: -3.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8046 components: - type: Transform @@ -52332,7 +53818,7 @@ entities: pos: 0.5,-83.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8047 components: - type: Transform @@ -52340,7 +53826,7 @@ entities: pos: 0.5,-84.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8048 components: - type: Transform @@ -52348,7 +53834,7 @@ entities: pos: 0.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8049 components: - type: Transform @@ -52356,7 +53842,7 @@ entities: pos: 0.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8050 components: - type: Transform @@ -52364,7 +53850,7 @@ entities: pos: 0.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8051 components: - type: Transform @@ -52372,7 +53858,7 @@ entities: pos: 0.5,-89.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8052 components: - type: Transform @@ -52380,7 +53866,7 @@ entities: pos: -0.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8053 components: - type: Transform @@ -52388,7 +53874,7 @@ entities: pos: -1.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8054 components: - type: Transform @@ -52396,7 +53882,7 @@ entities: pos: -2.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8055 components: - type: Transform @@ -52404,7 +53890,7 @@ entities: pos: -3.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8056 components: - type: Transform @@ -52412,7 +53898,7 @@ entities: pos: -4.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8057 components: - type: Transform @@ -52420,7 +53906,7 @@ entities: pos: -5.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8058 components: - type: Transform @@ -52428,7 +53914,7 @@ entities: pos: 0.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8059 components: - type: Transform @@ -52436,7 +53922,7 @@ entities: pos: 0.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8060 components: - type: Transform @@ -52444,7 +53930,7 @@ entities: pos: 0.5,-95.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8061 components: - type: Transform @@ -52452,7 +53938,7 @@ entities: pos: 0.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8062 components: - type: Transform @@ -52460,7 +53946,7 @@ entities: pos: -0.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8063 components: - type: Transform @@ -52468,7 +53954,7 @@ entities: pos: -1.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8064 components: - type: Transform @@ -52476,7 +53962,7 @@ entities: pos: -2.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8065 components: - type: Transform @@ -52484,7 +53970,7 @@ entities: pos: -1.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8066 components: - type: Transform @@ -52492,7 +53978,7 @@ entities: pos: -0.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8067 components: - type: Transform @@ -52500,7 +53986,7 @@ entities: pos: 0.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8068 components: - type: Transform @@ -52508,7 +53994,7 @@ entities: pos: 0.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8069 components: - type: Transform @@ -52516,7 +54002,7 @@ entities: pos: 0.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8070 components: - type: Transform @@ -52524,7 +54010,7 @@ entities: pos: 0.5,-101.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8071 components: - type: Transform @@ -52532,7 +54018,7 @@ entities: pos: 0.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8072 components: - type: Transform @@ -52540,7 +54026,7 @@ entities: pos: 1.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8073 components: - type: Transform @@ -52548,7 +54034,7 @@ entities: pos: 2.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8074 components: - type: Transform @@ -52556,7 +54042,7 @@ entities: pos: 3.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8075 components: - type: Transform @@ -52564,7 +54050,7 @@ entities: pos: 4.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8076 components: - type: Transform @@ -52572,7 +54058,7 @@ entities: pos: 0.5,-105.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8077 components: - type: Transform @@ -52580,7 +54066,7 @@ entities: pos: 0.5,-107.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8078 components: - type: Transform @@ -52588,140 +54074,140 @@ entities: pos: 0.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8079 components: - type: Transform pos: 1.5,-124.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8080 components: - type: Transform pos: 1.5,-123.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8081 components: - type: Transform pos: 1.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8082 components: - type: Transform pos: 1.5,-121.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8083 components: - type: Transform pos: 1.5,-119.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8084 components: - type: Transform pos: 1.5,-118.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8085 components: - type: Transform pos: 1.5,-117.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8086 components: - type: Transform pos: 1.5,-115.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8087 components: - type: Transform pos: 1.5,-114.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8088 components: - type: Transform pos: 1.5,-113.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8089 components: - type: Transform pos: 1.5,-112.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8090 components: - type: Transform pos: 1.5,-111.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8091 components: - type: Transform pos: 1.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8092 components: - type: Transform pos: 0.5,-126.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8093 components: - type: Transform pos: 0.5,-128.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8094 components: - type: Transform pos: 0.5,-130.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8095 components: - type: Transform pos: 0.5,-132.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8096 components: - type: Transform pos: 0.5,-134.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8097 components: - type: Transform pos: 0.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8098 components: - type: Transform @@ -52729,7 +54215,7 @@ entities: pos: -3.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8099 components: - type: Transform @@ -52737,7 +54223,7 @@ entities: pos: -5.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8100 components: - type: Transform @@ -52745,7 +54231,7 @@ entities: pos: -4.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8101 components: - type: Transform @@ -52753,7 +54239,7 @@ entities: pos: -1.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8102 components: - type: Transform @@ -52761,7 +54247,7 @@ entities: pos: -2.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8103 components: - type: Transform @@ -52769,7 +54255,7 @@ entities: pos: 2.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8104 components: - type: Transform @@ -52777,7 +54263,7 @@ entities: pos: 4.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8105 components: - type: Transform @@ -52785,7 +54271,7 @@ entities: pos: 2.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8106 components: - type: Transform @@ -52793,7 +54279,7 @@ entities: pos: 3.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8107 components: - type: Transform @@ -52801,7 +54287,7 @@ entities: pos: 4.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8108 components: - type: Transform @@ -52809,7 +54295,7 @@ entities: pos: 5.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8109 components: - type: Transform @@ -52817,84 +54303,84 @@ entities: pos: 6.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8110 components: - type: Transform pos: -6.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8111 components: - type: Transform pos: -6.5,-111.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8113 components: - type: Transform pos: -6.5,-113.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8114 components: - type: Transform pos: -6.5,-114.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8116 components: - type: Transform pos: -6.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8117 components: - type: Transform pos: -6.5,-117.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8119 components: - type: Transform pos: -6.5,-119.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8120 components: - type: Transform pos: -6.5,-120.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8122 components: - type: Transform pos: -6.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8123 components: - type: Transform pos: -6.5,-123.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8125 components: - type: Transform pos: 15.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8126 components: - type: Transform @@ -52996,7 +54482,7 @@ entities: pos: 15.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8140 components: - type: Transform @@ -53192,21 +54678,21 @@ entities: pos: -4.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8165 components: - type: Transform pos: -9.5,-252.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8166 components: - type: Transform pos: -9.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8167 components: - type: Transform @@ -53318,7 +54804,7 @@ entities: pos: -6.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8181 components: - type: Transform @@ -53326,7 +54812,7 @@ entities: pos: -2.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8182 components: - type: Transform @@ -53334,7 +54820,7 @@ entities: pos: 2.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8183 components: - type: Transform @@ -53342,7 +54828,7 @@ entities: pos: 3.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8184 components: - type: Transform @@ -53350,7 +54836,7 @@ entities: pos: 0.5,-168.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8185 components: - type: Transform @@ -53358,7 +54844,7 @@ entities: pos: 0.5,-200.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8186 components: - type: Transform @@ -53366,7 +54852,7 @@ entities: pos: 1.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8187 components: - type: Transform @@ -53382,13 +54868,7 @@ entities: pos: 7.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-260.5 - parent: 2 + color: '#0335FCFF' - uid: 8190 components: - type: Transform @@ -53396,7 +54876,7 @@ entities: pos: 6.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8191 components: - type: Transform @@ -53412,7 +54892,7 @@ entities: pos: 0.5,-137.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8193 components: - type: Transform @@ -53428,7 +54908,7 @@ entities: pos: 0.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8195 components: - type: Transform @@ -53436,7 +54916,7 @@ entities: pos: 0.5,-141.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8196 components: - type: Transform @@ -53444,7 +54924,7 @@ entities: pos: 0.5,-142.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8197 components: - type: Transform @@ -53452,7 +54932,7 @@ entities: pos: 0.5,-143.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8198 components: - type: Transform @@ -53460,7 +54940,7 @@ entities: pos: 0.5,-144.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8199 components: - type: Transform @@ -53468,7 +54948,7 @@ entities: pos: 0.5,-145.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8200 components: - type: Transform @@ -53476,7 +54956,7 @@ entities: pos: 0.5,-147.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8201 components: - type: Transform @@ -53484,7 +54964,7 @@ entities: pos: 0.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8202 components: - type: Transform @@ -53492,7 +54972,7 @@ entities: pos: 0.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8203 components: - type: Transform @@ -53500,7 +54980,7 @@ entities: pos: 0.5,-150.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8204 components: - type: Transform @@ -53508,7 +54988,7 @@ entities: pos: 0.5,-153.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8205 components: - type: Transform @@ -53516,7 +54996,7 @@ entities: pos: 0.5,-155.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8206 components: - type: Transform @@ -53524,7 +55004,7 @@ entities: pos: 0.5,-157.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8207 components: - type: Transform @@ -53532,7 +55012,7 @@ entities: pos: 0.5,-159.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8208 components: - type: Transform @@ -53540,7 +55020,7 @@ entities: pos: 0.5,-161.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8209 components: - type: Transform @@ -53548,7 +55028,7 @@ entities: pos: 0.5,-162.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8210 components: - type: Transform @@ -53556,7 +55036,7 @@ entities: pos: -1.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8211 components: - type: Transform @@ -53696,7 +55176,7 @@ entities: pos: 4.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8229 components: - type: Transform @@ -53825,12 +55305,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-260.5 - parent: 2 - uid: 8246 components: - type: Transform @@ -53838,7 +55312,7 @@ entities: pos: -3.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8247 components: - type: Transform @@ -53846,7 +55320,7 @@ entities: pos: -2.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8248 components: - type: Transform @@ -53854,7 +55328,7 @@ entities: pos: -1.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8249 components: - type: Transform @@ -53862,7 +55336,7 @@ entities: pos: -0.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8250 components: - type: Transform @@ -53870,14 +55344,14 @@ entities: pos: -4.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8251 components: - type: Transform pos: -9.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8252 components: - type: Transform @@ -53885,14 +55359,14 @@ entities: pos: -4.5,-137.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8253 components: - type: Transform pos: -4.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8254 components: - type: Transform @@ -53907,7 +55381,7 @@ entities: pos: 1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8256 components: - type: Transform @@ -53922,7 +55396,7 @@ entities: pos: -4.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8258 components: - type: Transform @@ -53938,7 +55412,7 @@ entities: pos: -1.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8260 components: - type: Transform @@ -53946,7 +55420,7 @@ entities: pos: 0.5,-171.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8261 components: - type: Transform @@ -53954,7 +55428,7 @@ entities: pos: 0.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8262 components: - type: Transform @@ -53962,7 +55436,7 @@ entities: pos: 0.5,-173.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8263 components: - type: Transform @@ -53970,7 +55444,7 @@ entities: pos: 0.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8264 components: - type: Transform @@ -53978,7 +55452,7 @@ entities: pos: 0.5,-176.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8265 components: - type: Transform @@ -53986,7 +55460,7 @@ entities: pos: 0.5,-177.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8266 components: - type: Transform @@ -53994,7 +55468,7 @@ entities: pos: 0.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8267 components: - type: Transform @@ -54002,7 +55476,7 @@ entities: pos: 0.5,-180.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8268 components: - type: Transform @@ -54010,7 +55484,7 @@ entities: pos: 0.5,-182.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8269 components: - type: Transform @@ -54018,7 +55492,7 @@ entities: pos: 0.5,-184.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8270 components: - type: Transform @@ -54026,7 +55500,7 @@ entities: pos: 0.5,-186.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8271 components: - type: Transform @@ -54034,7 +55508,7 @@ entities: pos: 0.5,-188.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8272 components: - type: Transform @@ -54042,7 +55516,7 @@ entities: pos: -0.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8273 components: - type: Transform @@ -54116,14 +55590,14 @@ entities: pos: 15.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8283 components: - type: Transform pos: 15.5,-262.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8284 components: - type: Transform @@ -54147,7 +55621,7 @@ entities: pos: 0.5,-164.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8287 components: - type: Transform @@ -54163,7 +55637,7 @@ entities: pos: -0.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8289 components: - type: Transform @@ -54171,7 +55645,7 @@ entities: pos: 1.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8290 components: - type: Transform @@ -54195,7 +55669,7 @@ entities: pos: -1.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8293 components: - type: Transform @@ -54203,7 +55677,7 @@ entities: pos: 1.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8294 components: - type: Transform @@ -54211,7 +55685,7 @@ entities: pos: 2.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8295 components: - type: Transform @@ -54259,7 +55733,7 @@ entities: pos: 1.5,-146.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8301 components: - type: Transform @@ -54267,7 +55741,7 @@ entities: pos: 2.5,-146.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8302 components: - type: Transform @@ -54275,7 +55749,7 @@ entities: pos: 3.5,-146.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8303 components: - type: Transform @@ -54283,7 +55757,7 @@ entities: pos: 1.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8304 components: - type: Transform @@ -54291,7 +55765,7 @@ entities: pos: 3.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8305 components: - type: Transform @@ -54299,7 +55773,7 @@ entities: pos: 2.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8306 components: - type: Transform @@ -54363,7 +55837,7 @@ entities: pos: 0.5,-217.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8314 components: - type: Transform @@ -54371,7 +55845,7 @@ entities: pos: 0.5,-218.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8315 components: - type: Transform @@ -54411,7 +55885,7 @@ entities: pos: 0.5,-213.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8320 components: - type: Transform @@ -54419,7 +55893,7 @@ entities: pos: 0.5,-207.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8321 components: - type: Transform @@ -54432,7 +55906,7 @@ entities: pos: 0.5,-196.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8323 components: - type: Transform @@ -54440,7 +55914,7 @@ entities: pos: 0.5,-193.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8324 components: - type: Transform @@ -54448,7 +55922,7 @@ entities: pos: 0.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8325 components: - type: Transform @@ -54456,7 +55930,7 @@ entities: pos: 0.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8326 components: - type: Transform @@ -54464,7 +55938,7 @@ entities: pos: 0.5,-191.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8327 components: - type: Transform @@ -54472,7 +55946,7 @@ entities: pos: 0.5,-204.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8328 components: - type: Transform @@ -54480,7 +55954,7 @@ entities: pos: 0.5,-203.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8329 components: - type: Transform @@ -54488,7 +55962,7 @@ entities: pos: 0.5,-209.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8330 components: - type: Transform @@ -54580,7 +56054,7 @@ entities: pos: -0.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8341 components: - type: Transform @@ -54596,7 +56070,7 @@ entities: pos: 1.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8343 components: - type: Transform @@ -54604,7 +56078,7 @@ entities: pos: 3.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8344 components: - type: Transform @@ -54612,7 +56086,7 @@ entities: pos: 0.5,-195.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8345 components: - type: Transform @@ -54620,7 +56094,7 @@ entities: pos: 0.5,-192.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8346 components: - type: Transform @@ -54628,7 +56102,7 @@ entities: pos: 0.5,-211.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8347 components: - type: Transform @@ -54636,7 +56110,7 @@ entities: pos: 0.5,-220.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8348 components: - type: Transform @@ -54652,7 +56126,7 @@ entities: pos: 2.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8350 components: - type: Transform @@ -54667,7 +56141,7 @@ entities: pos: 17.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8352 components: - type: Transform @@ -54675,14 +56149,14 @@ entities: pos: 0.5,-198.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8353 components: - type: Transform pos: 0.5,-170.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8354 components: - type: Transform @@ -54690,7 +56164,7 @@ entities: pos: 0.5,-201.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8355 components: - type: Transform @@ -54730,7 +56204,7 @@ entities: pos: 0.5,-215.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8360 components: - type: Transform @@ -54738,7 +56212,7 @@ entities: pos: 0.5,-216.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8361 components: - type: Transform @@ -54746,7 +56220,7 @@ entities: pos: 0.5,-222.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8362 components: - type: Transform @@ -54754,7 +56228,7 @@ entities: pos: 0.5,-223.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8363 components: - type: Transform @@ -54762,7 +56236,7 @@ entities: pos: 0.5,-224.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8364 components: - type: Transform @@ -54770,7 +56244,7 @@ entities: pos: 0.5,-225.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8365 components: - type: Transform @@ -54778,7 +56252,7 @@ entities: pos: 0.5,-226.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8366 components: - type: Transform @@ -54786,7 +56260,7 @@ entities: pos: 0.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8367 components: - type: Transform @@ -54794,7 +56268,7 @@ entities: pos: 0.5,-231.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8368 components: - type: Transform @@ -54802,7 +56276,7 @@ entities: pos: 0.5,-232.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8369 components: - type: Transform @@ -54810,7 +56284,7 @@ entities: pos: 0.5,-233.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8370 components: - type: Transform @@ -54818,7 +56292,7 @@ entities: pos: 0.5,-234.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8371 components: - type: Transform @@ -54826,7 +56300,7 @@ entities: pos: 0.5,-236.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8372 components: - type: Transform @@ -54834,7 +56308,7 @@ entities: pos: 0.5,-238.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8373 components: - type: Transform @@ -54842,7 +56316,7 @@ entities: pos: 0.5,-240.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8374 components: - type: Transform @@ -54850,7 +56324,7 @@ entities: pos: 0.5,-242.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8375 components: - type: Transform @@ -54858,7 +56332,7 @@ entities: pos: 1.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8376 components: - type: Transform @@ -54866,7 +56340,7 @@ entities: pos: 2.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8377 components: - type: Transform @@ -54874,7 +56348,7 @@ entities: pos: 3.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8378 components: - type: Transform @@ -54890,7 +56364,7 @@ entities: pos: 1.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8380 components: - type: Transform @@ -54898,7 +56372,7 @@ entities: pos: -1.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8381 components: - type: Transform @@ -54920,7 +56394,7 @@ entities: pos: -0.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8384 components: - type: Transform @@ -54928,7 +56402,7 @@ entities: pos: -1.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8385 components: - type: Transform @@ -54936,21 +56410,21 @@ entities: pos: -2.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8386 components: - type: Transform pos: 17.5,-246.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8387 components: - type: Transform pos: -4.5,-203.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8388 components: - type: Transform @@ -54958,7 +56432,7 @@ entities: pos: -3.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8389 components: - type: Transform @@ -54966,7 +56440,7 @@ entities: pos: -2.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8390 components: - type: Transform @@ -54974,7 +56448,7 @@ entities: pos: -1.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8391 components: - type: Transform @@ -54982,7 +56456,7 @@ entities: pos: -0.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8392 components: - type: Transform @@ -54990,7 +56464,7 @@ entities: pos: 1.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8393 components: - type: Transform @@ -54998,7 +56472,7 @@ entities: pos: 2.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8394 components: - type: Transform @@ -55006,7 +56480,7 @@ entities: pos: -0.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8395 components: - type: Transform @@ -55014,7 +56488,7 @@ entities: pos: -1.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8396 components: - type: Transform @@ -55022,7 +56496,7 @@ entities: pos: -0.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8397 components: - type: Transform @@ -55030,7 +56504,7 @@ entities: pos: -1.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8398 components: - type: Transform @@ -55038,7 +56512,7 @@ entities: pos: 1.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8399 components: - type: Transform @@ -55046,7 +56520,7 @@ entities: pos: 2.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8400 components: - type: Transform @@ -55150,7 +56624,7 @@ entities: pos: -2.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8413 components: - type: Transform @@ -55158,7 +56632,7 @@ entities: pos: -0.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8414 components: - type: Transform @@ -55166,7 +56640,7 @@ entities: pos: 1.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8415 components: - type: Transform @@ -55174,7 +56648,7 @@ entities: pos: 2.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8416 components: - type: Transform @@ -55257,7 +56731,7 @@ entities: pos: -5.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8427 components: - type: Transform @@ -55265,7 +56739,7 @@ entities: pos: -3.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8428 components: - type: Transform @@ -55273,7 +56747,7 @@ entities: pos: -4.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8429 components: - type: Transform @@ -55281,7 +56755,7 @@ entities: pos: -1.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8430 components: - type: Transform @@ -55289,7 +56763,7 @@ entities: pos: 1.5,-166.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8431 components: - type: Transform @@ -55297,7 +56771,7 @@ entities: pos: 2.5,-166.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8432 components: - type: Transform @@ -55313,7 +56787,7 @@ entities: pos: 1.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8434 components: - type: Transform @@ -55321,7 +56795,7 @@ entities: pos: 2.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8435 components: - type: Transform @@ -55353,7 +56827,7 @@ entities: pos: 4.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8439 components: - type: Transform @@ -55361,7 +56835,7 @@ entities: pos: 5.5,-176.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8440 components: - type: Transform @@ -55370,12 +56844,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-260.5 - parent: 2 - uid: 8442 components: - type: Transform @@ -55479,20 +56947,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8455 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-260.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8456 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-249.5 - parent: 2 - uid: 8457 components: - type: Transform @@ -55547,35 +57001,35 @@ entities: pos: 1.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8465 components: - type: Transform pos: 0.5,-246.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8466 components: - type: Transform pos: 0.5,-245.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8467 components: - type: Transform pos: 0.5,-252.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8468 components: - type: Transform pos: 0.5,-255.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8469 components: - type: Transform @@ -55583,28 +57037,28 @@ entities: pos: 1.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8470 components: - type: Transform pos: 0.5,-247.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8471 components: - type: Transform pos: 0.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8472 components: - type: Transform pos: 16.5,-252.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8473 components: - type: Transform @@ -55612,7 +57066,7 @@ entities: pos: 11.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8474 components: - type: Transform @@ -55620,14 +57074,14 @@ entities: pos: 7.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8475 components: - type: Transform pos: 0.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8476 components: - type: Transform @@ -55635,21 +57089,21 @@ entities: pos: -1.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8477 components: - type: Transform pos: -0.5,-252.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8478 components: - type: Transform pos: -0.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8479 components: - type: Transform @@ -55657,7 +57111,7 @@ entities: pos: 12.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8480 components: - type: Transform @@ -55665,14 +57119,14 @@ entities: pos: -6.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8481 components: - type: Transform pos: -9.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8482 components: - type: Transform @@ -55680,7 +57134,7 @@ entities: pos: -12.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8483 components: - type: Transform @@ -55688,14 +57142,14 @@ entities: pos: 11.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8484 components: - type: Transform pos: -0.5,-253.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8485 components: - type: Transform @@ -55703,14 +57157,14 @@ entities: pos: 5.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8486 components: - type: Transform pos: -0.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8487 components: - type: Transform @@ -55718,14 +57172,14 @@ entities: pos: -2.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8488 components: - type: Transform pos: 0.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8489 components: - type: Transform @@ -55733,7 +57187,7 @@ entities: pos: 8.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8490 components: - type: Transform @@ -55741,28 +57195,28 @@ entities: pos: 7.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8491 components: - type: Transform pos: 0.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8492 components: - type: Transform pos: 16.5,-253.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8493 components: - type: Transform pos: 16.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8494 components: - type: Transform @@ -55770,35 +57224,35 @@ entities: pos: 3.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8495 components: - type: Transform pos: 0.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8496 components: - type: Transform pos: 0.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8497 components: - type: Transform pos: 0.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8498 components: - type: Transform pos: 16.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8499 components: - type: Transform @@ -55806,34 +57260,28 @@ entities: pos: -1.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8500 components: - type: Transform pos: 15.5,-252.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8501 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-253.5 - parent: 2 + color: '#0335FCFF' - uid: 8502 components: - type: Transform pos: -9.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8503 components: - type: Transform pos: -9.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8505 components: - type: Transform @@ -55841,7 +57289,7 @@ entities: pos: 0.5,-199.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8506 components: - type: Transform @@ -55854,7 +57302,7 @@ entities: pos: 16.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8508 components: - type: Transform @@ -55862,7 +57310,7 @@ entities: pos: -8.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8509 components: - type: Transform @@ -55870,7 +57318,7 @@ entities: pos: -5.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8510 components: - type: Transform @@ -55878,20 +57326,14 @@ entities: pos: -5.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-253.5 - parent: 2 + color: '#FF1212FF' - uid: 8512 components: - type: Transform pos: 17.5,-247.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8513 components: - type: Transform @@ -55899,7 +57341,7 @@ entities: pos: 17.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8514 components: - type: Transform @@ -55907,21 +57349,21 @@ entities: pos: -7.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8515 components: - type: Transform pos: 0.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8516 components: - type: Transform pos: 4.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8517 components: - type: Transform @@ -55929,7 +57371,7 @@ entities: pos: -0.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8518 components: - type: Transform @@ -55937,35 +57379,35 @@ entities: pos: 4.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8519 components: - type: Transform pos: 0.5,-263.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8520 components: - type: Transform pos: 15.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8521 components: - type: Transform pos: -0.5,-246.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8522 components: - type: Transform pos: 16.5,-255.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8523 components: - type: Transform @@ -55973,7 +57415,7 @@ entities: pos: 15.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8524 components: - type: Transform @@ -55981,7 +57423,7 @@ entities: pos: 14.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8525 components: - type: Transform @@ -55989,7 +57431,7 @@ entities: pos: 9.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8526 components: - type: Transform @@ -55997,7 +57439,7 @@ entities: pos: 6.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8527 components: - type: Transform @@ -56005,7 +57447,7 @@ entities: pos: 2.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8528 components: - type: Transform @@ -56013,7 +57455,7 @@ entities: pos: 2.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8529 components: - type: Transform @@ -56021,14 +57463,14 @@ entities: pos: -10.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8530 components: - type: Transform pos: 0.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8531 components: - type: Transform @@ -56036,14 +57478,14 @@ entities: pos: -9.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8532 components: - type: Transform pos: 15.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8533 components: - type: Transform @@ -56051,7 +57493,7 @@ entities: pos: 13.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8534 components: - type: Transform @@ -56059,7 +57501,7 @@ entities: pos: 12.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8535 components: - type: Transform @@ -56067,7 +57509,7 @@ entities: pos: -7.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8536 components: - type: Transform @@ -56075,21 +57517,21 @@ entities: pos: -8.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8537 components: - type: Transform pos: -9.5,-255.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8538 components: - type: Transform pos: -9.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8539 components: - type: Transform @@ -56097,14 +57539,14 @@ entities: pos: -10.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8540 components: - type: Transform pos: -9.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8541 components: - type: Transform @@ -56112,19 +57554,14 @@ entities: pos: -11.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8542 components: - type: Transform pos: 5.5,-177.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8543 - components: - - type: Transform - pos: -17.5,-256.5 - parent: 2 + color: '#0335FCFF' - uid: 8544 components: - type: Transform @@ -56132,18 +57569,12 @@ entities: pos: -3.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8545 components: - type: Transform pos: -15.5,-246.5 parent: 2 - - uid: 8546 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-260.5 - parent: 2 - uid: 8548 components: - type: Transform @@ -56157,14 +57588,14 @@ entities: pos: 10.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8550 components: - type: Transform pos: 16.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8551 components: - type: Transform @@ -56172,7 +57603,7 @@ entities: pos: 13.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8552 components: - type: Transform @@ -56180,42 +57611,42 @@ entities: pos: 14.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8553 components: - type: Transform pos: 17.5,-245.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8554 components: - type: Transform pos: 16.5,-245.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8555 components: - type: Transform pos: -0.5,-245.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8556 components: - type: Transform pos: -0.5,-247.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8557 components: - type: Transform pos: -0.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8558 components: - type: Transform @@ -56223,28 +57654,28 @@ entities: pos: 3.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8559 components: - type: Transform pos: 4.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8560 components: - type: Transform pos: -0.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8561 components: - type: Transform pos: 4.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8562 components: - type: Transform @@ -56252,7 +57683,7 @@ entities: pos: 2.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8563 components: - type: Transform @@ -56260,7 +57691,7 @@ entities: pos: 1.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8564 components: - type: Transform @@ -56268,21 +57699,21 @@ entities: pos: 3.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8565 components: - type: Transform pos: 15.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8566 components: - type: Transform pos: 15.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8567 components: - type: Transform @@ -56290,7 +57721,7 @@ entities: pos: -1.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8568 components: - type: Transform @@ -56298,14 +57729,14 @@ entities: pos: 0.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8569 components: - type: Transform pos: -0.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8570 components: - type: Transform @@ -56313,7 +57744,7 @@ entities: pos: -1.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8571 components: - type: Transform @@ -56321,7 +57752,7 @@ entities: pos: 0.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8572 components: - type: Transform @@ -56329,7 +57760,7 @@ entities: pos: 10.5,-255.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8573 components: - type: Transform @@ -56337,7 +57768,7 @@ entities: pos: 10.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8574 components: - type: Transform @@ -56345,14 +57776,14 @@ entities: pos: 8.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8575 components: - type: Transform pos: 15.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8576 components: - type: Transform @@ -56360,7 +57791,7 @@ entities: pos: 0.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8577 components: - type: Transform @@ -56368,7 +57799,7 @@ entities: pos: 16.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8578 components: - type: Transform @@ -56388,14 +57819,14 @@ entities: pos: 9.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8581 components: - type: Transform pos: -0.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8582 components: - type: Transform @@ -56403,7 +57834,7 @@ entities: pos: 1.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8583 components: - type: Transform @@ -56411,14 +57842,14 @@ entities: pos: 2.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8584 components: - type: Transform pos: 15.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8585 components: - type: Transform @@ -56426,33 +57857,28 @@ entities: pos: 10.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8586 components: - type: Transform pos: 15.5,-253.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8587 components: - type: Transform pos: 15.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8588 - components: - - type: Transform - pos: -17.5,-261.5 - parent: 2 + color: '#0335FCFF' - uid: 8589 components: - type: Transform pos: -0.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8590 components: - type: Transform @@ -56460,7 +57886,7 @@ entities: pos: 16.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8591 components: - type: Transform @@ -56468,7 +57894,7 @@ entities: pos: 16.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8592 components: - type: Transform @@ -56476,7 +57902,7 @@ entities: pos: -1.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8593 components: - type: Transform @@ -56484,7 +57910,7 @@ entities: pos: -0.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8594 components: - type: Transform @@ -56492,7 +57918,7 @@ entities: pos: 16.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8595 components: - type: Transform @@ -56500,14 +57926,14 @@ entities: pos: -2.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8596 components: - type: Transform pos: 0.5,-269.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8597 components: - type: Transform @@ -56515,14 +57941,14 @@ entities: pos: 16.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8598 components: - type: Transform pos: 1.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8599 components: - type: Transform @@ -56530,7 +57956,7 @@ entities: pos: 2.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8600 components: - type: Transform @@ -56538,7 +57964,7 @@ entities: pos: -0.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8601 components: - type: Transform @@ -56546,7 +57972,7 @@ entities: pos: -0.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8602 components: - type: Transform @@ -56554,7 +57980,7 @@ entities: pos: 0.5,-265.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8603 components: - type: Transform @@ -56562,7 +57988,7 @@ entities: pos: 0.5,-267.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8604 components: - type: Transform @@ -56583,7 +58009,7 @@ entities: pos: 0.5,-270.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8607 components: - type: Transform @@ -56591,33 +58017,21 @@ entities: pos: 18.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8608 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-252.5 - parent: 2 + color: '#0335FCFF' - uid: 8609 components: - type: Transform pos: 16.5,-247.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8610 components: - type: Transform pos: 16.5,-246.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8611 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-254.5 - parent: 2 + color: '#FF1212FF' - uid: 8612 components: - type: Transform @@ -56641,7 +58055,7 @@ entities: pos: -2.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8615 components: - type: Transform @@ -56649,7 +58063,7 @@ entities: pos: -3.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8616 components: - type: Transform @@ -56657,7 +58071,7 @@ entities: pos: 6.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8617 components: - type: Transform @@ -56701,12 +58115,7 @@ entities: pos: 7.5,-338.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8623 - components: - - type: Transform - pos: -17.5,-262.5 - parent: 2 + color: '#0335FCFF' - uid: 8624 components: - type: Transform @@ -56714,7 +58123,7 @@ entities: pos: 7.5,-339.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8625 components: - type: Transform @@ -56722,7 +58131,7 @@ entities: pos: 7.5,-337.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8626 components: - type: Transform @@ -56730,7 +58139,7 @@ entities: pos: 7.5,-341.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8627 components: - type: Transform @@ -56738,14 +58147,14 @@ entities: pos: 7.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8628 components: - type: Transform pos: 0.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8629 components: - type: Transform @@ -56753,7 +58162,7 @@ entities: pos: -6.5,-334.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8630 components: - type: Transform @@ -56769,7 +58178,7 @@ entities: pos: -6.5,-335.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8632 components: - type: Transform @@ -56777,7 +58186,7 @@ entities: pos: -0.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8633 components: - type: Transform @@ -56785,13 +58194,7 @@ entities: pos: -11.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8634 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-250.5 - parent: 2 + color: '#0335FCFF' - uid: 8635 components: - type: Transform @@ -56799,54 +58202,12 @@ entities: pos: -5.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-257.5 - parent: 2 - - uid: 8637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-255.5 - parent: 2 - - uid: 8638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-255.5 - parent: 2 - - uid: 8639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-255.5 - parent: 2 - - uid: 8640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-256.5 - parent: 2 - - uid: 8641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-257.5 - parent: 2 + color: '#0335FCFF' - uid: 8642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-257.5 - parent: 2 - - uid: 8643 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-261.5 + rot: 1.5707963267948966 rad + pos: -17.5,-252.5 parent: 2 - uid: 8644 components: @@ -56862,7 +58223,7 @@ entities: pos: 1.5,-242.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8646 components: - type: Transform @@ -56870,7 +58231,7 @@ entities: pos: 5.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8647 components: - type: Transform @@ -56902,7 +58263,7 @@ entities: pos: 0.5,-272.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8651 components: - type: Transform @@ -56910,7 +58271,7 @@ entities: pos: 0.5,-275.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8652 components: - type: Transform @@ -56918,7 +58279,7 @@ entities: pos: 0.5,-276.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8653 components: - type: Transform @@ -56926,7 +58287,7 @@ entities: pos: 0.5,-278.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8654 components: - type: Transform @@ -56934,7 +58295,7 @@ entities: pos: 0.5,-279.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8655 components: - type: Transform @@ -56942,7 +58303,7 @@ entities: pos: 0.5,-280.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8656 components: - type: Transform @@ -56950,7 +58311,7 @@ entities: pos: 0.5,-281.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8657 components: - type: Transform @@ -56958,7 +58319,7 @@ entities: pos: 0.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8658 components: - type: Transform @@ -56966,7 +58327,7 @@ entities: pos: 0.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8659 components: - type: Transform @@ -56974,7 +58335,7 @@ entities: pos: 0.5,-285.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8660 components: - type: Transform @@ -56982,7 +58343,7 @@ entities: pos: 0.5,-288.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8661 components: - type: Transform @@ -56990,7 +58351,7 @@ entities: pos: 0.5,-290.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8662 components: - type: Transform @@ -56998,7 +58359,7 @@ entities: pos: 0.5,-292.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8663 components: - type: Transform @@ -57006,7 +58367,7 @@ entities: pos: 0.5,-294.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8664 components: - type: Transform @@ -57022,7 +58383,7 @@ entities: pos: 0.5,-296.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8666 components: - type: Transform @@ -57158,7 +58519,7 @@ entities: pos: 1.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8684 components: - type: Transform @@ -57166,7 +58527,7 @@ entities: pos: 2.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8685 components: - type: Transform @@ -57174,7 +58535,7 @@ entities: pos: 3.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8686 components: - type: Transform @@ -57182,7 +58543,7 @@ entities: pos: 4.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8687 components: - type: Transform @@ -57190,7 +58551,7 @@ entities: pos: 5.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8688 components: - type: Transform @@ -57198,7 +58559,7 @@ entities: pos: 6.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8689 components: - type: Transform @@ -57302,7 +58663,7 @@ entities: pos: 7.5,-342.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8702 components: - type: Transform @@ -57310,7 +58671,7 @@ entities: pos: 1.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8703 components: - type: Transform @@ -57318,7 +58679,7 @@ entities: pos: 2.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8704 components: - type: Transform @@ -57326,7 +58687,7 @@ entities: pos: 3.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8705 components: - type: Transform @@ -57334,7 +58695,7 @@ entities: pos: 4.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8706 components: - type: Transform @@ -57342,7 +58703,7 @@ entities: pos: -0.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8707 components: - type: Transform @@ -57350,7 +58711,7 @@ entities: pos: 1.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8708 components: - type: Transform @@ -57358,7 +58719,7 @@ entities: pos: 2.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8709 components: - type: Transform @@ -57366,7 +58727,7 @@ entities: pos: 3.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8710 components: - type: Transform @@ -57374,7 +58735,7 @@ entities: pos: 4.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8711 components: - type: Transform @@ -57412,7 +58773,7 @@ entities: pos: -0.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8716 components: - type: Transform @@ -57420,7 +58781,7 @@ entities: pos: -1.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8717 components: - type: Transform @@ -57428,7 +58789,7 @@ entities: pos: -2.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8718 components: - type: Transform @@ -57436,7 +58797,7 @@ entities: pos: -3.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8719 components: - type: Transform @@ -57444,7 +58805,7 @@ entities: pos: -4.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8720 components: - type: Transform @@ -57452,7 +58813,7 @@ entities: pos: -3.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8721 components: - type: Transform @@ -57460,7 +58821,7 @@ entities: pos: -4.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8722 components: - type: Transform @@ -57475,7 +58836,7 @@ entities: pos: -2.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8724 components: - type: Transform @@ -57491,7 +58852,7 @@ entities: pos: -1.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8726 components: - type: Transform @@ -57499,7 +58860,7 @@ entities: pos: -6.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8727 components: - type: Transform @@ -57522,14 +58883,14 @@ entities: pos: 0.5,-320.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8730 components: - type: Transform pos: 0.5,-319.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8731 components: - type: Transform @@ -57553,7 +58914,7 @@ entities: pos: -4.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8734 components: - type: Transform @@ -57561,7 +58922,7 @@ entities: pos: -2.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8735 components: - type: Transform @@ -57569,7 +58930,7 @@ entities: pos: -1.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8736 components: - type: Transform @@ -57593,7 +58954,7 @@ entities: pos: -0.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8739 components: - type: Transform @@ -57609,7 +58970,7 @@ entities: pos: 0.5,-316.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8741 components: - type: Transform @@ -57617,7 +58978,7 @@ entities: pos: 0.5,-317.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8742 components: - type: Transform @@ -57696,7 +59057,7 @@ entities: pos: 0.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8752 components: - type: Transform @@ -57704,7 +59065,7 @@ entities: pos: 0.5,-309.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8753 components: - type: Transform @@ -57712,7 +59073,7 @@ entities: pos: 0.5,-310.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8754 components: - type: Transform @@ -57720,7 +59081,7 @@ entities: pos: 0.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8755 components: - type: Transform @@ -57728,7 +59089,7 @@ entities: pos: 0.5,-312.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8756 components: - type: Transform @@ -57736,7 +59097,7 @@ entities: pos: 0.5,-313.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8757 components: - type: Transform @@ -57744,7 +59105,7 @@ entities: pos: 0.5,-314.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8758 components: - type: Transform @@ -57799,7 +59160,7 @@ entities: pos: -0.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8765 components: - type: Transform @@ -57807,7 +59168,7 @@ entities: pos: -1.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8766 components: - type: Transform @@ -57815,7 +59176,7 @@ entities: pos: -2.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8767 components: - type: Transform @@ -57823,7 +59184,7 @@ entities: pos: -3.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8768 components: - type: Transform @@ -57831,7 +59192,7 @@ entities: pos: -4.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8769 components: - type: Transform @@ -57839,7 +59200,7 @@ entities: pos: -5.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8770 components: - type: Transform @@ -57847,7 +59208,7 @@ entities: pos: 1.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8771 components: - type: Transform @@ -57879,7 +59240,7 @@ entities: pos: 2.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8775 components: - type: Transform @@ -57887,7 +59248,7 @@ entities: pos: 3.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8776 components: - type: Transform @@ -57919,7 +59280,7 @@ entities: pos: 4.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8780 components: - type: Transform @@ -57927,7 +59288,7 @@ entities: pos: 5.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8781 components: - type: Transform @@ -57935,7 +59296,7 @@ entities: pos: 8.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8782 components: - type: Transform @@ -57967,7 +59328,7 @@ entities: pos: 6.5,-305.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8786 components: - type: Transform @@ -57996,7 +59357,7 @@ entities: pos: 0.5,-305.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8790 components: - type: Transform @@ -58027,49 +59388,49 @@ entities: pos: 10.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8794 components: - type: Transform pos: 10.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8795 components: - type: Transform pos: 10.5,-309.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8796 components: - type: Transform pos: 10.5,-310.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8797 components: - type: Transform pos: 7.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8798 components: - type: Transform pos: 7.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8799 components: - type: Transform pos: 7.5,-309.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8800 components: - type: Transform @@ -58127,7 +59488,7 @@ entities: pos: 7.5,-310.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8808 components: - type: Transform @@ -58142,7 +59503,7 @@ entities: pos: 9.5,-305.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8810 components: - type: Transform @@ -58150,7 +59511,7 @@ entities: pos: -1.5,-303.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8811 components: - type: Transform @@ -58166,7 +59527,7 @@ entities: pos: -0.5,-303.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8813 components: - type: Transform @@ -58174,7 +59535,7 @@ entities: pos: 0.5,-304.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8814 components: - type: Transform @@ -58198,7 +59559,7 @@ entities: pos: 0.5,-302.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8817 components: - type: Transform @@ -58206,7 +59567,7 @@ entities: pos: 0.5,-301.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8818 components: - type: Transform @@ -58214,7 +59575,7 @@ entities: pos: 0.5,-300.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8819 components: - type: Transform @@ -58222,7 +59583,7 @@ entities: pos: 0.5,-299.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8820 components: - type: Transform @@ -58230,7 +59591,7 @@ entities: pos: 0.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8821 components: - type: Transform @@ -58293,21 +59654,21 @@ entities: pos: 0.5,-322.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8829 components: - type: Transform pos: 0.5,-324.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8830 components: - type: Transform pos: 0.5,-326.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8831 components: - type: Transform @@ -58322,7 +59683,7 @@ entities: pos: -0.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8833 components: - type: Transform @@ -58330,7 +59691,7 @@ entities: pos: -1.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8834 components: - type: Transform @@ -58338,7 +59699,7 @@ entities: pos: -2.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8835 components: - type: Transform @@ -58409,133 +59770,133 @@ entities: pos: 0.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8844 components: - type: Transform pos: 0.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8845 components: - type: Transform pos: 0.5,-334.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8846 components: - type: Transform pos: 0.5,-335.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8847 components: - type: Transform pos: 0.5,-336.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8848 components: - type: Transform pos: 0.5,-337.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8849 components: - type: Transform pos: 0.5,-338.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8850 components: - type: Transform pos: 0.5,-339.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8851 components: - type: Transform pos: 0.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8852 components: - type: Transform pos: 0.5,-341.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8853 components: - type: Transform pos: 0.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8854 components: - type: Transform pos: 0.5,-345.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8855 components: - type: Transform pos: 0.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8856 components: - type: Transform pos: 0.5,-349.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8857 components: - type: Transform pos: 0.5,-350.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8858 components: - type: Transform pos: 0.5,-351.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8859 components: - type: Transform pos: 0.5,-352.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8860 components: - type: Transform pos: 0.5,-353.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8861 components: - type: Transform pos: 0.5,-355.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8862 components: - type: Transform @@ -58911,7 +60272,7 @@ entities: pos: -0.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8911 components: - type: Transform @@ -58919,7 +60280,7 @@ entities: pos: -1.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8912 components: - type: Transform @@ -58927,7 +60288,7 @@ entities: pos: -2.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8913 components: - type: Transform @@ -58935,7 +60296,7 @@ entities: pos: -3.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8914 components: - type: Transform @@ -58943,7 +60304,7 @@ entities: pos: 5.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8915 components: - type: Transform @@ -58951,63 +60312,63 @@ entities: pos: 6.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8916 components: - type: Transform pos: -6.5,-329.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8917 components: - type: Transform pos: -6.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8918 components: - type: Transform pos: -6.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8919 components: - type: Transform pos: -6.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8920 components: - type: Transform pos: -6.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8921 components: - type: Transform pos: 7.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8922 components: - type: Transform pos: 7.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8923 components: - type: Transform pos: 7.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8924 components: - type: Transform @@ -59015,7 +60376,7 @@ entities: pos: 7.5,-334.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8925 components: - type: Transform @@ -59023,7 +60384,7 @@ entities: pos: -6.5,-336.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8926 components: - type: Transform @@ -59031,7 +60392,7 @@ entities: pos: -6.5,-337.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8927 components: - type: Transform @@ -59039,7 +60400,7 @@ entities: pos: -6.5,-338.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8928 components: - type: Transform @@ -59047,7 +60408,7 @@ entities: pos: -6.5,-339.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8929 components: - type: Transform @@ -59055,7 +60416,7 @@ entities: pos: -6.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8930 components: - type: Transform @@ -59063,7 +60424,7 @@ entities: pos: -6.5,-341.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8931 components: - type: Transform @@ -59071,7 +60432,7 @@ entities: pos: -6.5,-342.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8932 components: - type: Transform @@ -59079,7 +60440,7 @@ entities: pos: -6.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8933 components: - type: Transform @@ -59087,7 +60448,7 @@ entities: pos: -6.5,-344.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8934 components: - type: Transform @@ -59095,7 +60456,7 @@ entities: pos: 7.5,-335.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8935 components: - type: Transform @@ -59103,7 +60464,7 @@ entities: pos: 7.5,-344.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8936 components: - type: Transform @@ -59111,7 +60472,7 @@ entities: pos: 7.5,-345.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8937 components: - type: Transform @@ -59119,7 +60480,7 @@ entities: pos: 7.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8938 components: - type: Transform @@ -59127,7 +60488,7 @@ entities: pos: 1.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8939 components: - type: Transform @@ -59135,7 +60496,7 @@ entities: pos: 2.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8940 components: - type: Transform @@ -59143,7 +60504,7 @@ entities: pos: 3.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8941 components: - type: Transform @@ -59151,7 +60512,7 @@ entities: pos: 5.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8942 components: - type: Transform @@ -59159,7 +60520,7 @@ entities: pos: 4.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8943 components: - type: Transform @@ -59167,7 +60528,7 @@ entities: pos: -1.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8944 components: - type: Transform @@ -59175,7 +60536,7 @@ entities: pos: -3.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8945 components: - type: Transform @@ -59183,7 +60544,7 @@ entities: pos: -4.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8946 components: - type: Transform @@ -59191,7 +60552,7 @@ entities: pos: -5.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8947 components: - type: Transform @@ -59199,7 +60560,7 @@ entities: pos: 6.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8948 components: - type: Transform @@ -59207,14 +60568,14 @@ entities: pos: 5.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8949 components: - type: Transform pos: 7.5,-329.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8950 components: - type: Transform @@ -59222,7 +60583,7 @@ entities: pos: 3.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8951 components: - type: Transform @@ -59230,7 +60591,7 @@ entities: pos: 2.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8952 components: - type: Transform @@ -59238,7 +60599,7 @@ entities: pos: 1.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8953 components: - type: Transform @@ -59267,7 +60628,7 @@ entities: pos: -0.5,-356.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8957 components: - type: Transform @@ -59275,7 +60636,7 @@ entities: pos: 3.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8958 components: - type: Transform @@ -59283,7 +60644,7 @@ entities: pos: 2.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8959 components: - type: Transform @@ -59297,7 +60658,7 @@ entities: pos: 0.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8961 components: - type: Transform @@ -59321,7 +60682,7 @@ entities: pos: -1.5,-356.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8964 components: - type: Transform @@ -59329,7 +60690,7 @@ entities: pos: -2.5,-356.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8965 components: - type: Transform @@ -59360,42 +60721,42 @@ entities: pos: -3.5,-364.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8969 components: - type: Transform pos: -3.5,-365.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8970 components: - type: Transform pos: -3.5,-367.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8971 components: - type: Transform pos: -3.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8972 components: - type: Transform pos: 4.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8973 components: - type: Transform pos: 4.5,-367.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8974 components: - type: Transform @@ -59403,7 +60764,7 @@ entities: pos: 3.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8975 components: - type: Transform @@ -59411,7 +60772,7 @@ entities: pos: 2.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8976 components: - type: Transform @@ -59419,7 +60780,7 @@ entities: pos: 0.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8977 components: - type: Transform @@ -59427,7 +60788,7 @@ entities: pos: -0.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8978 components: - type: Transform @@ -59435,7 +60796,7 @@ entities: pos: -2.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8979 components: - type: Transform @@ -59443,7 +60804,7 @@ entities: pos: -1.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8980 components: - type: Transform @@ -59451,7 +60812,7 @@ entities: pos: 4.5,-365.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8981 components: - type: Transform @@ -59459,7 +60820,7 @@ entities: pos: 4.5,-364.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8982 components: - type: Transform @@ -59467,7 +60828,7 @@ entities: pos: 4.5,-362.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8983 components: - type: Transform @@ -59475,7 +60836,7 @@ entities: pos: 4.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8984 components: - type: Transform @@ -59483,7 +60844,7 @@ entities: pos: 5.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8985 components: - type: Transform @@ -59491,7 +60852,7 @@ entities: pos: 5.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8986 components: - type: Transform @@ -59499,7 +60860,7 @@ entities: pos: 5.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8987 components: - type: Transform @@ -59507,7 +60868,7 @@ entities: pos: -4.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8988 components: - type: Transform @@ -59515,7 +60876,7 @@ entities: pos: -4.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8989 components: - type: Transform @@ -59523,7 +60884,7 @@ entities: pos: 3.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8990 components: - type: Transform @@ -59531,7 +60892,7 @@ entities: pos: 2.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8991 components: - type: Transform @@ -59827,7 +61188,7 @@ entities: pos: 1.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9029 components: - type: Transform @@ -59835,7 +61196,7 @@ entities: pos: 2.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9030 components: - type: Transform @@ -59843,7 +61204,7 @@ entities: pos: 3.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9031 components: - type: Transform @@ -59851,7 +61212,7 @@ entities: pos: 4.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9032 components: - type: Transform @@ -59859,7 +61220,7 @@ entities: pos: 5.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9033 components: - type: Transform @@ -59867,7 +61228,7 @@ entities: pos: 6.5,-89.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9034 components: - type: Transform @@ -59907,7 +61268,7 @@ entities: pos: 1.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9039 components: - type: Transform @@ -59915,7 +61276,7 @@ entities: pos: 2.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9040 components: - type: Transform @@ -59923,7 +61284,7 @@ entities: pos: 3.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9041 components: - type: Transform @@ -59931,7 +61292,7 @@ entities: pos: 5.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9042 components: - type: Transform @@ -59939,13 +61300,7 @@ entities: pos: 4.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-263.5 - parent: 2 + color: '#0335FCFF' - uid: 9044 components: - type: Transform @@ -59954,12 +61309,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 9045 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-263.5 - parent: 2 - uid: 9046 components: - type: Transform @@ -59984,27 +61333,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 9049 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-259.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9050 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-263.5 - parent: 2 - uid: 9051 components: - type: Transform pos: 16.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9052 components: - type: Transform @@ -60021,18 +61356,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9054 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-261.5 - parent: 2 - - uid: 9055 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-251.5 - parent: 2 - uid: 9056 components: - type: Transform @@ -60040,12 +61363,7 @@ entities: pos: -12.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9057 - components: - - type: Transform - pos: -17.5,-252.5 - parent: 2 + color: '#0335FCFF' - uid: 9058 components: - type: Transform @@ -60060,7 +61378,7 @@ entities: pos: -0.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9060 components: - type: Transform @@ -60068,7 +61386,7 @@ entities: pos: -1.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9061 components: - type: Transform @@ -60076,7 +61394,7 @@ entities: pos: -2.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9062 components: - type: Transform @@ -60084,7 +61402,7 @@ entities: pos: -3.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9063 components: - type: Transform @@ -60092,7 +61410,7 @@ entities: pos: 1.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9064 components: - type: Transform @@ -60100,7 +61418,7 @@ entities: pos: 2.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9065 components: - type: Transform @@ -60108,7 +61426,7 @@ entities: pos: 3.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9066 components: - type: Transform @@ -60116,7 +61434,7 @@ entities: pos: 4.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9067 components: - type: Transform @@ -60124,7 +61442,7 @@ entities: pos: -4.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9068 components: - type: Transform @@ -60132,7 +61450,7 @@ entities: pos: -4.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9069 components: - type: Transform @@ -60140,7 +61458,7 @@ entities: pos: -4.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9070 components: - type: Transform @@ -60148,7 +61466,7 @@ entities: pos: -4.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9071 components: - type: Transform @@ -60156,7 +61474,7 @@ entities: pos: 5.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9072 components: - type: Transform @@ -60164,7 +61482,7 @@ entities: pos: 5.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9073 components: - type: Transform @@ -60172,7 +61490,7 @@ entities: pos: 5.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9074 components: - type: Transform @@ -60180,7 +61498,7 @@ entities: pos: 5.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9075 components: - type: Transform @@ -60188,7 +61506,7 @@ entities: pos: 5.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9076 components: - type: Transform @@ -60196,7 +61514,7 @@ entities: pos: 5.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9077 components: - type: Transform @@ -60204,7 +61522,7 @@ entities: pos: 5.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9078 components: - type: Transform @@ -60212,7 +61530,7 @@ entities: pos: 5.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9079 components: - type: Transform @@ -60220,7 +61538,7 @@ entities: pos: 5.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9080 components: - type: Transform @@ -60228,7 +61546,7 @@ entities: pos: 5.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9081 components: - type: Transform @@ -60236,7 +61554,7 @@ entities: pos: 5.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9082 components: - type: Transform @@ -60244,7 +61562,7 @@ entities: pos: 5.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9083 components: - type: Transform @@ -60252,7 +61570,7 @@ entities: pos: 5.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9084 components: - type: Transform @@ -60260,7 +61578,7 @@ entities: pos: 5.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9085 components: - type: Transform @@ -60268,7 +61586,7 @@ entities: pos: -4.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9086 components: - type: Transform @@ -60276,7 +61594,7 @@ entities: pos: -4.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9087 components: - type: Transform @@ -60284,7 +61602,7 @@ entities: pos: -4.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9088 components: - type: Transform @@ -60292,7 +61610,7 @@ entities: pos: -4.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9089 components: - type: Transform @@ -60300,7 +61618,7 @@ entities: pos: -4.5,-105.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9090 components: - type: Transform @@ -60308,7 +61626,7 @@ entities: pos: -4.5,-104.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9091 components: - type: Transform @@ -60367,14 +61685,14 @@ entities: pos: -4.5,-133.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9098 components: - type: Transform pos: -4.5,-131.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9099 components: - type: Transform @@ -60438,35 +61756,35 @@ entities: pos: -3.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9107 components: - type: Transform pos: -4.5,-188.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9108 components: - type: Transform pos: -4.5,-187.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9109 components: - type: Transform pos: -4.5,-186.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9110 components: - type: Transform pos: -4.5,-185.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9111 components: - type: Transform @@ -60482,7 +61800,7 @@ entities: pos: 7.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9113 components: - type: Transform @@ -60490,7 +61808,7 @@ entities: pos: 6.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9114 components: - type: Transform @@ -60498,7 +61816,7 @@ entities: pos: -4.5,-158.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9115 components: - type: Transform @@ -60506,7 +61824,7 @@ entities: pos: -4.5,-159.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9116 components: - type: Transform @@ -60514,7 +61832,7 @@ entities: pos: -4.5,-160.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9117 components: - type: Transform @@ -60522,7 +61840,7 @@ entities: pos: -4.5,-161.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9118 components: - type: Transform @@ -60530,7 +61848,7 @@ entities: pos: -4.5,-162.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9119 components: - type: Transform @@ -60538,7 +61856,7 @@ entities: pos: -2.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9120 components: - type: Transform @@ -60546,7 +61864,7 @@ entities: pos: -3.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9121 components: - type: Transform @@ -60554,7 +61872,7 @@ entities: pos: 5.5,-156.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9122 components: - type: Transform @@ -60562,7 +61880,7 @@ entities: pos: 5.5,-155.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9123 components: - type: Transform @@ -60570,7 +61888,7 @@ entities: pos: 5.5,-154.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9124 components: - type: Transform @@ -60578,7 +61896,7 @@ entities: pos: 5.5,-153.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9125 components: - type: Transform @@ -60586,56 +61904,56 @@ entities: pos: 4.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9126 components: - type: Transform pos: 5.5,-272.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9127 components: - type: Transform pos: 5.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9128 components: - type: Transform pos: 5.5,-270.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9129 components: - type: Transform pos: 5.5,-269.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9130 components: - type: Transform pos: 5.5,-268.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9131 components: - type: Transform pos: 5.5,-267.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9132 components: - type: Transform pos: 5.5,-266.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9133 components: - type: Transform @@ -60643,7 +61961,7 @@ entities: pos: 1.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9134 components: - type: Transform @@ -60651,7 +61969,7 @@ entities: pos: 2.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9135 components: - type: Transform @@ -60659,7 +61977,7 @@ entities: pos: 3.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9136 components: - type: Transform @@ -60667,35 +61985,35 @@ entities: pos: 4.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9137 components: - type: Transform pos: 5.5,-288.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9138 components: - type: Transform pos: 5.5,-289.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9139 components: - type: Transform pos: 5.5,-290.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9140 components: - type: Transform pos: 5.5,-291.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9141 components: - type: Transform @@ -60703,7 +62021,7 @@ entities: pos: -4.5,-326.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9142 components: - type: Transform @@ -60711,7 +62029,7 @@ entities: pos: -4.5,-325.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9143 components: - type: Transform @@ -60757,21 +62075,21 @@ entities: pos: -4.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9149 components: - type: Transform pos: -3.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9150 components: - type: Transform pos: -3.5,-362.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9151 components: - type: Transform @@ -60779,7 +62097,7 @@ entities: pos: -12.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9152 components: - type: Transform @@ -60787,7 +62105,7 @@ entities: pos: -10.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9153 components: - type: Transform @@ -60795,7 +62113,7 @@ entities: pos: -11.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9154 components: - type: Transform @@ -60803,7 +62121,7 @@ entities: pos: -12.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9155 components: - type: Transform @@ -60811,7 +62129,7 @@ entities: pos: -11.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9156 components: - type: Transform @@ -60819,7 +62137,7 @@ entities: pos: -10.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9157 components: - type: Transform @@ -60827,7 +62145,7 @@ entities: pos: -9.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9158 components: - type: Transform @@ -60835,7 +62153,7 @@ entities: pos: -8.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9159 components: - type: Transform @@ -60843,7 +62161,7 @@ entities: pos: -7.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9160 components: - type: Transform @@ -60851,7 +62169,7 @@ entities: pos: -6.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9161 components: - type: Transform @@ -60859,7 +62177,7 @@ entities: pos: -4.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9162 components: - type: Transform @@ -60867,7 +62185,7 @@ entities: pos: -3.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9163 components: - type: Transform @@ -60875,16 +62193,213 @@ entities: pos: -2.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9220 components: - type: Transform pos: 0.5,-169.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 11318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-262.5 + parent: 2 + - uid: 11327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-254.5 + parent: 2 + - uid: 11383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-260.5 + parent: 2 + - uid: 11450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-253.5 + parent: 2 + - uid: 11467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-259.5 + parent: 2 + - uid: 11588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-256.5 + parent: 2 + - uid: 11590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-255.5 + parent: 2 + - uid: 11600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-258.5 + parent: 2 + - uid: 11601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-257.5 + parent: 2 + - uid: 13214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-258.5 + parent: 2 + - uid: 13773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-252.5 + parent: 2 + - uid: 13774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-255.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-253.5 + parent: 2 + - uid: 13824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-256.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-259.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-257.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-254.5 + parent: 2 + - uid: 13946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-254.5 + parent: 2 + - uid: 14851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-258.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-265.5 + parent: 2 + - uid: 17016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-258.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 17017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-261.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 17018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-262.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 17019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-263.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 17064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-269.5 + parent: 2 + - uid: 17065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-267.5 + parent: 2 - proto: GasPipeTJunction entities: + - uid: 3043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-250.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3987 + components: + - type: Transform + pos: -16.5,-250.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-259.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 7620 components: - type: Transform @@ -60898,7 +62413,7 @@ entities: pos: -6.5,-112.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8115 components: - type: Transform @@ -60906,7 +62421,7 @@ entities: pos: -6.5,-115.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8118 components: - type: Transform @@ -60914,7 +62429,7 @@ entities: pos: -6.5,-118.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8121 components: - type: Transform @@ -60922,14 +62437,21 @@ entities: pos: -6.5,-121.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 8189 + components: + - type: Transform + pos: -13.5,-260.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 9164 components: - type: Transform pos: 1.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9165 components: - type: Transform @@ -60961,7 +62483,7 @@ entities: pos: 0.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9169 components: - type: Transform @@ -60992,7 +62514,7 @@ entities: pos: 0.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9173 components: - type: Transform @@ -61000,7 +62522,7 @@ entities: pos: 0.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9174 components: - type: Transform @@ -61008,14 +62530,14 @@ entities: pos: 1.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9175 components: - type: Transform pos: -0.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9176 components: - type: Transform @@ -61031,7 +62553,7 @@ entities: pos: 0.5,-318.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9178 components: - type: Transform @@ -61039,7 +62561,7 @@ entities: pos: -4.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9179 components: - type: Transform @@ -61055,7 +62577,7 @@ entities: pos: 0.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9181 components: - type: Transform @@ -61069,7 +62591,7 @@ entities: pos: 0.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9183 components: - type: Transform @@ -61077,7 +62599,7 @@ entities: pos: 0.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9184 components: - type: Transform @@ -61085,7 +62607,7 @@ entities: pos: 18.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9185 components: - type: Transform @@ -61108,7 +62630,7 @@ entities: pos: 0.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9188 components: - type: Transform @@ -61116,7 +62638,7 @@ entities: pos: -4.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9189 components: - type: Transform @@ -61140,7 +62662,7 @@ entities: pos: -2.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9192 components: - type: Transform @@ -61171,7 +62693,7 @@ entities: pos: 1.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9196 components: - type: Transform @@ -61211,7 +62733,7 @@ entities: pos: 0.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9201 components: - type: Transform @@ -61234,7 +62756,7 @@ entities: pos: 0.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9204 components: - type: Transform @@ -61242,7 +62764,7 @@ entities: pos: 0.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9205 components: - type: Transform @@ -61250,7 +62772,7 @@ entities: pos: 1.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9206 components: - type: Transform @@ -61266,7 +62788,7 @@ entities: pos: 0.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9208 components: - type: Transform @@ -61274,7 +62796,7 @@ entities: pos: 4.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9209 components: - type: Transform @@ -61282,7 +62804,7 @@ entities: pos: 0.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9210 components: - type: Transform @@ -61290,7 +62812,7 @@ entities: pos: 0.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9211 components: - type: Transform @@ -61298,7 +62820,7 @@ entities: pos: 0.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9212 components: - type: Transform @@ -61321,7 +62843,7 @@ entities: pos: -4.5,-132.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9215 components: - type: Transform @@ -61336,7 +62858,7 @@ entities: pos: 0.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9217 components: - type: Transform @@ -61344,7 +62866,7 @@ entities: pos: 0.5,-289.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9219 components: - type: Transform @@ -61366,7 +62888,7 @@ entities: pos: 0.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9224 components: - type: Transform @@ -61374,7 +62896,7 @@ entities: pos: 0.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9225 components: - type: Transform @@ -61398,7 +62920,7 @@ entities: pos: 0.5,-167.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9228 components: - type: Transform @@ -61421,7 +62943,7 @@ entities: pos: 0.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9231 components: - type: Transform @@ -61460,7 +62982,7 @@ entities: pos: 0.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9236 components: - type: Transform @@ -61468,7 +62990,7 @@ entities: pos: 0.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9237 components: - type: Transform @@ -61476,7 +62998,7 @@ entities: pos: 0.5,-102.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9238 components: - type: Transform @@ -61484,7 +63006,7 @@ entities: pos: 0.5,-104.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9239 components: - type: Transform @@ -61492,7 +63014,7 @@ entities: pos: 0.5,-131.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9240 components: - type: Transform @@ -61500,7 +63022,7 @@ entities: pos: 0.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9241 components: - type: Transform @@ -61508,7 +63030,7 @@ entities: pos: 0.5,-129.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9242 components: - type: Transform @@ -61516,7 +63038,7 @@ entities: pos: 0.5,-100.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9243 components: - type: Transform @@ -61524,7 +63046,7 @@ entities: pos: -3.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9244 components: - type: Transform @@ -61532,7 +63054,7 @@ entities: pos: 0.5,-106.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9245 components: - type: Transform @@ -61540,14 +63062,14 @@ entities: pos: 0.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9246 components: - type: Transform pos: 1.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9247 components: - type: Transform @@ -61555,7 +63077,7 @@ entities: pos: 0.5,-125.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9248 components: - type: Transform @@ -61563,7 +63085,7 @@ entities: pos: 1.5,-120.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9249 components: - type: Transform @@ -61571,7 +63093,7 @@ entities: pos: 0.5,-127.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9250 components: - type: Transform @@ -61579,7 +63101,7 @@ entities: pos: 0.5,-158.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9251 components: - type: Transform @@ -61587,7 +63109,7 @@ entities: pos: 0.5,-156.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9252 components: - type: Transform @@ -61595,7 +63117,7 @@ entities: pos: 0.5,-133.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9253 components: - type: Transform @@ -61603,28 +63125,28 @@ entities: pos: -3.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9254 components: - type: Transform pos: -6.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9255 components: - type: Transform pos: -0.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9256 components: - type: Transform pos: 3.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9257 components: - type: Transform @@ -61632,7 +63154,7 @@ entities: pos: 0.5,-183.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9258 components: - type: Transform @@ -61719,7 +63241,7 @@ entities: pos: 0.5,-185.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9269 components: - type: Transform @@ -61735,7 +63257,7 @@ entities: pos: 0.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9271 components: - type: Transform @@ -61743,7 +63265,7 @@ entities: pos: 0.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9272 components: - type: Transform @@ -61751,7 +63273,7 @@ entities: pos: 0.5,-146.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9273 components: - type: Transform @@ -61759,7 +63281,7 @@ entities: pos: 0.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9274 components: - type: Transform @@ -61767,7 +63289,7 @@ entities: pos: 0.5,-160.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9275 components: - type: Transform @@ -61775,7 +63297,7 @@ entities: pos: 0.5,-221.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9276 components: - type: Transform @@ -61821,7 +63343,7 @@ entities: pos: 0.5,-194.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9282 components: - type: Transform @@ -61829,7 +63351,7 @@ entities: pos: 0.5,-212.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9283 components: - type: Transform @@ -61837,7 +63359,7 @@ entities: pos: -4.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9284 components: - type: Transform @@ -61853,7 +63375,7 @@ entities: pos: 0.5,-154.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9286 components: - type: Transform @@ -61861,7 +63383,7 @@ entities: pos: 0.5,-166.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9287 components: - type: Transform @@ -61869,7 +63391,7 @@ entities: pos: 0.5,-210.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9288 components: - type: Transform @@ -61877,7 +63399,7 @@ entities: pos: 0.5,-227.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9289 components: - type: Transform @@ -61885,7 +63407,7 @@ entities: pos: 0.5,-187.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9290 components: - type: Transform @@ -61893,7 +63415,7 @@ entities: pos: 0.5,-181.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9291 components: - type: Transform @@ -61924,7 +63446,7 @@ entities: pos: 0.5,-237.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9295 components: - type: Transform @@ -61939,7 +63461,7 @@ entities: pos: 0.5,-239.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9297 components: - type: Transform @@ -61962,7 +63484,7 @@ entities: pos: 0.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9300 components: - type: Transform @@ -61977,7 +63499,7 @@ entities: pos: 3.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9302 components: - type: Transform @@ -61985,7 +63507,7 @@ entities: pos: 6.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9303 components: - type: Transform @@ -62001,7 +63523,7 @@ entities: pos: 0.5,-214.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9305 components: - type: Transform @@ -62016,7 +63538,7 @@ entities: pos: 0.5,-274.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9307 components: - type: Transform @@ -62024,14 +63546,14 @@ entities: pos: 0.5,-291.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9308 components: - type: Transform pos: -4.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9309 components: - type: Transform @@ -62039,7 +63561,7 @@ entities: pos: 0.5,-208.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9310 components: - type: Transform @@ -62047,7 +63569,7 @@ entities: pos: 0.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9311 components: - type: Transform @@ -62055,7 +63577,7 @@ entities: pos: 0.5,-293.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9312 components: - type: Transform @@ -62071,7 +63593,7 @@ entities: pos: 0.5,-241.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9314 components: - type: Transform @@ -62079,7 +63601,7 @@ entities: pos: 0.5,-235.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9315 components: - type: Transform @@ -62095,7 +63617,7 @@ entities: pos: 0.5,-323.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9317 components: - type: Transform @@ -62103,7 +63625,7 @@ entities: pos: 0.5,-325.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9318 components: - type: Transform @@ -62111,7 +63633,7 @@ entities: pos: 0.5,-342.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9319 components: - type: Transform @@ -62127,7 +63649,7 @@ entities: pos: 0.5,-344.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9321 components: - type: Transform @@ -62144,12 +63666,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 9323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-259.5 - parent: 2 - uid: 9324 components: - type: Transform @@ -62163,7 +63679,7 @@ entities: pos: -4.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9326 components: - type: Transform @@ -62177,7 +63693,7 @@ entities: pos: 0.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9328 components: - type: Transform @@ -62193,35 +63709,35 @@ entities: pos: 5.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9330 components: - type: Transform pos: -0.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9331 components: - type: Transform pos: 4.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9332 components: - type: Transform pos: 4.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9333 components: - type: Transform pos: -2.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9334 components: - type: Transform @@ -62229,7 +63745,7 @@ entities: pos: -3.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9335 components: - type: Transform @@ -62242,7 +63758,7 @@ entities: pos: -1.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9337 components: - type: Transform @@ -62250,14 +63766,14 @@ entities: pos: -0.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9338 components: - type: Transform pos: 5.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9339 components: - type: Transform @@ -62265,14 +63781,14 @@ entities: pos: 0.5,-262.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9340 components: - type: Transform pos: 15.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9341 components: - type: Transform @@ -62280,7 +63796,7 @@ entities: pos: 10.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9342 components: - type: Transform @@ -62288,7 +63804,7 @@ entities: pos: 16.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9343 components: - type: Transform @@ -62296,7 +63812,7 @@ entities: pos: -0.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9344 components: - type: Transform @@ -62304,7 +63820,7 @@ entities: pos: 16.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9345 components: - type: Transform @@ -62312,7 +63828,7 @@ entities: pos: 0.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9346 components: - type: Transform @@ -62328,7 +63844,7 @@ entities: pos: 1.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9348 components: - type: Transform @@ -62343,7 +63859,7 @@ entities: pos: 0.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9350 components: - type: Transform @@ -62357,7 +63873,7 @@ entities: pos: -0.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9352 components: - type: Transform @@ -62365,7 +63881,7 @@ entities: pos: 0.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9353 components: - type: Transform @@ -62373,7 +63889,7 @@ entities: pos: 0.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9354 components: - type: Transform @@ -62381,7 +63897,7 @@ entities: pos: 0.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9355 components: - type: Transform @@ -62389,7 +63905,7 @@ entities: pos: 0.5,-268.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9356 components: - type: Transform @@ -62397,7 +63913,7 @@ entities: pos: 4.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9357 components: - type: Transform @@ -62405,7 +63921,7 @@ entities: pos: -3.5,-107.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9358 components: - type: Transform @@ -62428,7 +63944,7 @@ entities: pos: 0.5,-136.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9361 components: - type: Transform @@ -62436,7 +63952,7 @@ entities: pos: 15.5,-255.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9362 components: - type: Transform @@ -62444,14 +63960,14 @@ entities: pos: 3.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9363 components: - type: Transform pos: 4.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9364 components: - type: Transform @@ -62483,7 +63999,7 @@ entities: pos: 0.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9368 components: - type: Transform @@ -62507,7 +64023,7 @@ entities: pos: 0.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9371 components: - type: Transform @@ -62515,7 +64031,7 @@ entities: pos: 0.5,-295.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9372 components: - type: Transform @@ -62562,14 +64078,14 @@ entities: pos: 0.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9378 components: - type: Transform pos: 10.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9379 components: - type: Transform @@ -62577,7 +64093,7 @@ entities: pos: 1.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9380 components: - type: Transform @@ -62585,14 +64101,14 @@ entities: pos: 0.5,-266.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9381 components: - type: Transform pos: 5.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9382 components: - type: Transform @@ -62600,7 +64116,7 @@ entities: pos: 0.5,-348.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9383 components: - type: Transform @@ -62616,7 +64132,7 @@ entities: pos: 7.5,-336.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9385 components: - type: Transform @@ -62624,7 +64140,7 @@ entities: pos: 0.5,-321.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9386 components: - type: Transform @@ -62632,7 +64148,7 @@ entities: pos: 5.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9387 components: - type: Transform @@ -62640,7 +64156,7 @@ entities: pos: 0.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9388 components: - type: Transform @@ -62648,7 +64164,7 @@ entities: pos: 0.5,-286.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9389 components: - type: Transform @@ -62664,7 +64180,7 @@ entities: pos: 0.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9391 components: - type: Transform @@ -62672,7 +64188,7 @@ entities: pos: 0.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9392 components: - type: Transform @@ -62680,7 +64196,7 @@ entities: pos: 6.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9393 components: - type: Transform @@ -62703,21 +64219,21 @@ entities: pos: 9.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9396 components: - type: Transform pos: 10.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9397 components: - type: Transform pos: 7.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9398 components: - type: Transform @@ -62741,7 +64257,7 @@ entities: pos: 0.5,-303.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9401 components: - type: Transform @@ -62764,7 +64280,7 @@ entities: pos: 0.5,-329.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9404 components: - type: Transform @@ -62772,7 +64288,7 @@ entities: pos: 0.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9405 components: - type: Transform @@ -62780,7 +64296,7 @@ entities: pos: 0.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9406 components: - type: Transform @@ -62788,7 +64304,7 @@ entities: pos: 4.5,-368.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9407 components: - type: Transform @@ -62796,7 +64312,7 @@ entities: pos: -3.5,-368.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9408 components: - type: Transform @@ -62812,7 +64328,7 @@ entities: pos: -0.5,-255.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9410 components: - type: Transform @@ -62820,7 +64336,7 @@ entities: pos: 0.5,-354.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9411 components: - type: Transform @@ -62828,7 +64344,7 @@ entities: pos: 0.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9412 components: - type: Transform @@ -62843,7 +64359,7 @@ entities: pos: 7.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9414 components: - type: Transform @@ -62851,7 +64367,7 @@ entities: pos: -6.5,-345.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9415 components: - type: Transform @@ -62859,7 +64375,7 @@ entities: pos: 7.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9416 components: - type: Transform @@ -62867,7 +64383,7 @@ entities: pos: 0.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9417 components: - type: Transform @@ -62875,7 +64391,7 @@ entities: pos: 0.5,-356.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9418 components: - type: Transform @@ -62890,14 +64406,14 @@ entities: pos: 4.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9420 components: - type: Transform pos: 4.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9421 components: - type: Transform @@ -62905,7 +64421,7 @@ entities: pos: 0.5,-178.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9422 components: - type: Transform @@ -62944,7 +64460,7 @@ entities: pos: 16.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9427 components: - type: Transform @@ -62960,7 +64476,7 @@ entities: pos: 0.5,-264.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9429 components: - type: Transform @@ -63052,7 +64568,7 @@ entities: pos: 0.5,-253.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9441 components: - type: Transform @@ -63060,7 +64576,7 @@ entities: pos: -3.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9442 components: - type: Transform @@ -63075,13 +64591,23 @@ entities: pos: -9.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9457 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-169.5 parent: 2 + - uid: 13823 + components: + - type: Transform + pos: -18.5,-254.5 + parent: 2 + - uid: 13865 + components: + - type: Transform + pos: -18.5,-252.5 + parent: 2 - proto: GasPort entities: - uid: 5634 @@ -63115,26 +64641,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 9448 - components: - - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: -20.5,-263.5 - parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 9449 - components: - - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: -19.5,-263.5 - parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 9450 components: - type: Transform @@ -63143,13 +64649,61 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' + - uid: 13566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-255.5 + parent: 2 + - uid: 14831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-253.5 + parent: 2 - proto: GasPressurePump entities: + - uid: 3073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-258.5 + parent: 2 + - uid: 5494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-260.5 + parent: 2 + - uid: 5568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-262.5 + parent: 2 - uid: 5635 components: - type: Transform pos: -1.5,-169.5 parent: 2 + - uid: 7152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-264.5 + parent: 2 + - uid: 7312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-252.5 + parent: 2 + - uid: 8441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-254.5 + parent: 2 - uid: 9451 components: - type: Transform @@ -63157,47 +64711,7 @@ entities: pos: -14.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9452 - components: - - type: MetaData - name: Plasma Pump - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-250.5 - parent: 2 - - uid: 9453 - components: - - type: MetaData - name: O2 pump - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-256.5 - parent: 2 - - uid: 9454 - components: - - type: MetaData - name: N2 pump - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-258.5 - parent: 2 - - uid: 9455 - components: - - type: MetaData - name: Co2 pump - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-252.5 - parent: 2 - - uid: 9456 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-259.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' - uid: 9458 components: - type: Transform @@ -63207,7 +64721,7 @@ entities: - type: GasPressurePump targetPressure: 4500 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9459 components: - type: Transform @@ -63235,7 +64749,7 @@ entities: pos: -5.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9463 components: - type: Transform @@ -63243,7 +64757,25 @@ entities: pos: 5.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 13628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-253.5 + parent: 2 + - uid: 14824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-255.5 + parent: 2 + - uid: 14944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-256.5 + parent: 2 - proto: GasThermoMachineFreezer entities: - uid: 9464 @@ -63251,14 +64783,40 @@ entities: - type: Transform pos: -4.5,-168.5 parent: 2 -- proto: GasValve - entities: - - uid: 9465 + - uid: 17107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-263.5 + rot: 3.141592653589793 rad + pos: -15.5,-265.5 parent: 2 +- proto: GasThermoMachineHeater + entities: + - uid: 17108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-265.5 + parent: 2 +- proto: GasValve + entities: + - uid: 3985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-249.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-250.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasVentPump entities: - uid: 9466 @@ -63271,14 +64829,14 @@ entities: deviceLists: - 65 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9467 components: - type: Transform pos: -3.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9468 components: - type: Transform @@ -63289,7 +64847,7 @@ entities: deviceLists: - 9 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9469 components: - type: Transform @@ -63297,7 +64855,7 @@ entities: pos: 1.5,-210.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9470 components: - type: Transform @@ -63305,14 +64863,14 @@ entities: pos: -3.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9471 components: - type: Transform pos: -1.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9472 components: - type: Transform @@ -63320,7 +64878,7 @@ entities: pos: -1.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9473 components: - type: Transform @@ -63331,7 +64889,7 @@ entities: deviceLists: - 12 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9474 components: - type: Transform @@ -63339,7 +64897,7 @@ entities: pos: 5.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9475 components: - type: Transform @@ -63347,7 +64905,7 @@ entities: pos: 1.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9476 components: - type: Transform @@ -63358,7 +64916,7 @@ entities: deviceLists: - 16 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9477 components: - type: Transform @@ -63369,7 +64927,7 @@ entities: deviceLists: - 15 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9478 components: - type: Transform @@ -63380,7 +64938,7 @@ entities: deviceLists: - 55 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9479 components: - type: Transform @@ -63388,7 +64946,7 @@ entities: pos: -0.5,-160.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9480 components: - type: Transform @@ -63396,14 +64954,14 @@ entities: pos: -0.5,-227.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9481 components: - type: Transform pos: -3.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9482 components: - type: Transform @@ -63411,7 +64969,7 @@ entities: pos: 6.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9483 components: - type: Transform @@ -63419,7 +64977,7 @@ entities: pos: -4.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9484 components: - type: Transform @@ -63430,7 +64988,7 @@ entities: deviceLists: - 55 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9485 components: - type: Transform @@ -63441,7 +64999,7 @@ entities: deviceLists: - 18 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9486 components: - type: Transform @@ -63452,14 +65010,14 @@ entities: deviceLists: - 63 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9487 components: - type: Transform pos: -2.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9488 components: - type: Transform @@ -63467,7 +65025,7 @@ entities: pos: -0.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9489 components: - type: Transform @@ -63475,7 +65033,7 @@ entities: pos: -1.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9490 components: - type: Transform @@ -63483,7 +65041,7 @@ entities: pos: 2.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9491 components: - type: Transform @@ -63491,7 +65049,7 @@ entities: pos: 5.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9492 components: - type: Transform @@ -63502,7 +65060,7 @@ entities: deviceLists: - 19 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9493 components: - type: Transform @@ -63510,7 +65068,7 @@ entities: pos: 1.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9494 components: - type: Transform @@ -63521,7 +65079,7 @@ entities: deviceLists: - 14 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9495 components: - type: Transform @@ -63532,14 +65090,14 @@ entities: deviceLists: - 17 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9496 components: - type: Transform pos: -4.5,-324.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9497 components: - type: Transform @@ -63547,7 +65105,7 @@ entities: pos: 1.5,-289.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9498 components: - type: Transform @@ -63555,7 +65113,7 @@ entities: pos: -0.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9499 components: - type: Transform @@ -63563,7 +65121,7 @@ entities: pos: -0.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9500 components: - type: Transform @@ -63571,7 +65129,7 @@ entities: pos: -2.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9501 components: - type: Transform @@ -63582,7 +65140,7 @@ entities: deviceLists: - 16 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9502 components: - type: Transform @@ -63593,7 +65151,7 @@ entities: deviceLists: - 21 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9503 components: - type: Transform @@ -63603,7 +65161,7 @@ entities: deviceLists: - 24 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9504 components: - type: Transform @@ -63614,7 +65172,7 @@ entities: deviceLists: - 25 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9505 components: - type: Transform @@ -63634,7 +65192,7 @@ entities: pos: -3.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9507 components: - type: Transform @@ -63642,7 +65200,7 @@ entities: pos: 1.5,-100.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9508 components: - type: Transform @@ -63653,7 +65211,7 @@ entities: deviceLists: - 22 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9509 components: - type: Transform @@ -63661,7 +65219,7 @@ entities: pos: -0.5,-106.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9510 components: - type: Transform @@ -63672,7 +65230,7 @@ entities: deviceLists: - 26 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9511 components: - type: Transform @@ -63683,7 +65241,7 @@ entities: deviceLists: - 26 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9512 components: - type: Transform @@ -63691,7 +65249,7 @@ entities: pos: -0.5,-136.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9513 components: - type: Transform @@ -63699,7 +65257,7 @@ entities: pos: 3.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9514 components: - type: Transform @@ -63707,7 +65265,7 @@ entities: pos: 5.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9515 components: - type: Transform @@ -63718,7 +65276,7 @@ entities: deviceLists: - 30 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9516 components: - type: Transform @@ -63729,7 +65287,7 @@ entities: deviceLists: - 26 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9517 components: - type: Transform @@ -63740,7 +65298,7 @@ entities: deviceLists: - 26 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9518 components: - type: Transform @@ -63751,7 +65309,7 @@ entities: deviceLists: - 26 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9519 components: - type: Transform @@ -63762,7 +65320,7 @@ entities: deviceLists: - 26 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9520 components: - type: Transform @@ -63773,7 +65331,7 @@ entities: deviceLists: - 26 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9521 components: - type: Transform @@ -63784,7 +65342,7 @@ entities: deviceLists: - 39 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9522 components: - type: Transform @@ -63794,7 +65352,7 @@ entities: deviceLists: - 29 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9523 components: - type: Transform @@ -63802,7 +65360,7 @@ entities: pos: -0.5,-133.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9524 components: - type: Transform @@ -63813,7 +65371,7 @@ entities: deviceLists: - 27 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9525 components: - type: Transform @@ -63824,7 +65382,7 @@ entities: deviceLists: - 28 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9526 components: - type: Transform @@ -63832,7 +65390,7 @@ entities: pos: 1.5,-194.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9527 components: - type: Transform @@ -63869,14 +65427,14 @@ entities: deviceLists: - 35 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9530 components: - type: Transform pos: -4.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9531 components: - type: Transform @@ -63884,7 +65442,7 @@ entities: pos: 1.5,-154.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9532 components: - type: Transform @@ -63892,7 +65450,7 @@ entities: pos: 1.5,-167.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9533 components: - type: Transform @@ -63900,7 +65458,7 @@ entities: pos: -0.5,-187.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9534 components: - type: Transform @@ -63908,7 +65466,7 @@ entities: pos: 1.5,-181.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9535 components: - type: Transform @@ -63916,7 +65474,7 @@ entities: pos: 1.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9536 components: - type: Transform @@ -63924,7 +65482,7 @@ entities: pos: 1.5,-127.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9537 components: - type: Transform @@ -63935,7 +65493,7 @@ entities: deviceLists: - 23 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9538 components: - type: Transform @@ -63946,7 +65504,7 @@ entities: deviceLists: - 44 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9539 components: - type: Transform @@ -63954,7 +65512,7 @@ entities: pos: -0.5,-221.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9540 components: - type: Transform @@ -63965,7 +65523,7 @@ entities: deviceLists: - 37 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9541 components: - type: Transform @@ -63973,7 +65531,7 @@ entities: pos: 4.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9542 components: - type: Transform @@ -63984,7 +65542,7 @@ entities: deviceLists: - 33 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9543 components: - type: Transform @@ -63995,7 +65553,7 @@ entities: deviceLists: - 49 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9544 components: - type: Transform @@ -64006,7 +65564,7 @@ entities: deviceLists: - 70 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9545 components: - type: Transform @@ -64017,7 +65575,7 @@ entities: deviceLists: - 45 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9546 components: - type: Transform @@ -64028,7 +65586,7 @@ entities: deviceLists: - 71 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9547 components: - type: Transform @@ -64036,7 +65594,7 @@ entities: pos: 18.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9548 components: - type: Transform @@ -64047,7 +65605,7 @@ entities: deviceLists: - 70 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9549 components: - type: Transform @@ -64055,7 +65613,7 @@ entities: pos: -0.5,-241.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9550 components: - type: Transform @@ -64066,7 +65624,7 @@ entities: deviceLists: - 71 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9551 components: - type: Transform @@ -64074,7 +65632,7 @@ entities: pos: 1.5,-235.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9552 components: - type: Transform @@ -64085,7 +65643,7 @@ entities: deviceLists: - 70 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9553 components: - type: Transform @@ -64096,7 +65654,7 @@ entities: deviceLists: - 48 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9554 components: - type: Transform @@ -64107,7 +65665,7 @@ entities: deviceLists: - 49 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9555 components: - type: Transform @@ -64130,7 +65688,7 @@ entities: pos: 1.5,-208.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9557 components: - type: Transform @@ -64141,7 +65699,7 @@ entities: deviceLists: - 46 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9558 components: - type: Transform @@ -64149,7 +65707,7 @@ entities: pos: -0.5,-214.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9559 components: - type: Transform @@ -64157,7 +65715,7 @@ entities: pos: -2.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9560 components: - type: Transform @@ -64165,7 +65723,7 @@ entities: pos: 3.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9561 components: - type: Transform @@ -64173,7 +65731,7 @@ entities: pos: -2.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9562 components: - type: Transform @@ -64181,7 +65739,7 @@ entities: pos: 3.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9563 components: - type: Transform @@ -64189,7 +65747,7 @@ entities: pos: -0.5,-286.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9564 components: - type: Transform @@ -64200,14 +65758,14 @@ entities: deviceLists: - 57 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9565 components: - type: Transform pos: -3.5,-314.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9566 components: - type: Transform @@ -64218,7 +65776,7 @@ entities: deviceLists: - 61 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9567 components: - type: Transform @@ -64226,7 +65784,7 @@ entities: pos: -6.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9568 components: - type: Transform @@ -64249,7 +65807,7 @@ entities: deviceLists: - 41 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9570 components: - type: Transform @@ -64257,7 +65815,7 @@ entities: pos: 3.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9571 components: - type: Transform @@ -64265,7 +65823,7 @@ entities: pos: 6.5,-336.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9572 components: - type: Transform @@ -64276,7 +65834,7 @@ entities: deviceLists: - 63 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9573 components: - type: Transform @@ -64287,7 +65845,7 @@ entities: deviceLists: - 63 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9574 components: - type: Transform @@ -64295,7 +65853,7 @@ entities: pos: 10.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9575 components: - type: Transform @@ -64303,7 +65861,7 @@ entities: pos: -2.5,-107.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9576 components: - type: Transform @@ -64311,7 +65869,7 @@ entities: pos: 6.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9577 components: - type: Transform @@ -64319,14 +65877,14 @@ entities: pos: 5.5,-178.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9578 components: - type: Transform pos: 3.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9579 components: - type: Transform @@ -64337,7 +65895,7 @@ entities: deviceLists: - 16 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9580 components: - type: Transform @@ -64345,7 +65903,7 @@ entities: pos: 1.5,-262.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9581 components: - type: Transform @@ -64356,7 +65914,7 @@ entities: deviceLists: - 71 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9582 components: - type: Transform @@ -64364,7 +65922,7 @@ entities: pos: 15.5,-263.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9583 components: - type: Transform @@ -64375,7 +65933,7 @@ entities: deviceLists: - 38 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9584 components: - type: Transform @@ -64398,7 +65956,7 @@ entities: deviceLists: - 68 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9586 components: - type: Transform @@ -64409,7 +65967,7 @@ entities: deviceLists: - 13 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9587 components: - type: Transform @@ -64417,7 +65975,7 @@ entities: pos: 1.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9588 components: - type: Transform @@ -64425,7 +65983,7 @@ entities: pos: 3.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9589 components: - type: Transform @@ -64436,7 +65994,7 @@ entities: deviceLists: - 44 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9590 components: - type: Transform @@ -64444,7 +66002,7 @@ entities: pos: -4.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9591 components: - type: Transform @@ -64455,7 +66013,7 @@ entities: deviceLists: - 44 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9592 components: - type: Transform @@ -64463,7 +66021,7 @@ entities: pos: -0.5,-268.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9593 components: - type: Transform @@ -64474,7 +66032,7 @@ entities: deviceLists: - 21 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9594 components: - type: Transform @@ -64485,7 +66043,7 @@ entities: deviceLists: - 21 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9595 components: - type: Transform @@ -64493,7 +66051,7 @@ entities: pos: -5.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9596 components: - type: Transform @@ -64504,7 +66062,7 @@ entities: deviceLists: - 22 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9597 components: - type: Transform @@ -64529,7 +66087,7 @@ entities: deviceLists: - 29 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9599 components: - type: Transform @@ -64537,7 +66095,7 @@ entities: pos: -0.5,-354.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9600 components: - type: Transform @@ -64545,7 +66103,7 @@ entities: pos: 6.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9601 components: - type: Transform @@ -64553,7 +66111,7 @@ entities: pos: 5.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9602 components: - type: Transform @@ -64561,7 +66119,7 @@ entities: pos: 6.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9603 components: - type: Transform @@ -64569,7 +66127,7 @@ entities: pos: -0.5,-295.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9604 components: - type: Transform @@ -64577,7 +66135,7 @@ entities: pos: 1.5,-348.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9605 components: - type: Transform @@ -64588,7 +66146,7 @@ entities: deviceLists: - 54 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9606 components: - type: Transform @@ -64596,7 +66154,7 @@ entities: pos: -1.5,-176.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9607 components: - type: Transform @@ -64607,7 +66165,7 @@ entities: deviceLists: - 14 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9608 components: - type: Transform @@ -64627,7 +66185,7 @@ entities: pos: 5.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9610 components: - type: Transform @@ -64638,7 +66196,7 @@ entities: deviceLists: - 67 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9611 components: - type: Transform @@ -64646,7 +66204,7 @@ entities: pos: -0.5,-212.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9612 components: - type: Transform @@ -64657,7 +66215,7 @@ entities: deviceLists: - 53 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9613 components: - type: Transform @@ -64668,7 +66226,7 @@ entities: deviceLists: - 5 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9614 components: - type: Transform @@ -64676,7 +66234,7 @@ entities: pos: -2.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9615 components: - type: Transform @@ -64684,7 +66242,7 @@ entities: pos: 1.5,-321.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9616 components: - type: Transform @@ -64695,14 +66253,14 @@ entities: deviceLists: - 8 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9617 components: - type: Transform pos: 5.5,-265.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9618 components: - type: Transform @@ -64713,7 +66271,7 @@ entities: deviceLists: - 56 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9619 components: - type: Transform @@ -64723,7 +66281,7 @@ entities: deviceLists: - 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9620 components: - type: Transform @@ -64734,7 +66292,7 @@ entities: deviceLists: - 55 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9621 components: - type: Transform @@ -64746,7 +66304,7 @@ entities: - 61 - 57 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9622 components: - type: Transform @@ -64754,7 +66312,7 @@ entities: pos: 10.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9623 components: - type: Transform @@ -64762,14 +66320,14 @@ entities: pos: 6.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9624 components: - type: Transform pos: 9.5,-304.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9625 components: - type: Transform @@ -64780,7 +66338,7 @@ entities: deviceLists: - 59 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9626 components: - type: Transform @@ -64788,7 +66346,7 @@ entities: pos: 4.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9627 components: - type: Transform @@ -64796,7 +66354,7 @@ entities: pos: 1.5,-342.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9628 components: - type: Transform @@ -64807,7 +66365,7 @@ entities: deviceLists: - 44 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9629 components: - type: Transform @@ -64815,7 +66373,7 @@ entities: pos: -3.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9630 components: - type: Transform @@ -64825,7 +66383,7 @@ entities: deviceLists: - 11 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9631 components: - type: Transform @@ -64836,7 +66394,7 @@ entities: deviceLists: - 67 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9632 components: - type: Transform @@ -64848,7 +66406,7 @@ entities: - 61 - 57 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9633 components: - type: Transform @@ -64858,7 +66416,7 @@ entities: deviceLists: - 63 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9634 components: - type: Transform @@ -64869,7 +66427,7 @@ entities: deviceLists: - 63 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9635 components: - type: Transform @@ -64880,7 +66438,7 @@ entities: deviceLists: - 63 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9636 components: - type: Transform @@ -64891,7 +66449,7 @@ entities: deviceLists: - 63 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9637 components: - type: Transform @@ -64902,7 +66460,7 @@ entities: deviceLists: - 64 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9638 components: - type: Transform @@ -64913,7 +66471,7 @@ entities: deviceLists: - 64 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9639 components: - type: Transform @@ -64924,7 +66482,7 @@ entities: deviceLists: - 63 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9640 components: - type: Transform @@ -64935,7 +66493,7 @@ entities: deviceLists: - 63 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9641 components: - type: Transform @@ -64945,7 +66503,7 @@ entities: deviceLists: - 65 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9642 components: - type: Transform @@ -64956,7 +66514,7 @@ entities: deviceLists: - 65 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9643 components: - type: Transform @@ -64967,7 +66525,7 @@ entities: deviceLists: - 7 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9644 components: - type: Transform @@ -64978,7 +66536,7 @@ entities: deviceLists: - 51 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9645 components: - type: Transform @@ -64986,7 +66544,7 @@ entities: pos: 1.5,-274.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9646 components: - type: Transform @@ -64996,7 +66554,7 @@ entities: deviceLists: - 20 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9647 components: - type: Transform @@ -65007,28 +66565,28 @@ entities: deviceLists: - 43 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9648 components: - type: Transform pos: 5.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9649 components: - type: Transform pos: -4.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9650 components: - type: Transform pos: 5.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9651 components: - type: Transform @@ -65039,21 +66597,21 @@ entities: deviceLists: - 62 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9652 components: - type: Transform pos: -4.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9653 components: - type: Transform pos: 5.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9654 components: - type: Transform @@ -65067,7 +66625,7 @@ entities: pos: -4.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9656 components: - type: Transform @@ -65078,14 +66636,14 @@ entities: deviceLists: - 38 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9657 components: - type: Transform pos: -4.5,-130.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9658 components: - type: Transform @@ -65100,14 +66658,14 @@ entities: pos: -5.5,-132.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9660 components: - type: Transform pos: -4.5,-184.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9661 components: - type: Transform @@ -65118,7 +66676,7 @@ entities: deviceLists: - 13 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9662 components: - type: Transform @@ -65126,7 +66684,7 @@ entities: pos: 8.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9663 components: - type: Transform @@ -65134,14 +66692,14 @@ entities: pos: -0.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9664 components: - type: Transform pos: -4.5,-157.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9665 components: - type: Transform @@ -65149,7 +66707,7 @@ entities: pos: 5.5,-157.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9666 components: - type: Transform @@ -65160,7 +66718,7 @@ entities: deviceLists: - 22 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9667 components: - type: Transform @@ -65171,7 +66729,7 @@ entities: deviceLists: - 29 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9668 components: - type: Transform @@ -65179,7 +66737,7 @@ entities: pos: 5.5,-292.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9669 components: - type: Transform @@ -65190,7 +66748,7 @@ entities: deviceLists: - 63 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9670 components: - type: Transform @@ -65201,7 +66759,15 @@ entities: deviceLists: - 72 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 17022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-264.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasVentScrubber entities: - uid: 9671 @@ -65462,7 +67028,7 @@ entities: pos: 17.5,-263.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9701 components: - type: Transform @@ -66003,7 +67569,7 @@ entities: deviceLists: - 70 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9758 components: - type: Transform @@ -66025,7 +67591,7 @@ entities: deviceLists: - 71 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9760 components: - type: Transform @@ -66211,7 +67777,7 @@ entities: pos: 15.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9779 components: - type: Transform @@ -66256,7 +67822,7 @@ entities: pos: -0.5,-262.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9784 components: - type: Transform @@ -66274,14 +67840,14 @@ entities: pos: 10.5,-253.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9786 components: - type: Transform pos: -3.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9787 components: - type: Transform @@ -66318,7 +67884,7 @@ entities: deviceLists: - 68 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9791 components: - type: Transform @@ -66326,7 +67892,7 @@ entities: pos: 4.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9792 components: - type: Transform @@ -66363,7 +67929,7 @@ entities: pos: 1.5,-241.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9797 components: - type: Transform @@ -66424,7 +67990,7 @@ entities: pos: -2.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9804 components: - type: Transform @@ -66639,7 +68205,7 @@ entities: deviceLists: - 71 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9827 components: - type: Transform @@ -66659,7 +68225,7 @@ entities: deviceLists: - 71 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9829 components: - type: Transform @@ -66752,7 +68318,22 @@ entities: deviceLists: - 72 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 17020 + components: + - type: Transform + pos: -13.5,-257.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 17021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-251.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasVolumePump entities: - uid: 9839 @@ -66821,6 +68402,121 @@ entities: parent: 2 - proto: Grille entities: + - uid: 920 + components: + - type: Transform + pos: -20.5,-250.5 + parent: 2 + - uid: 3039 + components: + - type: Transform + pos: -20.5,-263.5 + parent: 2 + - uid: 3048 + components: + - type: Transform + pos: -20.5,-259.5 + parent: 2 + - uid: 3961 + components: + - type: Transform + pos: -20.5,-251.5 + parent: 2 + - uid: 3975 + components: + - type: Transform + pos: -20.5,-249.5 + parent: 2 + - uid: 3988 + components: + - type: Transform + pos: -22.5,-259.5 + parent: 2 + - uid: 4230 + components: + - type: Transform + pos: -22.5,-257.5 + parent: 2 + - uid: 4231 + components: + - type: Transform + pos: -22.5,-251.5 + parent: 2 + - uid: 4670 + components: + - type: Transform + pos: -20.5,-253.5 + parent: 2 + - uid: 4671 + components: + - type: Transform + pos: -20.5,-258.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + pos: -20.5,-254.5 + parent: 2 + - uid: 7558 + components: + - type: Transform + pos: -20.5,-252.5 + parent: 2 + - uid: 7560 + components: + - type: Transform + pos: -22.5,-253.5 + parent: 2 + - uid: 7562 + components: + - type: Transform + pos: -20.5,-264.5 + parent: 2 + - uid: 7564 + components: + - type: Transform + pos: -20.5,-256.5 + parent: 2 + - uid: 7600 + components: + - type: Transform + pos: -20.5,-257.5 + parent: 2 + - uid: 7655 + components: + - type: Transform + pos: -20.5,-255.5 + parent: 2 + - uid: 7977 + components: + - type: Transform + pos: -22.5,-263.5 + parent: 2 + - uid: 7981 + components: + - type: Transform + pos: -20.5,-261.5 + parent: 2 + - uid: 8501 + components: + - type: Transform + pos: -22.5,-255.5 + parent: 2 + - uid: 8636 + components: + - type: Transform + pos: 1.5,-83.5 + parent: 2 + - uid: 8638 + components: + - type: Transform + pos: -7.5,-82.5 + parent: 2 + - uid: 8640 + components: + - type: Transform + pos: 0.5,-83.5 + parent: 2 - uid: 9850 components: - type: Transform @@ -67004,16 +68700,10 @@ entities: - type: Transform pos: -6.5,-72.5 parent: 2 - - uid: 9886 - components: - - type: Transform - pos: 0.5,-83.5 - parent: 2 - uid: 9887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-285.5 + pos: -8.5,-90.5 parent: 2 - uid: 9888 components: @@ -67053,12 +68743,12 @@ entities: - uid: 9895 components: - type: Transform - pos: -7.5,-90.5 + pos: -10.5,-88.5 parent: 2 - uid: 9896 components: - type: Transform - pos: -7.5,-82.5 + pos: -9.5,-82.5 parent: 2 - uid: 9897 components: @@ -67151,11 +68841,6 @@ entities: - type: Transform pos: 1.5,-93.5 parent: 2 - - uid: 9915 - components: - - type: Transform - pos: 1.5,-83.5 - parent: 2 - uid: 9916 components: - type: Transform @@ -67269,7 +68954,7 @@ entities: - uid: 9938 components: - type: Transform - pos: 1.5,-122.5 + pos: -9.5,-90.5 parent: 2 - uid: 9939 components: @@ -67292,11 +68977,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,20.5 parent: 2 - - uid: 9943 - components: - - type: Transform - pos: -18.5,-249.5 - parent: 2 - uid: 9944 components: - type: Transform @@ -67986,20 +69666,13 @@ entities: - uid: 10074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-257.5 + pos: -10.5,-83.5 parent: 2 - uid: 10075 components: - type: Transform pos: 14.5,-245.5 parent: 2 - - uid: 10076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-261.5 - parent: 2 - uid: 10077 components: - type: Transform @@ -68011,12 +69684,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-255.5 parent: 2 - - uid: 10079 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-260.5 - parent: 2 - uid: 10080 components: - type: Transform @@ -68063,11 +69730,6 @@ entities: - type: Transform pos: -18.5,-344.5 parent: 2 - - uid: 10089 - components: - - type: Transform - pos: -3.5,-273.5 - parent: 2 - uid: 10090 components: - type: Transform @@ -68118,12 +69780,6 @@ entities: - type: Transform pos: -6.5,-278.5 parent: 2 - - uid: 10100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-286.5 - parent: 2 - uid: 10101 components: - type: Transform @@ -68136,34 +69792,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-275.5 parent: 2 - - uid: 10103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-284.5 - parent: 2 - - uid: 10104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-272.5 - parent: 2 - - uid: 10105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-274.5 - parent: 2 - - uid: 10106 - components: - - type: Transform - pos: -1.5,-282.5 - parent: 2 - - uid: 10107 - components: - - type: Transform - pos: -0.5,-283.5 - parent: 2 - uid: 10108 components: - type: Transform @@ -68328,8 +69956,7 @@ entities: - uid: 10136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-255.5 + pos: -1.5,-275.5 parent: 2 - uid: 10137 components: @@ -68495,12 +70122,6 @@ entities: - type: Transform pos: -19.5,-87.5 parent: 2 - - uid: 10166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-253.5 - parent: 2 - uid: 10167 components: - type: Transform @@ -68694,12 +70315,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-369.5 parent: 2 - - uid: 10200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-251.5 - parent: 2 - uid: 10201 components: - type: Transform @@ -68741,12 +70356,6 @@ entities: - type: Transform pos: -4.5,-381.5 parent: 2 - - uid: 10208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-259.5 - parent: 2 - uid: 10209 components: - type: Transform @@ -68762,12 +70371,6 @@ entities: - type: Transform pos: 20.5,-246.5 parent: 2 - - uid: 10212 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-263.5 - parent: 2 - uid: 10213 components: - type: Transform @@ -70655,6 +72258,530 @@ entities: - type: Transform pos: -15.5,-161.5 parent: 2 + - uid: 10583 + components: + - type: Transform + pos: -3.5,-273.5 + parent: 2 + - uid: 10584 + components: + - type: Transform + pos: -3.5,-272.5 + parent: 2 + - uid: 10604 + components: + - type: Transform + pos: -4.5,-273.5 + parent: 2 + - uid: 12328 + components: + - type: Transform + pos: -9.5,-89.5 + parent: 2 + - uid: 12330 + components: + - type: Transform + pos: -8.5,-82.5 + parent: 2 + - uid: 12331 + components: + - type: Transform + pos: -10.5,-89.5 + parent: 2 + - uid: 12332 + components: + - type: Transform + pos: -9.5,-83.5 + parent: 2 + - uid: 12333 + components: + - type: Transform + pos: -10.5,-84.5 + parent: 2 + - uid: 12334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-122.5 + parent: 2 + - uid: 12480 + components: + - type: Transform + pos: -7.5,-90.5 + parent: 2 + - uid: 12888 + components: + - type: Transform + pos: -4.5,-274.5 + parent: 2 + - uid: 12896 + components: + - type: Transform + pos: -2.5,-272.5 + parent: 2 + - uid: 14947 + components: + - type: Transform + pos: -20.5,-260.5 + parent: 2 + - uid: 14951 + components: + - type: Transform + pos: -20.5,-262.5 + parent: 2 + - uid: 14952 + components: + - type: Transform + pos: -22.5,-261.5 + parent: 2 + - uid: 16516 + components: + - type: Transform + pos: -24.5,-270.5 + parent: 2 + - uid: 16985 + components: + - type: Transform + pos: -20.5,-265.5 + parent: 2 + - uid: 16990 + components: + - type: Transform + pos: -11.5,-266.5 + parent: 2 + - uid: 16991 + components: + - type: Transform + pos: -10.5,-266.5 + parent: 2 + - uid: 16992 + components: + - type: Transform + pos: -10.5,-265.5 + parent: 2 + - uid: 16993 + components: + - type: Transform + pos: -10.5,-263.5 + parent: 2 + - uid: 16994 + components: + - type: Transform + pos: -10.5,-262.5 + parent: 2 + - uid: 16995 + components: + - type: Transform + pos: -10.5,-264.5 + parent: 2 + - uid: 16996 + components: + - type: Transform + pos: -11.5,-262.5 + parent: 2 + - uid: 17067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-270.5 + parent: 2 + - uid: 17068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-270.5 + parent: 2 + - uid: 17069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-270.5 + parent: 2 + - uid: 17070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-269.5 + parent: 2 + - uid: 17071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-268.5 + parent: 2 + - uid: 17082 + components: + - type: Transform + pos: -25.5,-270.5 + parent: 2 + - uid: 17085 + components: + - type: Transform + pos: -26.5,-270.5 + parent: 2 + - uid: 17086 + components: + - type: Transform + pos: -26.5,-266.5 + parent: 2 + - uid: 17087 + components: + - type: Transform + pos: -25.5,-266.5 + parent: 2 + - uid: 17088 + components: + - type: Transform + pos: -24.5,-266.5 + parent: 2 + - uid: 17114 + components: + - type: Transform + anchored: False + pos: -32.5,-260.5 + parent: 2 + - uid: 17115 + components: + - type: Transform + anchored: False + pos: -32.5,-259.5 + parent: 2 + - uid: 17116 + components: + - type: Transform + anchored: False + pos: -32.5,-258.5 + parent: 2 + - uid: 17117 + components: + - type: Transform + anchored: False + pos: -32.5,-257.5 + parent: 2 + - uid: 17118 + components: + - type: Transform + anchored: False + pos: -32.5,-256.5 + parent: 2 + - uid: 17119 + components: + - type: Transform + anchored: False + pos: -32.5,-255.5 + parent: 2 + - uid: 17120 + components: + - type: Transform + anchored: False + pos: -32.5,-253.5 + parent: 2 + - uid: 17121 + components: + - type: Transform + anchored: False + pos: -32.5,-254.5 + parent: 2 + - uid: 17122 + components: + - type: Transform + anchored: False + pos: -32.5,-251.5 + parent: 2 + - uid: 17123 + components: + - type: Transform + anchored: False + pos: -32.5,-252.5 + parent: 2 + - uid: 17160 + components: + - type: Transform + pos: -28.5,-246.5 + parent: 2 + - uid: 17166 + components: + - type: Transform + pos: -27.5,-245.5 + parent: 2 + - uid: 17167 + components: + - type: Transform + pos: -27.5,-244.5 + parent: 2 + - uid: 17168 + components: + - type: Transform + pos: -27.5,-243.5 + parent: 2 + - uid: 17169 + components: + - type: Transform + pos: -27.5,-242.5 + parent: 2 + - uid: 17171 + components: + - type: Transform + pos: -27.5,-240.5 + parent: 2 + - uid: 17172 + components: + - type: Transform + pos: -27.5,-239.5 + parent: 2 + - uid: 17173 + components: + - type: Transform + pos: -27.5,-238.5 + parent: 2 + - uid: 17174 + components: + - type: Transform + pos: -27.5,-237.5 + parent: 2 + - uid: 17175 + components: + - type: Transform + pos: -27.5,-236.5 + parent: 2 + - uid: 17176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-270.5 + parent: 2 + - uid: 17177 + components: + - type: Transform + pos: -31.5,-249.5 + parent: 2 + - uid: 17178 + components: + - type: Transform + pos: -31.5,-248.5 + parent: 2 + - uid: 17179 + components: + - type: Transform + pos: -31.5,-247.5 + parent: 2 + - uid: 17180 + components: + - type: Transform + pos: -31.5,-246.5 + parent: 2 + - uid: 17181 + components: + - type: Transform + pos: -30.5,-246.5 + parent: 2 + - uid: 17182 + components: + - type: Transform + pos: -29.5,-246.5 + parent: 2 + - uid: 17184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-270.5 + parent: 2 + - uid: 17185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-270.5 + parent: 2 + - uid: 17186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-270.5 + parent: 2 + - uid: 17187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-270.5 + parent: 2 + - uid: 17188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-270.5 + parent: 2 + - uid: 17189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-270.5 + parent: 2 + - uid: 17190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-270.5 + parent: 2 + - uid: 17191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-270.5 + parent: 2 + - uid: 17198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-268.5 + parent: 2 + - uid: 17199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-268.5 + parent: 2 + - uid: 17200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-268.5 + parent: 2 + - uid: 17201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-268.5 + parent: 2 + - uid: 17202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-268.5 + parent: 2 + - uid: 17203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-268.5 + parent: 2 + - uid: 17204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-268.5 + parent: 2 + - uid: 17205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-268.5 + parent: 2 + - uid: 17206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-268.5 + parent: 2 + - uid: 17211 + components: + - type: Transform + pos: -1.5,-283.5 + parent: 2 + - uid: 17212 + components: + - type: Transform + pos: -0.5,-283.5 + parent: 2 + - uid: 17213 + components: + - type: Transform + pos: -1.5,-282.5 + parent: 2 + - uid: 17214 + components: + - type: Transform + pos: -2.5,-286.5 + parent: 2 + - uid: 17215 + components: + - type: Transform + pos: -3.5,-286.5 + parent: 2 + - uid: 17216 + components: + - type: Transform + pos: -3.5,-285.5 + parent: 2 + - uid: 17217 + components: + - type: Transform + pos: -4.5,-285.5 + parent: 2 + - uid: 17218 + components: + - type: Transform + pos: -4.5,-284.5 + parent: 2 + - uid: 17357 + components: + - type: Transform + anchored: False + pos: -32.5,-261.5 + parent: 17356 + - uid: 17359 + components: + - type: Transform + anchored: False + pos: -32.5,-262.5 + parent: 17358 + - uid: 17361 + components: + - type: Transform + anchored: False + pos: -32.5,-263.5 + parent: 17360 + - uid: 17363 + components: + - type: Transform + anchored: False + pos: -32.5,-264.5 + parent: 17362 + - uid: 17367 + components: + - type: Transform + anchored: False + pos: -32.5,-266.5 + parent: 17366 + - uid: 17369 + components: + - type: Transform + anchored: False + pos: -32.5,-267.5 + parent: 17368 + - uid: 17371 + components: + - type: Transform + anchored: False + pos: -32.5,-268.5 + parent: 17370 + - uid: 17373 + components: + - type: Transform + anchored: False + pos: -32.5,-269.5 + parent: 17372 + - uid: 17389 + components: + - type: Transform + anchored: False + pos: -27.5,-235.5 + parent: 17388 + - uid: 17391 + components: + - type: Transform + anchored: False + pos: -27.5,-234.5 + parent: 17390 - proto: GrilleBroken entities: - uid: 10566 @@ -70697,6 +72824,30 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,-247.5 parent: 2 + - uid: 17170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-241.5 + parent: 2 + - uid: 17183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-246.5 + parent: 2 + - uid: 17365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-265.5 + parent: 17364 + - uid: 17375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-270.5 + parent: 17374 - proto: GrilleDiagonal entities: - uid: 10573 @@ -70704,21 +72855,6 @@ entities: - type: Transform pos: -1.5,4.5 parent: 2 - - uid: 10574 - components: - - type: Transform - pos: -8.5,-82.5 - parent: 2 - - uid: 10575 - components: - - type: Transform - pos: -10.5,-84.5 - parent: 2 - - uid: 10576 - components: - - type: Transform - pos: -9.5,-83.5 - parent: 2 - uid: 10577 components: - type: Transform @@ -70730,42 +72866,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,3.5 parent: 2 - - uid: 10579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-88.5 - parent: 2 - - uid: 10580 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-89.5 - parent: 2 - - uid: 10581 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-90.5 - parent: 2 - - uid: 10582 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-84.5 - parent: 2 - - uid: 10583 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-88.5 - parent: 2 - - uid: 10584 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-122.5 - parent: 2 - uid: 10585 components: - type: Transform @@ -70784,18 +72884,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-309.5 parent: 2 - - uid: 10588 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-89.5 - parent: 2 - - uid: 10589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-83.5 - parent: 2 - uid: 10590 components: - type: Transform @@ -70814,17 +72902,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-202.5 parent: 2 - - uid: 10593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-274.5 - parent: 2 - - uid: 10594 - components: - - type: Transform - pos: -3.5,-272.5 - parent: 2 - uid: 10595 components: - type: Transform @@ -70859,41 +72936,6 @@ entities: - type: Transform pos: -10.5,-307.5 parent: 2 - - uid: 10601 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-273.5 - parent: 2 - - uid: 10602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-284.5 - parent: 2 - - uid: 10603 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-285.5 - parent: 2 - - uid: 10604 - components: - - type: Transform - pos: -1.5,-275.5 - parent: 2 - - uid: 10605 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-286.5 - parent: 2 - - uid: 10606 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-283.5 - parent: 2 - uid: 10607 components: - type: Transform @@ -74144,7 +76186,7 @@ entities: pos: 8.5,-176.5 parent: 2 - type: Door - secondsUntilStateChange: -141291.3 + secondsUntilStateChange: -147335.61 state: Closing - uid: 11227 components: @@ -74238,6 +76280,11 @@ entities: - type: Transform pos: -1.4858844,-371.00397 parent: 2 + - uid: 16539 + components: + - type: Transform + pos: -8.480622,-89.43178 + parent: 2 - proto: HydroponicsToolSpade entities: - uid: 11242 @@ -74245,8 +76292,18 @@ entities: - type: Transform pos: -1.2279739,-371.28754 parent: 2 + - uid: 16540 + components: + - type: Transform + pos: -8.449372,-89.36928 + parent: 2 - proto: hydroponicsTray entities: + - uid: 559 + components: + - type: Transform + pos: -9.5,-88.5 + parent: 2 - uid: 11243 components: - type: Transform @@ -74290,6 +76347,11 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-87.5 parent: 2 + - uid: 16537 + components: + - type: Transform + pos: -9.5,-84.5 + parent: 2 - proto: Igniter entities: - uid: 11251 @@ -74302,6 +76364,13 @@ entities: - type: Transform pos: -13.227223,-246.42015 parent: 2 +- proto: InflatableDoorStack + entities: + - uid: 17048 + components: + - type: Transform + pos: -12.358273,-263.51736 + parent: 2 - proto: InflatableWall entities: - uid: 11253 @@ -74340,6 +76409,13 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-162.5 parent: 2 +- proto: InflatableWallStack + entities: + - uid: 17011 + components: + - type: Transform + pos: -12.514523,-263.3455 + parent: 2 - proto: InflatableWallStack1 entities: - uid: 11259 @@ -74479,15 +76555,6 @@ entities: - type: Transform pos: 4.3160653,0.73260295 parent: 2 -- proto: JetpackMini - entities: - - uid: 4697 - components: - - type: Transform - parent: 4694 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: JetpackMiniFilled entities: - uid: 11279 @@ -74505,6 +76572,23 @@ entities: - type: Transform pos: 9.644433,-115.27022 parent: 2 +- proto: JetpackSecurityFilled + entities: + - uid: 16534 + components: + - type: Transform + pos: 8.380586,-343.29535 + parent: 2 + - uid: 16535 + components: + - type: Transform + pos: 8.474336,-343.35785 + parent: 2 + - uid: 16536 + components: + - type: Transform + pos: 8.583711,-343.43597 + parent: 2 - proto: KitchenElectricGrill entities: - uid: 11282 @@ -74536,11 +76620,6 @@ entities: - type: Transform pos: 0.5,-86.5 parent: 2 - - uid: 11287 - components: - - type: Transform - pos: -4.5,-285.5 - parent: 2 - uid: 11288 components: - type: Transform @@ -74585,6 +76664,13 @@ entities: - type: Transform pos: -5.5,-91.5 parent: 2 +- proto: KnifePlastic + entities: + - uid: 10579 + components: + - type: Transform + pos: 6.372781,-141.47812 + parent: 2 - proto: KoboldCubeBox entities: - uid: 11296 @@ -74623,16 +76709,21 @@ entities: parent: 2 - proto: LampGold entities: - - uid: 11302 - components: - - type: Transform - pos: -5.572312,-71.25691 - parent: 2 - - uid: 11303 + - uid: 4695 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.654855,-328.25574 + pos: -2.333134,-72.039474 + parent: 2 + - uid: 13915 + components: + - type: Transform + pos: -13.5078535,-253.96864 + parent: 2 + - uid: 17247 + components: + - type: Transform + pos: 5.487414,-330.11176 parent: 2 - proto: LampInterrogator entities: @@ -74650,15 +76741,15 @@ entities: parent: 2 - proto: Lantern entities: - - uid: 11306 + - uid: 11623 components: - type: Transform - pos: 3.728132,-143.36674 + pos: 3.5,-143.5 parent: 2 - - uid: 11307 + - uid: 11648 components: - type: Transform - pos: 5.2072816,-143.33742 + pos: 5.5,-143.5 parent: 2 - proto: LargeBeaker entities: @@ -74719,32 +76810,33 @@ entities: - type: Transform pos: -13.643399,-246.28522 parent: 2 -- proto: LockerAtmosphericsFilledHardsuit +- proto: LockableButtonAtmospherics entities: - - uid: 11316 + - uid: 16524 components: - type: Transform - anchored: True - pos: -13.5,-263.5 + pos: -22.5,-266.5 parent: 2 - - type: Physics - bodyType: Static - - uid: 11317 + - type: DeviceLinkSource + linkedPorts: + 15823: + - Pressed: Toggle + 9057: + - Pressed: Toggle + 16513: + - Pressed: Toggle +- proto: LockerAtmosphericsFilled + entities: + - uid: 17001 components: - type: Transform - anchored: True - pos: -13.5,-264.5 + pos: -12.5,-265.5 parent: 2 - - type: Physics - bodyType: Static - - uid: 11318 + - uid: 17002 components: - type: Transform - anchored: True - pos: -13.5,-262.5 + pos: -11.5,-265.5 parent: 2 - - type: Physics - bodyType: Static - proto: LockerBoozeFilled entities: - uid: 11319 @@ -74843,10 +76935,10 @@ entities: ent: null - proto: LockerDetectiveFilled entities: - - uid: 11327 + - uid: 17248 components: - type: Transform - pos: -2.5,-73.5 + pos: 4.5,-328.5 parent: 2 - proto: LockerElectricalSupplies entities: @@ -75225,13 +77317,6 @@ entities: - type: Transform pos: 3.5,-261.5 parent: 2 -- proto: LuxuryPen - entities: - - uid: 11383 - components: - - type: Transform - pos: 5.7372117,-332.35062 - parent: 2 - proto: MachineAnomalyGenerator entities: - uid: 11384 @@ -75623,11 +77708,6 @@ entities: - type: Transform pos: 3.5,-18.5 parent: 2 - - uid: 11450 - components: - - type: Transform - pos: 4.5,-143.5 - parent: 2 - uid: 11451 components: - type: Transform @@ -75718,11 +77798,6 @@ entities: parent: 2 - proto: MaterialBones1 entities: - - uid: 11467 - components: - - type: Transform - pos: -9.6216,-313.45743 - parent: 2 - uid: 11468 components: - type: Transform @@ -75979,6 +78054,13 @@ entities: rot: -1.5707963267948966 rad pos: -1.3979578,-304.19202 parent: 2 +- proto: MicrophoneInstrument + entities: + - uid: 12887 + components: + - type: Transform + pos: -8.550903,-118.54294 + parent: 2 - proto: MiningWindow entities: - uid: 11511 @@ -76428,6 +78510,13 @@ entities: - type: Transform pos: -6.3614616,-189.46121 parent: 2 +- proto: NewsReaderCartridge + entities: + - uid: 12875 + components: + - type: Transform + pos: -8.535278,-118.25987 + parent: 2 - proto: NitrogenCanister entities: - uid: 11586 @@ -76440,20 +78529,20 @@ entities: - type: Transform pos: -4.5,-311.5 parent: 2 - - uid: 11588 - components: - - type: Transform - pos: -13.5,-250.5 - parent: 2 - uid: 11589 components: - type: Transform pos: 4.5,-1.5 parent: 2 - - uid: 11590 + - uid: 13903 components: - type: Transform - pos: -21.5,-257.5 + pos: -25.5,-251.5 + parent: 2 + - uid: 17113 + components: + - type: Transform + pos: -13.5,-257.5 parent: 2 - proto: NitrousOxideCanister entities: @@ -76515,15 +78604,15 @@ entities: parent: 2 - proto: OreBag entities: - - uid: 11600 + - uid: 13074 components: - type: Transform - pos: -4.660206,-273.15723 + pos: -4.617825,-272.35403 parent: 2 - - uid: 11601 + - uid: 17229 components: - type: Transform - pos: -4.3602595,-273.51703 + pos: -4.399075,-272.47903 parent: 2 - proto: OreProcessor entities: @@ -76534,6 +78623,11 @@ entities: parent: 2 - proto: OxygenCanister entities: + - uid: 11287 + components: + - type: Transform + pos: -25.5,-253.5 + parent: 2 - uid: 11603 components: - type: Transform @@ -76549,11 +78643,6 @@ entities: - type: Transform pos: -5.5,-312.5 parent: 2 - - uid: 11606 - components: - - type: Transform - pos: -21.5,-255.5 - parent: 2 - uid: 11607 components: - type: Transform @@ -76564,6 +78653,11 @@ entities: - type: Transform pos: -6.5,-258.5 parent: 2 + - uid: 17112 + components: + - type: Transform + pos: -13.5,-259.5 + parent: 2 - proto: PaintingAmogusTriptych entities: - uid: 11609 @@ -76580,16 +78674,6 @@ entities: parent: 2 - proto: Paper entities: - - uid: 11611 - components: - - type: Transform - pos: -5.538568,-72.16771 - parent: 2 - - uid: 11612 - components: - - type: Transform - pos: -5.6735435,-72.06651 - parent: 2 - uid: 11613 components: - type: Transform @@ -76600,16 +78684,6 @@ entities: - type: Transform pos: 1.1885252,-250.9767 parent: 2 - - uid: 11615 - components: - - type: Transform - pos: 5.1001754,-328.37433 - parent: 2 - - uid: 11616 - components: - - type: Transform - pos: 5.271862,-328.51956 - parent: 2 - proto: PaperBin10 entities: - uid: 11617 @@ -76635,11 +78709,6 @@ entities: - type: Transform pos: -1.5,-303.5 parent: 2 - - uid: 11621 - components: - - type: Transform - pos: 6.5,-332.5 - parent: 2 - proto: PaperBin5 entities: - uid: 11622 @@ -76648,11 +78717,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-139.5 parent: 2 - - uid: 11623 - components: - - type: Transform - pos: -5.5,-72.5 - parent: 2 - proto: PaperOffice entities: - uid: 11624 @@ -76734,8 +78798,35 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-259.5 parent: 2 +- proto: PartRodMetal + entities: + - uid: 17059 + components: + - type: Transform + pos: -13.120564,-263.43057 + parent: 2 + - uid: 17060 + components: + - type: Transform + pos: -13.120564,-263.43057 + parent: 2 + - uid: 17209 + components: + - type: Transform + pos: 21.52842,-255.49559 + parent: 2 + - uid: 17210 + components: + - type: Transform + pos: 21.65342,-255.66747 + parent: 2 - proto: Pen entities: + - uid: 4760 + components: + - type: Transform + pos: -5.4438367,-71.46576 + parent: 2 - uid: 11635 components: - type: Transform @@ -76761,6 +78852,11 @@ entities: - type: Transform pos: 4.3734927,-272.86963 parent: 2 + - uid: 12874 + components: + - type: Transform + pos: -5.6625867,-71.481384 + parent: 2 - proto: PhoneInstrument entities: - uid: 11640 @@ -76783,11 +78879,6 @@ entities: - type: Transform pos: -7.5629373,-271.36987 parent: 2 - - uid: 11643 - components: - - type: Transform - pos: -4.5245614,-272.94254 - parent: 2 - uid: 11644 components: - type: Transform @@ -76809,8 +78900,20 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: PlaqueAtmos + entities: + - uid: 13971 + components: + - type: Transform + pos: -12.5,-250.5 + parent: 2 - proto: PlasmaCanister entities: + - uid: 9045 + components: + - type: Transform + pos: -25.5,-259.5 + parent: 2 - uid: 11646 components: - type: Transform @@ -76821,11 +78924,6 @@ entities: - type: Transform pos: -5.5,-311.5 parent: 2 - - uid: 11648 - components: - - type: Transform - pos: -21.5,-251.5 - parent: 2 - proto: PlasmaReinforcedWindowDirectional entities: - uid: 11649 @@ -76961,13 +79059,6 @@ entities: parent: 11563 - type: Physics canCollide: False -- proto: PlushieSpaceLizard - entities: - - uid: 11669 - components: - - type: Transform - pos: -22.266762,-264.84647 - parent: 2 - proto: PortableFlasher entities: - uid: 11670 @@ -77012,14 +79103,6 @@ entities: - type: Transform pos: 4.5,-67.5 parent: 2 - - uid: 11678 - components: - - type: Transform - anchored: True - pos: -17.5,-265.5 - parent: 2 - - type: Physics - bodyType: Static - uid: 11679 components: - type: Transform @@ -77076,21 +79159,6 @@ entities: parent: 2 - proto: PortableScrubber entities: - - uid: 11689 - components: - - type: Transform - pos: -20.5,-263.5 - parent: 2 - - uid: 11690 - components: - - type: Transform - pos: -11.5,-254.5 - parent: 2 - - uid: 11691 - components: - - type: Transform - pos: -11.5,-253.5 - parent: 2 - uid: 11692 components: - type: Transform @@ -77101,11 +79169,6 @@ entities: - type: Transform pos: 2.5,-112.5 parent: 2 - - uid: 11694 - components: - - type: Transform - pos: -19.5,-263.5 - parent: 2 - uid: 11695 components: - type: Transform @@ -77151,6 +79214,13 @@ entities: deleteOnEmptyLinks: True linkedEntities: - 11697 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 17008 + components: + - type: Transform + pos: -10.5,-254.5 + parent: 2 - proto: PosterContrabandBeachStarYamamoto entities: - uid: 11700 @@ -77459,18 +79529,6 @@ entities: parent: 2 - proto: Poweredlight entities: - - uid: 11751 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-251.5 - parent: 2 - - uid: 11752 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-257.5 - parent: 2 - uid: 11753 components: - type: Transform @@ -77654,18 +79712,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-261.5 parent: 2 - - uid: 11785 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-252.5 - parent: 2 - - uid: 11786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-265.5 - parent: 2 - uid: 11787 components: - type: Transform @@ -77678,6 +79724,88 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-246.5 parent: 2 + - uid: 16965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-251.5 + parent: 2 + - uid: 16966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-253.5 + parent: 2 + - uid: 16967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-255.5 + parent: 2 + - uid: 16968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-257.5 + parent: 2 + - uid: 16969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-259.5 + parent: 2 + - uid: 16970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-261.5 + parent: 2 + - uid: 16971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-263.5 + parent: 2 + - uid: 16972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-250.5 + parent: 2 + - uid: 16973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-264.5 + parent: 2 + - uid: 16974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-256.5 + parent: 2 + - uid: 17057 + components: + - type: Transform + pos: -12.5,-263.5 + parent: 2 + - uid: 17083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-267.5 + parent: 2 + - uid: 17084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-269.5 + parent: 2 + - uid: 17089 + components: + - type: Transform + pos: -25.5,-265.5 + parent: 2 - proto: PoweredlightBlue entities: - uid: 11789 @@ -77703,12 +79831,6 @@ entities: - type: Transform pos: 4.5,-14.5 parent: 2 - - uid: 11793 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-260.5 - parent: 2 - proto: PoweredlightExterior entities: - uid: 11794 @@ -78707,12 +80829,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-8.5 parent: 2 - - uid: 11967 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-251.5 - parent: 2 - uid: 11968 components: - type: Transform @@ -78939,12 +81055,6 @@ entities: - type: Transform pos: -5.5,-95.5 parent: 2 - - uid: 12008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-257.5 - parent: 2 - uid: 12009 components: - type: Transform @@ -79136,12 +81246,6 @@ entities: - type: Transform pos: 1.5,-241.5 parent: 2 - - uid: 12043 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-253.5 - parent: 2 - uid: 12044 components: - type: Transform @@ -79164,12 +81268,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-249.5 parent: 2 - - uid: 12048 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-255.5 - parent: 2 - uid: 12049 components: - type: Transform @@ -79837,23 +81935,23 @@ entities: - type: Transform pos: -7.5,-260.5 parent: 2 - - uid: 12167 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-263.5 - parent: 2 - - uid: 12168 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-265.5 - parent: 2 - uid: 12169 components: - type: Transform pos: -6.5,-248.5 parent: 2 + - uid: 13850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-252.5 + parent: 2 + - uid: 16975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-256.5 + parent: 2 - proto: PoweredSmallLightEmpty entities: - uid: 12170 @@ -80143,13 +82241,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 935 - components: - - type: Transform - parent: 932 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 12221 components: - type: Transform @@ -80280,29 +82371,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-41.5 parent: 2 - - uid: 12244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-280.5 - parent: 2 - - uid: 12245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-142.5 - parent: 2 - - uid: 12246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-142.5 - parent: 2 - - uid: 12247 - components: - - type: Transform - pos: -0.5,-278.5 - parent: 2 - uid: 12248 components: - type: Transform @@ -80726,74 +82794,6 @@ entities: - type: Transform pos: 5.5,-42.5 parent: 2 - - uid: 12323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-278.5 - parent: 2 - - uid: 12324 - components: - - type: Transform - pos: 0.5,-280.5 - parent: 2 - - uid: 12325 - components: - - type: Transform - pos: 3.5,-142.5 - parent: 2 - - uid: 12326 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-142.5 - parent: 2 - - uid: 12327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-141.5 - parent: 2 - - uid: 12328 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-141.5 - parent: 2 - - uid: 12329 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-141.5 - parent: 2 - - uid: 12330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-141.5 - parent: 2 - - uid: 12331 - components: - - type: Transform - pos: -6.5,-152.5 - parent: 2 - - uid: 12332 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-152.5 - parent: 2 - - uid: 12333 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-150.5 - parent: 2 - - uid: 12334 - components: - - type: Transform - pos: -6.5,-150.5 - parent: 2 - uid: 12335 components: - type: Transform @@ -81632,10 +83632,15 @@ entities: parent: 2 - proto: RandomArtifactSpawner entities: - - uid: 12480 + - uid: 10580 components: - type: Transform - pos: -8.5,-314.5 + pos: -9.5,-313.5 + parent: 2 + - uid: 11690 + components: + - type: Transform + pos: -9.5,-315.5 parent: 2 - uid: 16962 components: @@ -81649,6 +83654,16 @@ entities: - type: Transform pos: -9.5,-311.5 parent: 2 + - uid: 16532 + components: + - type: Transform + pos: 3.5,-278.5 + parent: 2 + - uid: 16533 + components: + - type: Transform + pos: 3.5,-279.5 + parent: 2 - proto: RandomBoard entities: - uid: 12482 @@ -81739,11 +83754,6 @@ entities: - type: Transform pos: 4.5,-6.5 parent: 2 - - uid: 12498 - components: - - type: Transform - pos: -7.5,-118.5 - parent: 2 - proto: RandomFoodMeal entities: - uid: 12499 @@ -81783,11 +83793,6 @@ entities: - type: Transform pos: 3.5,-87.5 parent: 2 - - uid: 12506 - components: - - type: Transform - pos: 3.5,-90.5 - parent: 2 - uid: 12507 components: - type: Transform @@ -82008,18 +84013,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-95.5 parent: 2 - - uid: 12544 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-83.5 - parent: 2 - - uid: 12545 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-69.5 - parent: 2 - uid: 12546 components: - type: Transform @@ -82153,16 +84146,6 @@ entities: - type: Transform pos: -7.5,-134.5 parent: 2 - - uid: 12569 - components: - - type: Transform - pos: -5.5,-279.5 - parent: 2 - - uid: 12570 - components: - - type: Transform - pos: -5.5,-280.5 - parent: 2 - proto: RandomVendingDrinks entities: - uid: 12571 @@ -82226,6 +84209,136 @@ entities: parent: 2 - proto: ReinforcedPlasmaWindow entities: + - uid: 143 + components: + - type: Transform + pos: -22.5,-257.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: -22.5,-255.5 + parent: 2 + - uid: 3047 + components: + - type: Transform + pos: -20.5,-261.5 + parent: 2 + - uid: 4291 + components: + - type: Transform + pos: -20.5,-250.5 + parent: 2 + - uid: 5240 + components: + - type: Transform + pos: -20.5,-253.5 + parent: 2 + - uid: 5241 + components: + - type: Transform + pos: -20.5,-255.5 + parent: 2 + - uid: 5245 + components: + - type: Transform + pos: -20.5,-256.5 + parent: 2 + - uid: 5267 + components: + - type: Transform + pos: -20.5,-262.5 + parent: 2 + - uid: 7151 + components: + - type: Transform + pos: -20.5,-263.5 + parent: 2 + - uid: 7561 + components: + - type: Transform + pos: -20.5,-264.5 + parent: 2 + - uid: 7579 + components: + - type: Transform + pos: -22.5,-259.5 + parent: 2 + - uid: 7588 + components: + - type: Transform + pos: -20.5,-251.5 + parent: 2 + - uid: 7633 + components: + - type: Transform + pos: -20.5,-257.5 + parent: 2 + - uid: 7648 + components: + - type: Transform + pos: -20.5,-252.5 + parent: 2 + - uid: 8455 + components: + - type: Transform + pos: -22.5,-263.5 + parent: 2 + - uid: 8456 + components: + - type: Transform + pos: -20.5,-258.5 + parent: 2 + - uid: 8546 + components: + - type: Transform + pos: -22.5,-261.5 + parent: 2 + - uid: 8588 + components: + - type: Transform + pos: -20.5,-254.5 + parent: 2 + - uid: 8608 + components: + - type: Transform + pos: -20.5,-249.5 + parent: 2 + - uid: 8611 + components: + - type: Transform + pos: -20.5,-259.5 + parent: 2 + - uid: 9050 + components: + - type: Transform + pos: -24.5,-266.5 + parent: 2 + - uid: 9323 + components: + - type: Transform + pos: -26.5,-266.5 + parent: 2 + - uid: 9448 + components: + - type: Transform + pos: -25.5,-270.5 + parent: 2 + - uid: 9455 + components: + - type: Transform + pos: -22.5,-253.5 + parent: 2 + - uid: 10089 + components: + - type: Transform + pos: -23.5,-267.5 + parent: 2 + - uid: 10107 + components: + - type: Transform + pos: -23.5,-269.5 + parent: 2 - uid: 12581 components: - type: Transform @@ -82376,8 +84489,147 @@ entities: - type: Transform pos: -7.5,-312.5 parent: 2 + - uid: 14357 + components: + - type: Transform + pos: -22.5,-251.5 + parent: 2 + - uid: 15007 + components: + - type: Transform + pos: -20.5,-260.5 + parent: 2 + - uid: 15869 + components: + - type: Transform + pos: -24.5,-270.5 + parent: 2 + - uid: 16435 + components: + - type: Transform + pos: -25.5,-266.5 + parent: 2 + - uid: 16477 + components: + - type: Transform + pos: -26.5,-270.5 + parent: 2 + - uid: 16986 + components: + - type: Transform + pos: -20.5,-265.5 + parent: 2 +- proto: ReinforcedShiv + entities: + - uid: 17207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.43732,-269.6301 + parent: 2 - proto: ReinforcedWindow entities: + - uid: 4828 + components: + - type: Transform + pos: -2.5,-286.5 + parent: 2 + - uid: 4829 + components: + - type: Transform + pos: -3.5,-286.5 + parent: 2 + - uid: 4830 + components: + - type: Transform + pos: -3.5,-285.5 + parent: 2 + - uid: 4831 + components: + - type: Transform + pos: -4.5,-285.5 + parent: 2 + - uid: 8639 + components: + - type: Transform + pos: -8.5,-90.5 + parent: 2 + - uid: 9055 + components: + - type: Transform + pos: -17.5,-270.5 + parent: 2 + - uid: 9456 + components: + - type: Transform + pos: -9.5,-89.5 + parent: 2 + - uid: 9465 + components: + - type: Transform + pos: -9.5,-82.5 + parent: 2 + - uid: 9886 + components: + - type: Transform + pos: -10.5,-83.5 + parent: 2 + - uid: 9915 + components: + - type: Transform + pos: -7.5,-82.5 + parent: 2 + - uid: 9943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-122.5 + parent: 2 + - uid: 10076 + components: + - type: Transform + pos: -10.5,-88.5 + parent: 2 + - uid: 10105 + components: + - type: Transform + pos: -16.5,-268.5 + parent: 2 + - uid: 11669 + components: + - type: Transform + pos: -7.5,-152.5 + parent: 2 + - uid: 11793 + components: + - type: Transform + pos: -9.5,-90.5 + parent: 2 + - uid: 11967 + components: + - type: Transform + pos: -7.5,-90.5 + parent: 2 + - uid: 12324 + components: + - type: Transform + pos: -10.5,-89.5 + parent: 2 + - uid: 12325 + components: + - type: Transform + pos: -9.5,-83.5 + parent: 2 + - uid: 12326 + components: + - type: Transform + pos: -8.5,-82.5 + parent: 2 + - uid: 12329 + components: + - type: Transform + pos: -10.5,-84.5 + parent: 2 - uid: 12608 components: - type: Transform @@ -82605,11 +84857,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-73.5 parent: 2 - - uid: 12653 - components: - - type: Transform - pos: -7.5,-82.5 - parent: 2 - uid: 12654 components: - type: Transform @@ -82685,11 +84932,6 @@ entities: - type: Transform pos: 7.5,-96.5 parent: 2 - - uid: 12669 - components: - - type: Transform - pos: -7.5,-90.5 - parent: 2 - uid: 12670 components: - type: Transform @@ -82711,11 +84953,6 @@ entities: - type: Transform pos: 7.5,-64.5 parent: 2 - - uid: 12674 - components: - - type: Transform - pos: -18.5,-249.5 - parent: 2 - uid: 12675 components: - type: Transform @@ -82811,11 +85048,6 @@ entities: - type: Transform pos: -2.5,-120.5 parent: 2 - - uid: 12694 - components: - - type: Transform - pos: 1.5,-122.5 - parent: 2 - uid: 12695 components: - type: Transform @@ -82856,11 +85088,6 @@ entities: - type: Transform pos: -7.5,-150.5 parent: 2 - - uid: 12703 - components: - - type: Transform - pos: -7.5,-152.5 - parent: 2 - uid: 12704 components: - type: Transform @@ -83270,12 +85497,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-246.5 parent: 2 - - uid: 12781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-251.5 - parent: 2 - uid: 12782 components: - type: Transform @@ -83681,54 +85902,12 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-364.5 parent: 2 - - uid: 12856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-260.5 - parent: 2 - - uid: 12857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-253.5 - parent: 2 - - uid: 12858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-257.5 - parent: 2 - - uid: 12859 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-263.5 - parent: 2 - - uid: 12860 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-259.5 - parent: 2 - - uid: 12861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-255.5 - parent: 2 - uid: 12862 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-300.5 parent: 2 - - uid: 12863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-261.5 - parent: 2 - uid: 12864 components: - type: Transform @@ -83777,6 +85956,141 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-117.5 parent: 2 + - uid: 13352 + components: + - type: Transform + pos: -10.5,-263.5 + parent: 2 + - uid: 13363 + components: + - type: Transform + pos: -10.5,-265.5 + parent: 2 + - uid: 13427 + components: + - type: Transform + pos: -10.5,-264.5 + parent: 2 + - uid: 14009 + components: + - type: Transform + pos: -10.5,-266.5 + parent: 2 + - uid: 14833 + components: + - type: Transform + pos: -11.5,-266.5 + parent: 2 + - uid: 15726 + components: + - type: Transform + pos: 0.5,-93.5 + parent: 2 + - uid: 15766 + components: + - type: Transform + pos: 1.5,-93.5 + parent: 2 + - uid: 15779 + components: + - type: Transform + pos: 1.5,-83.5 + parent: 2 + - uid: 15822 + components: + - type: Transform + pos: 0.5,-83.5 + parent: 2 + - uid: 16432 + components: + - type: Transform + pos: -18.5,-270.5 + parent: 2 + - uid: 16433 + components: + - type: Transform + pos: -1.5,-276.5 + parent: 2 + - uid: 16434 + components: + - type: Transform + pos: -0.5,-275.5 + parent: 2 + - uid: 16510 + components: + - type: Transform + pos: 3.5,-331.5 + parent: 2 + - uid: 16512 + components: + - type: Transform + pos: -16.5,-270.5 + parent: 2 + - uid: 16522 + components: + - type: Transform + pos: -16.5,-269.5 + parent: 2 + - uid: 16988 + components: + - type: Transform + pos: -10.5,-262.5 + parent: 2 + - uid: 16989 + components: + - type: Transform + pos: -11.5,-262.5 + parent: 2 + - uid: 17219 + components: + - type: Transform + pos: -4.5,-284.5 + parent: 2 + - uid: 17220 + components: + - type: Transform + pos: -0.5,-283.5 + parent: 2 + - uid: 17221 + components: + - type: Transform + pos: -1.5,-283.5 + parent: 2 + - uid: 17222 + components: + - type: Transform + pos: -1.5,-282.5 + parent: 2 + - uid: 17223 + components: + - type: Transform + pos: -1.5,-275.5 + parent: 2 + - uid: 17224 + components: + - type: Transform + pos: -4.5,-274.5 + parent: 2 + - uid: 17225 + components: + - type: Transform + pos: -4.5,-273.5 + parent: 2 + - uid: 17226 + components: + - type: Transform + pos: -3.5,-273.5 + parent: 2 + - uid: 17227 + components: + - type: Transform + pos: -3.5,-272.5 + parent: 2 + - uid: 17228 + components: + - type: Transform + pos: -2.5,-272.5 + parent: 2 - proto: ReinforcedWindowDiagonal entities: - uid: 12872 @@ -83789,33 +86103,12 @@ entities: - type: Transform pos: -6.5,-52.5 parent: 2 - - uid: 12874 - components: - - type: Transform - pos: -8.5,-82.5 - parent: 2 - - uid: 12875 - components: - - type: Transform - pos: -9.5,-83.5 - parent: 2 - - uid: 12876 - components: - - type: Transform - pos: -10.5,-84.5 - parent: 2 - uid: 12877 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,3.5 parent: 2 - - uid: 12878 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-84.5 - parent: 2 - uid: 12879 components: - type: Transform @@ -83840,42 +86133,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,3.5 parent: 2 - - uid: 12883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-88.5 - parent: 2 - - uid: 12884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-83.5 - parent: 2 - - uid: 12885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-90.5 - parent: 2 - - uid: 12886 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-88.5 - parent: 2 - - uid: 12887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-89.5 - parent: 2 - - uid: 12888 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-89.5 - parent: 2 - uid: 12889 components: - type: Transform @@ -83917,12 +86174,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-202.5 parent: 2 - - uid: 12896 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-122.5 - parent: 2 - uid: 12897 components: - type: Transform @@ -84105,16 +86356,16 @@ entities: parent: 2 - proto: SeedExtractor entities: + - uid: 12327 + components: + - type: Transform + pos: -8.5,-83.5 + parent: 2 - uid: 12926 components: - type: Transform pos: 3.5,-374.5 parent: 2 - - uid: 12927 - components: - - type: Transform - pos: -8.5,-84.5 - parent: 2 - proto: ShardCrystalGreen entities: - uid: 12928 @@ -84287,36 +86538,6 @@ entities: - type: Transform pos: -2.0033119,-5.403715 parent: 2 - - uid: 12957 - components: - - type: Transform - pos: -11.535454,-257.38806 - parent: 2 - - uid: 12958 - components: - - type: Transform - pos: -11.540955,-257.3627 - parent: 2 - - uid: 12959 - components: - - type: Transform - pos: -11.535454,-257.38806 - parent: 2 - - uid: 12960 - components: - - type: Transform - pos: -11.535454,-257.38806 - parent: 2 - - uid: 12961 - components: - - type: Transform - pos: -11.535454,-257.38806 - parent: 2 - - uid: 12962 - components: - - type: Transform - pos: -11.535454,-257.38806 - parent: 2 - uid: 12963 components: - type: Transform @@ -84352,6 +86573,36 @@ entities: - type: Transform pos: 4.3490157,-242.4043 parent: 2 + - uid: 16997 + components: + - type: Transform + pos: -11.535457,-263.4705 + parent: 2 + - uid: 17003 + components: + - type: Transform + pos: -11.535457,-263.4705 + parent: 2 + - uid: 17004 + components: + - type: Transform + pos: -11.535457,-263.4705 + parent: 2 + - uid: 17005 + components: + - type: Transform + pos: -11.535457,-263.4705 + parent: 2 + - uid: 17006 + components: + - type: Transform + pos: -11.535457,-263.4705 + parent: 2 + - uid: 17007 + components: + - type: Transform + pos: -11.535457,-263.4705 + parent: 2 - proto: SheetUranium entities: - uid: 12970 @@ -84465,16 +86716,6 @@ entities: - Pressed: Toggle 829: - Pressed: Toggle - - uid: 12982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-118.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 79: - - Pressed: DoorBolt - uid: 12983 components: - type: Transform @@ -84589,7 +86830,7 @@ entities: parent: 2 - proto: SignAtmos entities: - - uid: 12994 + - uid: 12669 components: - type: Transform pos: -3.5,-249.5 @@ -84644,11 +86885,6 @@ entities: - type: Transform pos: 2.5,-147.5 parent: 2 - - uid: 13002 - components: - - type: Transform - pos: 6.5,-147.5 - parent: 2 - proto: SignChem entities: - uid: 13003 @@ -84666,10 +86902,9 @@ entities: parent: 2 - proto: SignConference entities: - - uid: 13005 + - uid: 12674 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,-13.5 parent: 2 - proto: SignCryogenicsMed @@ -85063,12 +87298,25 @@ entities: parent: 2 - proto: SignEVA entities: + - uid: 12960 + components: + - type: Transform + pos: 6.5,-119.5 + parent: 2 - uid: 13066 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-3.5 parent: 2 +- proto: SignGravity + entities: + - uid: 17208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-262.5 + parent: 2 - proto: SignHead entities: - uid: 13067 @@ -85112,13 +87360,19 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-56.5 parent: 2 -- proto: SignLawyer +- proto: SignKitchen entities: - - uid: 13074 + - uid: 10576 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-329.5 + pos: 3.5,-92.5 + parent: 2 +- proto: SignLawyer + entities: + - uid: 4698 + components: + - type: Transform + pos: -5.5,-69.5 parent: 2 - proto: SignLibrary entities: @@ -85149,6 +87403,13 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-173.5 parent: 2 +- proto: SignNews + entities: + - uid: 721 + components: + - type: Transform + pos: -5.5,-118.5 + parent: 2 - proto: SignNosmoking entities: - uid: 13079 @@ -85868,6 +88129,13 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-302.5 parent: 2 +- proto: SignTheater + entities: + - uid: 675 + components: + - type: Transform + pos: -5.5,-123.5 + parent: 2 - proto: SignVirology entities: - uid: 13200 @@ -85961,11 +88229,6 @@ entities: parent: 2 - proto: SMESBasic entities: - - uid: 13214 - components: - - type: Transform - pos: -11.5,-251.5 - parent: 2 - uid: 13215 components: - type: Transform @@ -86449,18 +88712,6 @@ entities: - type: Transform pos: 17.648165,-82.3042 parent: 2 -- proto: SpaceHeater - entities: - - uid: 13295 - components: - - type: Transform - pos: -11.5,-256.5 - parent: 2 - - uid: 13296 - components: - - type: Transform - pos: -11.5,-255.5 - parent: 2 - proto: SpaceVillainArcadeComputerCircuitboard entities: - uid: 13297 @@ -86523,10 +88774,10 @@ entities: parent: 2 - proto: SpawnMobCrabAtmos entities: - - uid: 13305 + - uid: 17061 components: - type: Transform - pos: -15.5,-265.5 + pos: -12.5,-253.5 parent: 2 - proto: SpawnMobFoxRenault entities: @@ -86624,20 +88875,15 @@ entities: parent: 2 - proto: SpawnPointAtmos entities: - - uid: 13321 + - uid: 17062 components: - type: Transform - pos: -14.5,-264.5 + pos: -13.5,-264.5 parent: 2 - - uid: 13322 + - uid: 17063 components: - type: Transform - pos: -14.5,-263.5 - parent: 2 - - uid: 13323 - components: - - type: Transform - pos: -14.5,-262.5 + pos: -12.5,-264.5 parent: 2 - proto: SpawnPointBartender entities: @@ -86743,10 +88989,10 @@ entities: parent: 2 - proto: SpawnPointDetective entities: - - uid: 13340 + - uid: 17258 components: - type: Transform - pos: -5.5,-73.5 + pos: 5.5,-331.5 parent: 2 - proto: SpawnPointHeadOfPersonnel entities: @@ -86808,15 +89054,15 @@ entities: parent: 2 - proto: SpawnPointLawyer entities: - - uid: 13351 + - uid: 12884 components: - type: Transform - pos: 5.5,-329.5 + pos: -4.5,-72.5 parent: 2 - - uid: 13352 + - uid: 13321 components: - type: Transform - pos: 5.5,-331.5 + pos: -4.5,-71.5 parent: 2 - proto: SpawnPointLibrarian entities: @@ -86889,11 +89135,6 @@ entities: - type: Transform pos: -8.5,-115.5 parent: 2 - - uid: 13363 - components: - - type: Transform - pos: -6.5,-118.5 - parent: 2 - uid: 13364 components: - type: Transform @@ -86906,6 +89147,13 @@ entities: - type: Transform pos: 4.5,-285.5 parent: 2 +- proto: SpawnPointReporter + entities: + - uid: 12885 + components: + - type: Transform + pos: -7.5,-119.5 + parent: 2 - proto: SpawnPointResearchAssistant entities: - uid: 13366 @@ -87270,20 +89518,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-307.5 parent: 2 -- proto: StatueVenusBlue - entities: - - uid: 13427 - components: - - type: Transform - pos: 3.5,-141.5 - parent: 2 -- proto: StatueVenusRed - entities: - - uid: 13428 - components: - - type: Transform - pos: 5.5,-141.5 - parent: 2 - proto: SteelBench entities: - uid: 13429 @@ -87353,6 +89587,12 @@ entities: parent: 2 - proto: StoolBar entities: + - uid: 9453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-255.5 + parent: 2 - uid: 13440 components: - type: Transform @@ -87389,13 +89629,50 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-89.5 parent: 2 + - uid: 13769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-255.5 + parent: 2 + - uid: 13969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-255.5 + parent: 2 - proto: StorageCanister entities: + - uid: 9043 + components: + - type: Transform + pos: -25.5,-261.5 + parent: 2 + - uid: 12323 + components: + - type: Transform + pos: -25.5,-263.5 + parent: 2 - uid: 13446 components: - type: Transform pos: -21.5,-240.5 parent: 2 + - uid: 17109 + components: + - type: Transform + pos: -17.5,-249.5 + parent: 2 + - uid: 17110 + components: + - type: Transform + pos: -19.5,-249.5 + parent: 2 + - uid: 17111 + components: + - type: Transform + pos: -12.5,-257.5 + parent: 2 - proto: Stunbaton entities: - uid: 5608 @@ -87417,6 +89694,11 @@ entities: parent: 2 - proto: SubstationBasic entities: + - uid: 9449 + components: + - type: Transform + pos: -13.5,-250.5 + parent: 2 - uid: 13449 components: - type: Transform @@ -87432,11 +89714,6 @@ entities: - type: Transform pos: 3.5,-53.5 parent: 2 - - uid: 13452 - components: - - type: Transform - pos: -11.5,-252.5 - parent: 2 - uid: 13453 components: - type: Transform @@ -87512,6 +89789,18 @@ entities: - type: Transform pos: 29.942026,-307.55215 parent: 2 +- proto: SuitStorageAtmos + entities: + - uid: 17010 + components: + - type: Transform + pos: -14.5,-265.5 + parent: 2 + - uid: 17015 + components: + - type: Transform + pos: -13.5,-265.5 + parent: 2 - proto: SuitStorageBasic entities: - uid: 13467 @@ -87971,6 +90260,17 @@ entities: parent: 2 - proto: SurveillanceCameraSecurity entities: + - uid: 11752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-71.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Law Office - uid: 13541 components: - type: Transform @@ -88067,12 +90367,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-53.5 parent: 2 - - uid: 13557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-70.5 - parent: 2 - uid: 13558 components: - type: Transform @@ -88105,6 +90399,11 @@ entities: parent: 2 - proto: SurveillanceCameraWirelessRouterEntertainment entities: + - uid: 12653 + components: + - type: Transform + pos: -6.5,-118.5 + parent: 2 - uid: 13563 components: - type: Transform @@ -88117,18 +90416,22 @@ entities: parent: 2 - proto: SurveillanceWirelessCameraMovableEntertainment entities: + - uid: 79 + components: + - type: Transform + pos: -7.5,-118.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: Channel 13 - uid: 13565 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-371.5 parent: 2 - - uid: 13566 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-119.5 - parent: 2 - uid: 13567 components: - type: Transform @@ -88155,6 +90458,11 @@ entities: parent: 2 - proto: Table entities: + - uid: 720 + components: + - type: Transform + pos: -8.5,-118.5 + parent: 2 - uid: 13572 components: - type: Transform @@ -88181,12 +90489,6 @@ entities: - type: Transform pos: 8.5,-175.5 parent: 2 - - uid: 13577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-257.5 - parent: 2 - uid: 13578 components: - type: Transform @@ -88243,8 +90545,38 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-202.5 parent: 2 + - uid: 16538 + components: + - type: Transform + pos: -8.5,-89.5 + parent: 2 + - uid: 16998 + components: + - type: Transform + pos: -11.5,-263.5 + parent: 2 + - uid: 16999 + components: + - type: Transform + pos: -13.5,-263.5 + parent: 2 + - uid: 17044 + components: + - type: Transform + pos: -12.5,-263.5 + parent: 2 + - uid: 17058 + components: + - type: Transform + pos: -14.5,-263.5 + parent: 2 - proto: TableCarpet entities: + - uid: 4697 + components: + - type: Transform + pos: -2.5,-72.5 + parent: 2 - uid: 13588 components: - type: Transform @@ -88323,6 +90655,11 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-82.5 parent: 2 + - uid: 14853 + components: + - type: Transform + pos: -3.5,-72.5 + parent: 2 - proto: TableCounterMetal entities: - uid: 13601 @@ -88476,11 +90813,6 @@ entities: - type: Transform pos: -7.5,-112.5 parent: 2 - - uid: 13628 - components: - - type: Transform - pos: -7.5,-118.5 - parent: 2 - uid: 13629 components: - type: Transform @@ -88587,6 +90919,11 @@ entities: parent: 2 - proto: TableReinforced entities: + - uid: 11786 + components: + - type: Transform + pos: 1.5,-89.5 + parent: 2 - uid: 13650 components: - type: Transform @@ -88963,11 +91300,6 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,-247.5 parent: 2 - - uid: 13717 - components: - - type: Transform - pos: -4.5,-273.5 - parent: 2 - uid: 13718 components: - type: Transform @@ -88990,11 +91322,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-271.5 parent: 2 - - uid: 13722 - components: - - type: Transform - pos: -4.5,-285.5 - parent: 2 - uid: 13723 components: - type: Transform @@ -89232,42 +91559,6 @@ entities: - type: Transform pos: -6.5,-340.5 parent: 2 - - uid: 13769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-328.5 - parent: 2 - - uid: 13770 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-328.5 - parent: 2 - - uid: 13771 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-331.5 - parent: 2 - - uid: 13772 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-332.5 - parent: 2 - - uid: 13773 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-332.5 - parent: 2 - - uid: 13774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-332.5 - parent: 2 - uid: 13775 components: - type: Transform @@ -89431,6 +91722,11 @@ entities: - type: Transform pos: -5.5,-340.5 parent: 2 + - uid: 13955 + components: + - type: Transform + pos: 8.5,-343.5 + parent: 2 - proto: TableReinforcedGlass entities: - uid: 13806 @@ -89523,26 +91819,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-121.5 parent: 2 - - uid: 13821 - components: - - type: Transform - pos: 6.5,-142.5 - parent: 2 - - uid: 13822 - components: - - type: Transform - pos: 6.5,-143.5 - parent: 2 - - uid: 13823 - components: - - type: Transform - pos: 2.5,-142.5 - parent: 2 - - uid: 13824 - components: - - type: Transform - pos: 2.5,-143.5 - parent: 2 - uid: 13825 components: - type: Transform @@ -89651,6 +91927,62 @@ entities: parent: 2 - proto: TableWood entities: + - uid: 467 + components: + - type: Transform + pos: 6.5,-141.5 + parent: 2 + - uid: 4777 + components: + - type: Transform + pos: 2.5,-141.5 + parent: 2 + - uid: 9454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-254.5 + parent: 2 + - uid: 12008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-254.5 + parent: 2 + - uid: 12167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-251.5 + parent: 2 + - uid: 12244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-251.5 + parent: 2 + - uid: 12246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-253.5 + parent: 2 + - uid: 12863 + components: + - type: Transform + pos: -5.5,-70.5 + parent: 2 + - uid: 13305 + components: + - type: Transform + pos: -5.5,-71.5 + parent: 2 + - uid: 13340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-254.5 + parent: 2 - uid: 13844 components: - type: Transform @@ -89682,15 +92014,17 @@ entities: - type: Transform pos: 0.5,-64.5 parent: 2 - - uid: 13850 + - uid: 17252 components: - type: Transform - pos: -5.5,-71.5 + rot: 3.141592653589793 rad + pos: 5.5,-330.5 parent: 2 - - uid: 13851 + - uid: 17253 components: - type: Transform - pos: -5.5,-72.5 + rot: 3.141592653589793 rad + pos: 6.5,-330.5 parent: 2 - proto: TargetDarts entities: @@ -89943,12 +92277,20 @@ entities: parent: 2 - proto: ToiletDirtyWater entities: - - uid: 13865 + - uid: 11689 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-150.5 parent: 2 +- proto: ToiletEmpty + entities: + - uid: 11678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-152.5 + parent: 2 - proto: ToolboxArtisticFilled entities: - uid: 13866 @@ -90136,20 +92478,6 @@ entities: - type: Transform pos: 4.883979,-282.15594 parent: 2 -- proto: ToyFigurineChaplain - entities: - - uid: 13899 - components: - - type: Transform - pos: 6.4167213,-142.44421 - parent: 2 -- proto: ToyFigurineChef - entities: - - uid: 13900 - components: - - type: Transform - pos: 3.5768247,-91.526825 - parent: 2 - proto: ToyFigurineChemist entities: - uid: 13901 @@ -90164,13 +92492,6 @@ entities: - type: Transform pos: -7.7240214,-124.14133 parent: 2 -- proto: ToyFigurineDetective - entities: - - uid: 13903 - components: - - type: Transform - pos: -5.2573676,-71.2794 - parent: 2 - proto: ToyFigurineFootsoldier entities: - uid: 13904 @@ -90269,13 +92590,6 @@ entities: - type: Transform pos: -3.5431526,-346.0501 parent: 2 -- proto: ToyFigurineLawyer - entities: - - uid: 13915 - components: - - type: Transform - pos: 6.025828,-332.01364 - parent: 2 - proto: ToyFigurineLibrarian entities: - uid: 13916 @@ -90365,13 +92679,6 @@ entities: - type: Transform pos: -5.49094,-305.1008 parent: 2 -- proto: ToyFigurineSalvage - entities: - - uid: 13928 - components: - - type: Transform - pos: -4.4907207,-272.15012 - parent: 2 - proto: ToyFigurineScientist entities: - uid: 13929 @@ -90482,22 +92789,6 @@ entities: - type: Transform pos: -6.493462,-127.34697 parent: 2 -- proto: trayScanner - entities: - - uid: 3960 - components: - - type: Transform - parent: 3958 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: TrumpetInstrument - entities: - - uid: 13946 - components: - - type: Transform - pos: -22.876137,-264.95584 - parent: 2 - proto: TwoWayLever entities: - uid: 13947 @@ -90623,10 +92914,10 @@ entities: parent: 2 - proto: VendingMachineAtmosDrobe entities: - - uid: 13955 + - uid: 16976 components: - type: Transform - pos: -14.5,-265.5 + pos: -13.5,-251.5 parent: 2 - proto: VendingMachineBooze entities: @@ -90717,10 +93008,11 @@ entities: parent: 2 - proto: VendingMachineCondiments entities: - - uid: 13969 + - uid: 13296 components: - type: Transform - pos: 3.5,-85.5 + rot: 3.141592653589793 rad + pos: 3.5,-90.5 parent: 2 - proto: VendingMachineCuraDrobe entities: @@ -90731,10 +93023,10 @@ entities: parent: 2 - proto: VendingMachineDetDrobe entities: - - uid: 13971 + - uid: 17255 components: - type: Transform - pos: -5.5,-70.5 + pos: 5.5,-328.5 parent: 2 - proto: VendingMachineDinnerware entities: @@ -90804,10 +93096,10 @@ entities: parent: 2 - proto: VendingMachineLawDrobe entities: - - uid: 13982 + - uid: 4723 components: - type: Transform - pos: 6.5,-329.5 + pos: -5.5,-73.5 parent: 2 - proto: VendingMachineMedical entities: @@ -90929,13 +93221,6 @@ entities: - type: Transform pos: 5.5,-374.5 parent: 2 -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 14001 - components: - - type: Transform - pos: -13.5,-259.5 - parent: 2 - proto: VendingMachineTankDispenserEVA entities: - uid: 14002 @@ -90973,10 +93258,10 @@ entities: - type: Transform pos: 9.5,-120.5 parent: 2 - - uid: 14009 + - uid: 17047 components: - type: Transform - pos: -14.5,-250.5 + pos: -11.5,-257.5 parent: 2 - proto: VendingMachineTheater entities: @@ -91654,6 +93939,28 @@ entities: parent: 2 - proto: WallmountTelevision entities: + - uid: 11751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-279.5 + parent: 2 + - uid: 11785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-38.5 + parent: 2 + - uid: 12043 + components: + - type: Transform + pos: 2.5,-122.5 + parent: 2 + - uid: 12994 + components: + - type: Transform + pos: -2.5,-188.5 + parent: 2 - uid: 14130 components: - type: Transform @@ -91902,6 +94209,322 @@ entities: parent: 2 - proto: WallReinforced entities: + - uid: 85 + components: + - type: Transform + pos: -26.5,-250.5 + parent: 2 + - uid: 901 + components: + - type: Transform + pos: -25.5,-264.5 + parent: 2 + - uid: 904 + components: + - type: Transform + pos: -22.5,-260.5 + parent: 2 + - uid: 932 + components: + - type: Transform + pos: -23.5,-254.5 + parent: 2 + - uid: 968 + components: + - type: Transform + pos: -25.5,-262.5 + parent: 2 + - uid: 2615 + components: + - type: Transform + pos: -24.5,-258.5 + parent: 2 + - uid: 3026 + components: + - type: Transform + pos: -26.5,-263.5 + parent: 2 + - uid: 3027 + components: + - type: Transform + pos: -23.5,-264.5 + parent: 2 + - uid: 3028 + components: + - type: Transform + pos: -24.5,-264.5 + parent: 2 + - uid: 3033 + components: + - type: Transform + pos: -26.5,-264.5 + parent: 2 + - uid: 3075 + components: + - type: Transform + pos: -27.5,-260.5 + parent: 2 + - uid: 3077 + components: + - type: Transform + pos: -27.5,-256.5 + parent: 2 + - uid: 3078 + components: + - type: Transform + pos: -27.5,-257.5 + parent: 2 + - uid: 3079 + components: + - type: Transform + pos: -27.5,-252.5 + parent: 2 + - uid: 3080 + components: + - type: Transform + pos: -26.5,-257.5 + parent: 2 + - uid: 3081 + components: + - type: Transform + pos: -25.5,-252.5 + parent: 2 + - uid: 3082 + components: + - type: Transform + pos: -26.5,-252.5 + parent: 2 + - uid: 3083 + components: + - type: Transform + pos: -26.5,-253.5 + parent: 2 + - uid: 3096 + components: + - type: Transform + pos: -22.5,-252.5 + parent: 2 + - uid: 3099 + components: + - type: Transform + pos: -26.5,-260.5 + parent: 2 + - uid: 3100 + components: + - type: Transform + pos: -26.5,-261.5 + parent: 2 + - uid: 3101 + components: + - type: Transform + pos: -26.5,-259.5 + parent: 2 + - uid: 3103 + components: + - type: Transform + pos: -27.5,-250.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + pos: -24.5,-250.5 + parent: 2 + - uid: 3115 + components: + - type: Transform + pos: -22.5,-250.5 + parent: 2 + - uid: 3121 + components: + - type: Transform + pos: -27.5,-259.5 + parent: 2 + - uid: 3638 + components: + - type: Transform + pos: -23.5,-252.5 + parent: 2 + - uid: 3641 + components: + - type: Transform + pos: -27.5,-255.5 + parent: 2 + - uid: 3642 + components: + - type: Transform + pos: -27.5,-258.5 + parent: 2 + - uid: 3951 + components: + - type: Transform + pos: -25.5,-250.5 + parent: 2 + - uid: 3952 + components: + - type: Transform + pos: -27.5,-251.5 + parent: 2 + - uid: 3953 + components: + - type: Transform + pos: -23.5,-250.5 + parent: 2 + - uid: 3958 + components: + - type: Transform + pos: -27.5,-254.5 + parent: 2 + - uid: 3959 + components: + - type: Transform + pos: -25.5,-260.5 + parent: 2 + - uid: 3960 + components: + - type: Transform + pos: -25.5,-254.5 + parent: 2 + - uid: 4676 + components: + - type: Transform + pos: -27.5,-261.5 + parent: 2 + - uid: 4677 + components: + - type: Transform + pos: -23.5,-260.5 + parent: 2 + - uid: 4678 + components: + - type: Transform + pos: -27.5,-253.5 + parent: 2 + - uid: 4680 + components: + - type: Transform + pos: -26.5,-251.5 + parent: 2 + - uid: 8637 + components: + - type: Transform + pos: -23.5,-270.5 + parent: 2 + - uid: 8641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-122.5 + parent: 2 + - uid: 9049 + components: + - type: Transform + pos: -21.5,-270.5 + parent: 2 + - uid: 9054 + components: + - type: Transform + pos: -15.5,-266.5 + parent: 2 + - uid: 10079 + components: + - type: Transform + pos: -22.5,-266.5 + parent: 2 + - uid: 10100 + components: + - type: Transform + pos: -20.5,-270.5 + parent: 2 + - uid: 10104 + components: + - type: Transform + pos: -16.5,-267.5 + parent: 2 + - uid: 10106 + components: + - type: Transform + pos: -23.5,-266.5 + parent: 2 + - uid: 10581 + components: + - type: Transform + pos: -24.5,-252.5 + parent: 2 + - uid: 11303 + components: + - type: Transform + pos: -27.5,-263.5 + parent: 2 + - uid: 11316 + components: + - type: Transform + pos: -26.5,-255.5 + parent: 2 + - uid: 11317 + components: + - type: Transform + pos: -26.5,-256.5 + parent: 2 + - uid: 12498 + components: + - type: Transform + pos: -26.5,-262.5 + parent: 2 + - uid: 12544 + components: + - type: Transform + pos: -23.5,-262.5 + parent: 2 + - uid: 12545 + components: + - type: Transform + pos: -22.5,-262.5 + parent: 2 + - uid: 12570 + components: + - type: Transform + pos: -27.5,-264.5 + parent: 2 + - uid: 12703 + components: + - type: Transform + pos: -22.5,-254.5 + parent: 2 + - uid: 12781 + components: + - type: Transform + pos: -27.5,-262.5 + parent: 2 + - uid: 12856 + components: + - type: Transform + pos: -22.5,-264.5 + parent: 2 + - uid: 12883 + components: + - type: Transform + pos: -26.5,-258.5 + parent: 2 + - uid: 12886 + components: + - type: Transform + pos: -24.5,-262.5 + parent: 2 + - uid: 13322 + components: + - type: Transform + pos: -26.5,-254.5 + parent: 2 + - uid: 13323 + components: + - type: Transform + pos: -24.5,-260.5 + parent: 2 + - uid: 13822 + components: + - type: Transform + pos: -24.5,-254.5 + parent: 2 - uid: 14172 components: - type: Transform @@ -92759,11 +95382,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-335.5 parent: 2 - - uid: 14343 - components: - - type: Transform - pos: -18.5,-254.5 - parent: 2 - uid: 14344 components: - type: Transform @@ -92829,11 +95447,6 @@ entities: - type: Transform pos: -3.5,-52.5 parent: 2 - - uid: 14357 - components: - - type: Transform - pos: -20.5,-250.5 - parent: 2 - uid: 14358 components: - type: Transform @@ -94250,11 +96863,6 @@ entities: - type: Transform pos: -12.5,-244.5 parent: 2 - - uid: 14639 - components: - - type: Transform - pos: -12.5,-262.5 - parent: 2 - uid: 14640 components: - type: Transform @@ -94288,7 +96896,7 @@ entities: - uid: 14646 components: - type: Transform - pos: -12.5,-264.5 + pos: -12.5,-262.5 parent: 2 - uid: 14647 components: @@ -94338,7 +96946,7 @@ entities: - uid: 14656 components: - type: Transform - pos: -12.5,-263.5 + pos: -12.5,-266.5 parent: 2 - uid: 14657 components: @@ -95143,7 +97751,7 @@ entities: - uid: 14814 components: - type: Transform - pos: -21.5,-252.5 + pos: -22.5,-256.5 parent: 2 - uid: 14815 components: @@ -95158,12 +97766,7 @@ entities: - uid: 14817 components: - type: Transform - pos: -20.5,-258.5 - parent: 2 - - uid: 14818 - components: - - type: Transform - pos: -19.5,-258.5 + pos: -22.5,-258.5 parent: 2 - uid: 14819 components: @@ -95174,17 +97777,12 @@ entities: - uid: 14820 components: - type: Transform - pos: -20.5,-254.5 + pos: -23.5,-258.5 parent: 2 - uid: 14821 components: - type: Transform - pos: -22.5,-254.5 - parent: 2 - - uid: 14822 - components: - - type: Transform - pos: -20.5,-256.5 + pos: -25.5,-256.5 parent: 2 - uid: 14823 components: @@ -95192,11 +97790,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-255.5 parent: 2 - - uid: 14824 - components: - - type: Transform - pos: -19.5,-250.5 - parent: 2 - uid: 14825 components: - type: Transform @@ -95218,7 +97811,7 @@ entities: - uid: 14828 components: - type: Transform - pos: -22.5,-255.5 + pos: -25.5,-258.5 parent: 2 - uid: 14829 components: @@ -95231,20 +97824,10 @@ entities: - type: Transform pos: 19.5,-244.5 parent: 2 - - uid: 14831 - components: - - type: Transform - pos: -19.5,-252.5 - parent: 2 - uid: 14832 components: - type: Transform - pos: -22.5,-251.5 - parent: 2 - - uid: 14833 - components: - - type: Transform - pos: -19.5,-256.5 + pos: -24.5,-256.5 parent: 2 - uid: 14834 components: @@ -95337,30 +97920,19 @@ entities: - uid: 14849 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-264.5 + pos: -23.5,-256.5 parent: 2 - uid: 14850 components: - type: Transform pos: -1.5,-261.5 parent: 2 - - uid: 14851 - components: - - type: Transform - pos: -22.5,-257.5 - parent: 2 - uid: 14852 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-259.5 parent: 2 - - uid: 14853 - components: - - type: Transform - pos: -21.5,-258.5 - parent: 2 - uid: 14854 components: - type: Transform @@ -95435,7 +98007,8 @@ entities: - uid: 14867 components: - type: Transform - pos: -22.5,-259.5 + rot: -1.5707963267948966 rad + pos: 3.5,-122.5 parent: 2 - uid: 14868 components: @@ -95496,12 +98069,13 @@ entities: - uid: 14878 components: - type: Transform - pos: -21.5,-266.5 + pos: -5.5,-256.5 parent: 2 - uid: 14879 components: - type: Transform - pos: -21.5,-250.5 + rot: 3.141592653589793 rad + pos: 20.5,-266.5 parent: 2 - uid: 14880 components: @@ -95575,7 +98149,8 @@ entities: - uid: 14892 components: - type: Transform - pos: -22.5,-258.5 + rot: 3.141592653589793 rad + pos: 14.5,-266.5 parent: 2 - uid: 14893 components: @@ -95640,7 +98215,7 @@ entities: - uid: 14904 components: - type: Transform - pos: -19.5,-254.5 + pos: -6.5,-74.5 parent: 2 - uid: 14905 components: @@ -95843,11 +98418,6 @@ entities: - type: Transform pos: 20.5,-249.5 parent: 2 - - uid: 14944 - components: - - type: Transform - pos: -22.5,-253.5 - parent: 2 - uid: 14945 components: - type: Transform @@ -95858,11 +98428,6 @@ entities: - type: Transform pos: 19.5,-238.5 parent: 2 - - uid: 14947 - components: - - type: Transform - pos: -21.5,-254.5 - parent: 2 - uid: 14948 components: - type: Transform @@ -95879,16 +98444,6 @@ entities: - type: Transform pos: -7.5,-188.5 parent: 2 - - uid: 14951 - components: - - type: Transform - pos: -22.5,-256.5 - parent: 2 - - uid: 14952 - components: - - type: Transform - pos: -20.5,-252.5 - parent: 2 - uid: 14953 components: - type: Transform @@ -96176,11 +98731,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-255.5 parent: 2 - - uid: 15007 - components: - - type: Transform - pos: -18.5,-262.5 - parent: 2 - uid: 15008 components: - type: Transform @@ -96216,11 +98766,6 @@ entities: - type: Transform pos: -8.5,-271.5 parent: 2 - - uid: 15015 - components: - - type: Transform - pos: -18.5,-252.5 - parent: 2 - uid: 15016 components: - type: Transform @@ -96396,11 +98941,6 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-288.5 parent: 2 - - uid: 15048 - components: - - type: Transform - pos: -18.5,-250.5 - parent: 2 - uid: 15049 components: - type: Transform @@ -96743,11 +99283,6 @@ entities: - type: Transform pos: 9.5,-284.5 parent: 2 - - uid: 15107 - components: - - type: Transform - pos: -22.5,-250.5 - parent: 2 - uid: 15108 components: - type: Transform @@ -98461,12 +100996,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-344.5 parent: 2 - - uid: 15412 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-343.5 - parent: 2 - uid: 15413 components: - type: Transform @@ -99755,16 +102284,6 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-385.5 parent: 2 - - uid: 15629 - components: - - type: Transform - pos: -18.5,-256.5 - parent: 2 - - uid: 15630 - components: - - type: Transform - pos: -18.5,-258.5 - parent: 2 - uid: 15631 components: - type: Transform @@ -99788,36 +102307,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-383.5 parent: 2 - - uid: 15635 - components: - - type: Transform - pos: -22.5,-262.5 - parent: 2 - - uid: 15636 - components: - - type: Transform - pos: -21.5,-262.5 - parent: 2 - - uid: 15637 - components: - - type: Transform - pos: -12.5,-265.5 - parent: 2 - - uid: 15638 - components: - - type: Transform - pos: -19.5,-262.5 - parent: 2 - - uid: 15639 - components: - - type: Transform - pos: -22.5,-261.5 - parent: 2 - - uid: 15640 - components: - - type: Transform - pos: -22.5,-260.5 - parent: 2 - uid: 15641 components: - type: Transform @@ -99910,26 +102399,6 @@ entities: - type: Transform pos: -7.5,-247.5 parent: 2 - - uid: 15657 - components: - - type: Transform - pos: -14.5,-266.5 - parent: 2 - - uid: 15658 - components: - - type: Transform - pos: -13.5,-266.5 - parent: 2 - - uid: 15659 - components: - - type: Transform - pos: -22.5,-266.5 - parent: 2 - - uid: 15660 - components: - - type: Transform - pos: -18.5,-266.5 - parent: 2 - uid: 15661 components: - type: Transform @@ -99941,33 +102410,18 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-119.5 parent: 2 - - uid: 15663 - components: - - type: Transform - pos: -22.5,-252.5 - parent: 2 - uid: 15664 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-342.5 parent: 2 - - uid: 15665 - components: - - type: Transform - pos: -16.5,-266.5 - parent: 2 - uid: 15666 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-345.5 parent: 2 - - uid: 15667 - components: - - type: Transform - pos: -19.5,-266.5 - parent: 2 - uid: 15668 components: - type: Transform @@ -100093,12 +102547,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-337.5 parent: 2 - - uid: 15689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-264.5 - parent: 2 - uid: 15690 components: - type: Transform @@ -100138,12 +102586,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-299.5 parent: 2 - - uid: 15697 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-264.5 - parent: 2 - uid: 15698 components: - type: Transform @@ -100195,30 +102637,10 @@ entities: - type: Transform pos: 20.5,-240.5 parent: 2 - - uid: 15707 - components: - - type: Transform - pos: -17.5,-266.5 - parent: 2 - - uid: 15708 - components: - - type: Transform - pos: -20.5,-262.5 - parent: 2 - - uid: 15709 - components: - - type: Transform - pos: -15.5,-266.5 - parent: 2 - - uid: 15710 - components: - - type: Transform - pos: -13.5,-265.5 - parent: 2 - uid: 15711 components: - type: Transform - pos: -20.5,-266.5 + pos: -27.5,-266.5 parent: 2 - uid: 15712 components: @@ -100299,11 +102721,6 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,-160.5 parent: 2 - - uid: 15726 - components: - - type: Transform - pos: -21.5,-256.5 - parent: 2 - uid: 15727 components: - type: Transform @@ -100360,6 +102777,312 @@ entities: - type: Transform pos: -5.5,-186.5 parent: 2 + - uid: 15825 + components: + - type: Transform + pos: -21.5,-266.5 + parent: 2 + - uid: 16436 + components: + - type: Transform + pos: -16.5,-266.5 + parent: 2 + - uid: 16511 + components: + - type: Transform + pos: -22.5,-270.5 + parent: 2 + - uid: 16523 + components: + - type: Transform + pos: -19.5,-270.5 + parent: 2 + - uid: 16525 + components: + - type: Transform + pos: -27.5,-270.5 + parent: 2 + - uid: 16526 + components: + - type: Transform + pos: -25.5,-240.5 + parent: 2 + - uid: 16987 + components: + - type: Transform + pos: -20.5,-266.5 + parent: 2 + - uid: 17012 + components: + - type: Transform + pos: -13.5,-266.5 + parent: 2 + - uid: 17013 + components: + - type: Transform + pos: -14.5,-266.5 + parent: 2 + - uid: 17124 + components: + - type: Transform + pos: -29.5,-267.5 + parent: 2 + - uid: 17125 + components: + - type: Transform + pos: -29.5,-266.5 + parent: 2 + - uid: 17126 + components: + - type: Transform + pos: -29.5,-265.5 + parent: 2 + - uid: 17127 + components: + - type: Transform + pos: -29.5,-264.5 + parent: 2 + - uid: 17128 + components: + - type: Transform + pos: -29.5,-262.5 + parent: 2 + - uid: 17129 + components: + - type: Transform + pos: -29.5,-261.5 + parent: 2 + - uid: 17130 + components: + - type: Transform + pos: -29.5,-260.5 + parent: 2 + - uid: 17131 + components: + - type: Transform + pos: -29.5,-259.5 + parent: 2 + - uid: 17132 + components: + - type: Transform + pos: -29.5,-258.5 + parent: 2 + - uid: 17133 + components: + - type: Transform + pos: -29.5,-256.5 + parent: 2 + - uid: 17134 + components: + - type: Transform + pos: -29.5,-255.5 + parent: 2 + - uid: 17135 + components: + - type: Transform + pos: -29.5,-254.5 + parent: 2 + - uid: 17136 + components: + - type: Transform + pos: -29.5,-253.5 + parent: 2 + - uid: 17137 + components: + - type: Transform + pos: -29.5,-252.5 + parent: 2 + - uid: 17138 + components: + - type: Transform + pos: -31.5,-269.5 + parent: 2 + - uid: 17139 + components: + - type: Transform + pos: -31.5,-268.5 + parent: 2 + - uid: 17140 + components: + - type: Transform + pos: -31.5,-267.5 + parent: 2 + - uid: 17141 + components: + - type: Transform + pos: -31.5,-265.5 + parent: 2 + - uid: 17142 + components: + - type: Transform + pos: -31.5,-264.5 + parent: 2 + - uid: 17143 + components: + - type: Transform + pos: -31.5,-263.5 + parent: 2 + - uid: 17144 + components: + - type: Transform + pos: -31.5,-262.5 + parent: 2 + - uid: 17145 + components: + - type: Transform + pos: -31.5,-261.5 + parent: 2 + - uid: 17146 + components: + - type: Transform + pos: -31.5,-259.5 + parent: 2 + - uid: 17147 + components: + - type: Transform + pos: -31.5,-258.5 + parent: 2 + - uid: 17148 + components: + - type: Transform + pos: -31.5,-257.5 + parent: 2 + - uid: 17149 + components: + - type: Transform + pos: -31.5,-255.5 + parent: 2 + - uid: 17150 + components: + - type: Transform + pos: -31.5,-256.5 + parent: 2 + - uid: 17151 + components: + - type: Transform + pos: -31.5,-253.5 + parent: 2 + - uid: 17152 + components: + - type: Transform + pos: -31.5,-252.5 + parent: 2 + - uid: 17153 + components: + - type: Transform + pos: -31.5,-251.5 + parent: 2 + - uid: 17154 + components: + - type: Transform + pos: -25.5,-241.5 + parent: 2 + - uid: 17155 + components: + - type: Transform + pos: -25.5,-242.5 + parent: 2 + - uid: 17156 + components: + - type: Transform + pos: -25.5,-243.5 + parent: 2 + - uid: 17157 + components: + - type: Transform + pos: -25.5,-245.5 + parent: 2 + - uid: 17158 + components: + - type: Transform + pos: -25.5,-246.5 + parent: 2 + - uid: 17159 + components: + - type: Transform + pos: -25.5,-247.5 + parent: 2 + - uid: 17161 + components: + - type: Transform + pos: -29.5,-250.5 + parent: 2 + - uid: 17162 + components: + - type: Transform + pos: -29.5,-249.5 + parent: 2 + - uid: 17163 + components: + - type: Transform + pos: -29.5,-248.5 + parent: 2 + - uid: 17164 + components: + - type: Transform + pos: -28.5,-248.5 + parent: 2 + - uid: 17165 + components: + - type: Transform + pos: -27.5,-248.5 + parent: 2 + - uid: 17192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-269.5 + parent: 2 + - uid: 17193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-269.5 + parent: 2 + - uid: 17194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-269.5 + parent: 2 + - uid: 17195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-269.5 + parent: 2 + - uid: 17196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-269.5 + parent: 2 + - uid: 17197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-269.5 + parent: 2 + - uid: 17382 + components: + - type: Transform + pos: -25.5,-235.5 + parent: 17381 + - uid: 17383 + components: + - type: Transform + pos: -25.5,-236.5 + parent: 17381 + - uid: 17384 + components: + - type: Transform + pos: -25.5,-237.5 + parent: 17381 + - uid: 17385 + components: + - type: Transform + pos: -25.5,-238.5 + parent: 17381 - proto: WallReinforcedDiagonal entities: - uid: 15737 @@ -100525,12 +103248,6 @@ entities: - type: Transform pos: -7.5,-55.5 parent: 2 - - uid: 15766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-70.5 - parent: 2 - uid: 15767 components: - type: Transform @@ -100599,12 +103316,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-135.5 parent: 2 - - uid: 15779 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-122.5 - parent: 2 - uid: 15780 components: - type: Transform @@ -100849,29 +103560,11 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-128.5 parent: 2 - - uid: 15822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-256.5 - parent: 2 - - uid: 15823 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-266.5 - parent: 2 - uid: 15824 components: - type: Transform pos: 14.5,-238.5 parent: 2 - - uid: 15825 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-266.5 - parent: 2 - uid: 15826 components: - type: Transform @@ -101118,12 +103811,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-121.5 parent: 2 - - uid: 15869 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-74.5 - parent: 2 - uid: 15870 components: - type: Transform @@ -104093,43 +106780,52 @@ entities: - type: Transform pos: 13.5,-75.5 parent: 2 -- proto: WarningAir - entities: - - uid: 16432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-262.5 - parent: 2 - proto: WarningCO2 entities: - - uid: 16433 + - uid: 12245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-252.5 + pos: -26.5,-255.5 parent: 2 - proto: WarningN2 entities: - - uid: 16434 + - uid: 13982 components: - type: Transform - pos: -18.5,-258.5 + pos: -26.5,-251.5 parent: 2 - proto: WarningO2 entities: - - uid: 16435 + - uid: 14639 components: - type: Transform - pos: -18.5,-256.5 + pos: -26.5,-253.5 parent: 2 - proto: WarningPlasma entities: - - uid: 16436 + - uid: 14001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-250.5 + pos: -26.5,-259.5 + parent: 2 +- proto: WarningTritium + entities: + - uid: 13722 + components: + - type: Transform + pos: -26.5,-263.5 + parent: 2 +- proto: WarningWaste + entities: + - uid: 13577 + components: + - type: Transform + pos: -26.5,-261.5 + parent: 2 + - uid: 14822 + components: + - type: Transform + pos: -26.5,-257.5 parent: 2 - proto: WarpPoint entities: @@ -104294,6 +106990,13 @@ entities: - type: Transform pos: -2.5,-82.5 parent: 2 +- proto: WaterVaporCanister + entities: + - uid: 14343 + components: + - type: Transform + pos: -25.5,-257.5 + parent: 2 - proto: WeaponCapacitorRecharger entities: - uid: 16459 @@ -104390,15 +107093,6 @@ entities: - type: Transform pos: 0.072262526,-370.32172 parent: 2 -- proto: WelderIndustrial - entities: - - uid: 3961 - components: - - type: Transform - parent: 3958 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: WelderIndustrialAdvanced entities: - uid: 16472 @@ -104430,14 +107124,6 @@ entities: - type: Transform pos: 3.5,-151.5 parent: 2 - - uid: 16477 - components: - - type: Transform - anchored: True - pos: -16.5,-265.5 - parent: 2 - - type: Physics - bodyType: Static - uid: 16478 components: - type: Transform @@ -104473,6 +107159,11 @@ entities: - type: Transform pos: 10.5,-298.5 parent: 2 + - uid: 17049 + components: + - type: Transform + pos: -13.5,-262.5 + parent: 2 - proto: WetFloorSign entities: - uid: 16485 @@ -104526,6 +107217,138 @@ entities: - DoorStatus: DoorBolt 16556: - DoorStatus: DoorBolt + - uid: 17315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-240.5 + parent: 2 + - uid: 17316 + components: + - type: Transform + pos: 0.5,-236.5 + parent: 2 + - uid: 17317 + components: + - type: Transform + pos: 0.5,-263.5 + parent: 2 + - uid: 17318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-267.5 + parent: 2 + - uid: 17319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-294.5 + parent: 2 + - uid: 17320 + components: + - type: Transform + pos: 0.5,-290.5 + parent: 2 + - uid: 17321 + components: + - type: Transform + pos: 0.5,-322.5 + parent: 2 + - uid: 17322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-326.5 + parent: 2 + - uid: 17323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-213.5 + parent: 2 + - uid: 17324 + components: + - type: Transform + pos: 0.5,-209.5 + parent: 2 + - uid: 17325 + components: + - type: Transform + pos: 0.5,-182.5 + parent: 2 + - uid: 17326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-186.5 + parent: 2 + - uid: 17327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-159.5 + parent: 2 + - uid: 17328 + components: + - type: Transform + pos: 0.5,-155.5 + parent: 2 + - uid: 17329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-132.5 + parent: 2 + - uid: 17330 + components: + - type: Transform + pos: 0.5,-128.5 + parent: 2 + - uid: 17331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-105.5 + parent: 2 + - uid: 17332 + components: + - type: Transform + pos: 0.5,-101.5 + parent: 2 + - uid: 17333 + components: + - type: Transform + pos: 0.5,-74.5 + parent: 2 + - uid: 17334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-78.5 + parent: 2 + - uid: 17335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-51.5 + parent: 2 + - uid: 17336 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 2 + - uid: 17337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-24.5 + parent: 2 + - uid: 17338 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 - proto: WindoorSecureArmoryLocked entities: - uid: 16491 @@ -104554,6 +107377,32 @@ entities: - type: Transform pos: 1.5,-366.5 parent: 2 +- proto: WindoorSecureAtmosphericsLocked + entities: + - uid: 17050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-264.5 + parent: 2 + - uid: 17104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-266.5 + parent: 2 + - uid: 17105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-266.5 + parent: 2 + - uid: 17106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-266.5 + parent: 2 - proto: WindoorSecureBrigLocked entities: - uid: 16496 @@ -104638,6 +107487,150 @@ entities: parent: 2 - proto: WindoorSecureExternalLocked entities: + - uid: 195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-324.5 + parent: 2 + - uid: 196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-265.5 + parent: 2 + - uid: 198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-238.5 + parent: 2 + - uid: 202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-103.5 + parent: 2 + - uid: 203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-184.5 + parent: 2 + - uid: 204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-103.5 + parent: 2 + - uid: 205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-157.5 + parent: 2 + - uid: 206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 2 + - uid: 207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-76.5 + parent: 2 + - uid: 212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-157.5 + parent: 2 + - uid: 213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-184.5 + parent: 2 + - uid: 220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-265.5 + parent: 2 + - uid: 222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-22.5 + parent: 2 + - uid: 227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-238.5 + parent: 2 + - uid: 228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-324.5 + parent: 2 + - uid: 231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-76.5 + parent: 2 + - uid: 15107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-130.5 + parent: 2 + - uid: 15412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-49.5 + parent: 2 + - uid: 15629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-49.5 + parent: 2 + - uid: 15636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-292.5 + parent: 2 + - uid: 15637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-130.5 + parent: 2 + - uid: 15659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-211.5 + parent: 2 + - uid: 15697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-292.5 + parent: 2 + - uid: 15707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-211.5 + parent: 2 - uid: 16508 components: - type: Transform @@ -104650,78 +107643,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-76.5 parent: 2 - - uid: 16510 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-22.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 5 - - type: DeviceLinkSource - linkedPorts: - 189: - - DoorStatus: Close - 199: - - DoorStatus: Close - 200: - - DoorStatus: Close - 188: - - DoorStatus: Close - - uid: 16511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-184.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 212: - - DoorStatus: Close - 205: - - DoorStatus: Close - 204: - - DoorStatus: Close - 202: - - DoorStatus: Close - - uid: 16512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-211.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 206: - - DoorStatus: Close - 222: - - DoorStatus: Close - 231: - - DoorStatus: Close - 207: - - DoorStatus: Close - - uid: 16513 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-211.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 207: - - DoorStatus: Close - 231: - - DoorStatus: Close - 222: - - DoorStatus: Close - 206: - - DoorStatus: Close - uid: 16514 components: - type: Transform @@ -104734,24 +107655,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-22.5 parent: 2 - - uid: 16516 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-324.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 216: - - DoorStatus: Close - 235: - - DoorStatus: Close - 236: - - DoorStatus: Close - 237: - - DoorStatus: Close - uid: 16517 components: - type: Transform @@ -104784,354 +107687,12 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - - uid: 16522 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-49.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 190: - - DoorStatus: Close - 221: - - DoorStatus: Close - 230: - - DoorStatus: Close - 187: - - DoorStatus: Close - - uid: 16523 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-130.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 195: - - DoorStatus: Close - 220: - - DoorStatus: Close - 228: - - DoorStatus: Close - 196: - - DoorStatus: Close - - uid: 16524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-184.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 205: - - DoorStatus: Close - 212: - - DoorStatus: Close - 202: - - DoorStatus: Close - 204: - - DoorStatus: Close - - uid: 16525 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-76.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 191: - - DoorStatus: Close - 210: - - DoorStatus: Close - 211: - - DoorStatus: Close - 192: - - DoorStatus: Close - - uid: 16526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-292.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 234: - - DoorStatus: Close - 225: - - DoorStatus: Close - 226: - - DoorStatus: Close - 224: - - DoorStatus: Close - - uid: 16527 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-292.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 234: - - DoorStatus: Close - 225: - - DoorStatus: Close - 226: - - DoorStatus: Close - 224: - - DoorStatus: Close - - uid: 16528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-324.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 6 - - type: DeviceLinkSource - linkedPorts: - 216: - - DoorStatus: Close - 235: - - DoorStatus: Close - 236: - - DoorStatus: Close - 237: - - DoorStatus: Close - uid: 16529 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-130.5 parent: 2 - - uid: 16530 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-103.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 193: - - DoorStatus: Close - 229: - - DoorStatus: Close - 201: - - DoorStatus: Close - 194: - - DoorStatus: Close - - uid: 16531 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-157.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 198: - - DoorStatus: Close - 227: - - DoorStatus: Close - 213: - - DoorStatus: Close - 203: - - DoorStatus: Close - - uid: 16532 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-238.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 209: - - DoorStatus: Close - 232: - - DoorStatus: Close - 215: - - DoorStatus: Close - 208: - - DoorStatus: Close - - uid: 16533 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-49.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 190: - - DoorStatus: Close - 221: - - DoorStatus: Close - 230: - - DoorStatus: Close - 187: - - DoorStatus: Close - - uid: 16534 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-22.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 189: - - DoorStatus: Close - 199: - - DoorStatus: Close - 200: - - DoorStatus: Close - 188: - - DoorStatus: Close - - uid: 16535 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-76.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 191: - - DoorStatus: Close - 210: - - DoorStatus: Close - 211: - - DoorStatus: Close - 192: - - DoorStatus: Close - - uid: 16536 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-103.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 193: - - DoorStatus: Close - 229: - - DoorStatus: Close - 201: - - DoorStatus: Close - 194: - - DoorStatus: Close - - uid: 16537 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-130.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 195: - - DoorStatus: Close - 228: - - DoorStatus: Close - 220: - - DoorStatus: Close - 196: - - DoorStatus: Close - - uid: 16538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-157.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 198: - - DoorStatus: Close - 227: - - DoorStatus: Close - 213: - - DoorStatus: Close - 203: - - DoorStatus: Close - - uid: 16539 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-238.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 209: - - DoorStatus: Close - 232: - - DoorStatus: Close - 215: - - DoorStatus: Close - 208: - - DoorStatus: Close - - uid: 16540 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-265.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 233: - - DoorStatus: Close - 214: - - DoorStatus: Close - 197: - - DoorStatus: Close - 223: - - DoorStatus: Close - - uid: 16541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-265.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 233: - - DoorStatus: Close - 214: - - DoorStatus: Close - 223: - - DoorStatus: Close - 197: - - DoorStatus: Close - uid: 16542 components: - type: Transform @@ -105356,37 +107917,11 @@ entities: - type: Transform pos: 3.5,-12.5 parent: 2 - - uid: 16577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-285.5 - parent: 2 - uid: 16578 components: - type: Transform pos: 3.5,-10.5 parent: 2 - - uid: 16579 - components: - - type: Transform - pos: 1.5,-93.5 - parent: 2 - - uid: 16580 - components: - - type: Transform - pos: 0.5,-93.5 - parent: 2 - - uid: 16581 - components: - - type: Transform - pos: 1.5,-83.5 - parent: 2 - - uid: 16582 - components: - - type: Transform - pos: 0.5,-83.5 - parent: 2 - uid: 16583 components: - type: Transform @@ -105428,58 +107963,6 @@ entities: - type: Transform pos: -4.5,-289.5 parent: 2 - - uid: 16591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-274.5 - parent: 2 - - uid: 16592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-273.5 - parent: 2 - - uid: 16593 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-283.5 - parent: 2 - - uid: 16594 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-272.5 - parent: 2 - - uid: 16595 - components: - - type: Transform - pos: -0.5,-275.5 - parent: 2 - - uid: 16596 - components: - - type: Transform - pos: -1.5,-276.5 - parent: 2 - - uid: 16597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-286.5 - parent: 2 - - uid: 16598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-284.5 - parent: 2 - - uid: 16599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-282.5 - parent: 2 - uid: 16600 components: - type: Transform @@ -105505,60 +107988,6 @@ entities: - type: Transform pos: 11.5,-279.5 parent: 2 - - uid: 16605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-331.5 - parent: 2 -- proto: WindowDiagonal - entities: - - uid: 16606 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-273.5 - parent: 2 - - uid: 16607 - components: - - type: Transform - pos: -3.5,-272.5 - parent: 2 - - uid: 16608 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-274.5 - parent: 2 - - uid: 16609 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-283.5 - parent: 2 - - uid: 16610 - components: - - type: Transform - pos: -1.5,-275.5 - parent: 2 - - uid: 16611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-285.5 - parent: 2 - - uid: 16612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-284.5 - parent: 2 - - uid: 16613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-286.5 - parent: 2 - proto: WindowDirectional entities: - uid: 16614 @@ -107543,6 +109972,30 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,-161.5 parent: 2 + - uid: 17000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-265.5 + parent: 2 + - uid: 17014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-263.5 + parent: 2 + - uid: 17045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-263.5 + parent: 2 + - uid: 17046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-263.5 + parent: 2 - proto: Wirecutter entities: - uid: 16956 diff --git a/Resources/Prototypes/Alerts/alerts.yml b/Resources/Prototypes/Alerts/alerts.yml index 8f7bc7f154..1cece98b77 100644 --- a/Resources/Prototypes/Alerts/alerts.yml +++ b/Resources/Prototypes/Alerts/alerts.yml @@ -88,7 +88,7 @@ - type: alert id: Fire icons: [ /Textures/Interface/Alerts/Fire/fire.png ] - onClick: !type:ResistFire { } + clickEvent: !type:ResistFireAlertEvent name: alerts-on-fire-name description: alerts-on-fire-desc @@ -137,14 +137,14 @@ - type: alert id: Handcuffed - onClick: !type:RemoveCuffs { } + clickEvent: !type:RemoveCuffsAlertEvent icons: [ /Textures/Interface/Alerts/Handcuffed/Handcuffed.png ] name: alerts-handcuffed-name description: alerts-handcuffed-desc - type: alert id: Ensnared - onClick: !type:RemoveEnsnare { } + clickEvent: !type:RemoveEnsnareAlertEvent icons: - sprite: /Textures/Interface/Alerts/ensnared.rsi state: ensnared @@ -154,7 +154,7 @@ - type: alert id: Buckled category: Buckled - onClick: !type:Unbuckle { } + clickEvent: !type:UnbuckleAlertEvent icons: [ /Textures/Interface/Alerts/Buckle/buckled.png ] name: alerts-buckled-name description: alerts-buckled-desc @@ -276,7 +276,7 @@ - type: alert id: Internals category: Internals - onClick: !type:ToggleInternals {} + clickEvent: !type:ToggleInternalsAlertEvent icons: - sprite: /Textures/Interface/Alerts/internals.rsi state: internal0 @@ -292,7 +292,7 @@ - type: alert id: PilotingShuttle category: Piloting - onClick: !type:StopPiloting { } + clickEvent: !type:StopPilotingAlertEvent icons: [ /Textures/Interface/Alerts/piloting.png ] name: alerts-piloting-name description: alerts-piloting-desc @@ -366,27 +366,27 @@ id: VowOfSilence icons: [ /Textures/Interface/Alerts/Abilities/silenced.png ] name: alerts-vow-silence-name - onClick: !type:BreakVow { } + clickEvent: !type:BreakVowAlertEvent description: alerts-vow-silence-desc - type: alert id: VowBroken icons: [ /Textures/Interface/Actions/scream.png ] name: alerts-vow-broken-name - onClick: !type:RetakeVow { } + clickEvent: !type:RetakeVowAlertEvent description: alerts-vow-broken-desc - type: alert id: Pulled icons: [ /Textures/Interface/Alerts/Pull/pulled.png ] - onClick: !type:StopBeingPulled { } + clickEvent: !type:StopBeingPulledAlertEvent name: alerts-pulled-name description: alerts-pulled-desc - type: alert id: Pulling icons: [ /Textures/Interface/Alerts/Pull/pulling.png ] - onClick: !type:StopPulling { } + clickEvent: !type:StopPullingAlertEvent name: alerts-pulling-name description: alerts-pulling-desc diff --git a/Resources/Prototypes/Catalog/VendingMachines/advertisements.yml b/Resources/Prototypes/Catalog/VendingMachines/advertisements.yml index aa25e87a52..5f6806afbb 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/advertisements.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/advertisements.yml @@ -8,7 +8,7 @@ id: AtmosDrobeAds values: prefix: advertisement-atmosdrobe- - count: 3 + count: 5 - type: localizedDataset id: BarDrobeAds @@ -38,7 +38,7 @@ id: ChefDrobeAds values: prefix: advertisement-chefdrobe- - count: 3 + count: 4 - type: localizedDataset id: ChefvendAds @@ -50,7 +50,7 @@ id: ChemDrobeAds values: prefix: advertisement-chemdrobe- - count: 3 + count: 4 - type: localizedDataset id: CigaretteMachineAds @@ -110,7 +110,7 @@ id: DonutAds values: prefix: advertisement-donut- - count: 5 + count: 6 - type: localizedDataset id: EngiDrobeAds @@ -146,19 +146,19 @@ id: HyDrobeAds values: prefix: advertisement-hydrobe- - count: 4 + count: 5 - type: localizedDataset id: JaniDrobeAds values: prefix: advertisement-janidrobe- - count: 3 + count: 5 - type: localizedDataset id: LawDrobeAds values: prefix: advertisement-lawdrobe- - count: 8 + count: 9 - type: localizedDataset id: MagiVendAds @@ -170,7 +170,7 @@ id: MediDrobeAds values: prefix: advertisement-medidrobe- - count: 3 + count: 4 - type: localizedDataset id: MegaSeedAds diff --git a/Resources/Prototypes/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/Entities/Clothing/Head/misc.yml index 651f80a3a9..cdd6ee894e 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/misc.yml @@ -148,6 +148,8 @@ sprite: Clothing/Head/Misc/cone.rsi - type: Clothing sprite: Clothing/Head/Misc/cone.rsi + - type: Item + storedRotation: 0 - type: PhysicalComposition #you can't just pass up some free plastic! materialComposition: Plastic: 100 diff --git a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml index 73246dcced..ff6b66323f 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml @@ -96,6 +96,16 @@ - type: Flammable damage: types: {} + - type: StatusEffects # Overwriting basesimplemob to remove flash, getting flashed as dragon just feelsbad + allowed: + - SlowedDown + - Stutter + - Electrocution + - ForcedSleep + - TemporaryBlindness + - Pacified + - RadiationProtection + - Drowsiness - type: Temperature heatDamageThreshold: 800 - type: Metabolizer diff --git a/Resources/Prototypes/Entities/Mobs/Player/human.yml b/Resources/Prototypes/Entities/Mobs/Player/human.yml index e07ce9c5b4..4a7a48a0d5 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/human.yml @@ -11,16 +11,17 @@ name: syndicate agent suffix: Human, Base components: - - type: RandomHumanoidAppearance - randomizeName: false - hair: HairBald - - type: Loadout - prototypes: [SyndicateOperativeGearExtremelyBasic] - - type: RandomMetadata - nameSegments: [names_death_commando] - - type: NpcFactionMember - factions: - - Syndicate + - type: RandomHumanoidAppearance + randomizeName: false + hair: HairBald + - type: Loadout + prototypes: [SyndicateOperativeGearExtremelyBasic] + roleLoadout: [ RoleSurvivalSyndicate ] + - type: RandomMetadata + nameSegments: [names_death_commando] + - type: NpcFactionMember + factions: + - Syndicate - type: entity parent: MobHumanSyndicateAgentBase @@ -28,10 +29,10 @@ name: syndicate agent suffix: Human, Traitor components: - # make the player a traitor once its taken - - type: AutoTraitor - giveUplink: false - giveObjectives: false + # make the player a traitor once its taken + - type: AutoTraitor + giveUplink: false + giveObjectives: false - type: entity parent: MobHumanSyndicateAgent @@ -40,6 +41,7 @@ components: - type: Loadout prototypes: [SyndicateReinforcementMedic] + roleLoadout: [ RoleSurvivalSyndicate ] - type: entity parent: MobHumanSyndicateAgent @@ -48,6 +50,7 @@ components: - type: Loadout prototypes: [SyndicateReinforcementSpy] + roleLoadout: [ RoleSurvivalSyndicate ] - type: entity parent: MobHumanSyndicateAgent @@ -56,19 +59,20 @@ components: - type: Loadout prototypes: [SyndicateReinforcementThief] + roleLoadout: [ RoleSurvivalSyndicate ] - type: entity parent: MobHumanSyndicateAgentBase id: MobHumanSyndicateAgentNukeops # Reinforcement exclusive to nukeops uplink suffix: Human, NukeOps components: - - type: NukeOperative - - type: RandomMetadata - nameSegments: - - nukeops-role-operator - - SyndicateNamesNormal - - type: Loadout - prototypes: [SyndicateOperativeGearFullNoUplink] + - type: NukeOperative + - type: RandomMetadata + nameSegments: + - nukeops-role-operator + - SyndicateNamesNormal + - type: Loadout + prototypes: [SyndicateOperativeGearFullNoUplink] # Nuclear Operative - type: entity @@ -77,8 +81,8 @@ parent: MobHuman id: MobHumanNukeOp components: - - type: NukeOperative - - type: RandomHumanoidAppearance + - type: NukeOperative + - type: RandomHumanoidAppearance - type: entity categories: [ HideSpawnMenu ] @@ -86,15 +90,16 @@ id: MobHumanLoneNuclearOperative name: Lone Operative components: - - type: RandomHumanoidAppearance - randomizeName: false - - type: NukeOperative - - type: Loadout - prototypes: [SyndicateLoneOperativeGearFull] - - type: RandomMetadata - nameSegments: - - SyndicateNamesPrefix - - SyndicateNamesNormal - - type: NpcFactionMember - factions: - - Syndicate + - type: RandomHumanoidAppearance + randomizeName: false + - type: NukeOperative + - type: Loadout + prototypes: [SyndicateLoneOperativeGearFull] + roleLoadout: [ RoleSurvivalSyndicate ] + - type: RandomMetadata + nameSegments: + - SyndicateNamesPrefix + - SyndicateNamesNormal + - type: NpcFactionMember + factions: + - Syndicate diff --git a/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml b/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml index 47baca6134..574f31dff3 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml @@ -44,6 +44,7 @@ settings: short - type: Loadout prototypes: [ DeathSquadGear ] + roleLoadout: [ RoleSurvivalEVA ] - type: RandomMetadata nameSegments: - NamesFirstMilitaryLeader @@ -80,6 +81,7 @@ settings: short - type: Loadout prototypes: [ ERTLeaderGear ] + roleLoadout: [ RoleSurvivalExtended ] - type: RandomMetadata nameSegments: - NamesFirstMilitaryLeader @@ -109,6 +111,7 @@ settings: short - type: Loadout prototypes: [ ERTLeaderGearEVA ] + roleLoadout: [ RoleSurvivalEVA ] - type: entity id: RandomHumanoidSpawnerERTLeaderEVALecter @@ -130,6 +133,7 @@ settings: short - type: Loadout prototypes: [ ERTLeaderGearEVALecter ] + roleLoadout: [ RoleSurvivalEVA ] ## ERT Chaplain @@ -165,6 +169,7 @@ - NamesLastMilitary - type: Loadout prototypes: [ ERTChaplainGear ] + roleLoadout: [ RoleSurvivalExtended ] - type: entity id: RandomHumanoidSpawnerERTChaplainEVA @@ -190,6 +195,7 @@ settings: short - type: Loadout prototypes: [ ERTChaplainGearEVA ] + roleLoadout: [ RoleSurvivalEVA ] ## ERT Janitor @@ -225,6 +231,7 @@ - NamesLastMilitary - type: Loadout prototypes: [ ERTJanitorGear ] + roleLoadout: [ RoleSurvivalExtended ] - type: entity id: RandomHumanoidSpawnerERTJanitorEVA @@ -250,6 +257,7 @@ settings: short - type: Loadout prototypes: [ ERTJanitorGearEVA ] + roleLoadout: [ RoleSurvivalEVA ] ## ERT Engineer @@ -285,6 +293,7 @@ - NamesLastMilitary - type: Loadout prototypes: [ ERTEngineerGear ] + roleLoadout: [ RoleSurvivalExtended ] - type: entity id: RandomHumanoidSpawnerERTEngineerEVA @@ -310,6 +319,7 @@ settings: short - type: Loadout prototypes: [ ERTEngineerGearEVA ] + roleLoadout: [ RoleSurvivalEVA ] ## ERT Security @@ -345,6 +355,7 @@ - NamesLastMilitary - type: Loadout prototypes: [ ERTSecurityGear ] + roleLoadout: [ RoleSurvivalExtended ] - type: entity id: RandomHumanoidSpawnerERTSecurityEVA @@ -370,6 +381,7 @@ settings: short - type: Loadout prototypes: [ ERTSecurityGearEVA ] + roleLoadout: [ RoleSurvivalEVA ] - type: entity id: RandomHumanoidSpawnerERTSecurityEVALecter @@ -391,6 +403,7 @@ settings: short - type: Loadout prototypes: [ ERTSecurityGearEVALecter ] + roleLoadout: [ RoleSurvivalEVA ] ## ERT Medic @@ -426,6 +439,7 @@ - NamesLastMilitary - type: Loadout prototypes: [ ERTMedicalGear ] + roleLoadout: [ RoleSurvivalExtended ] - type: entity id: RandomHumanoidSpawnerERTMedicalEVA @@ -451,6 +465,7 @@ settings: short - type: Loadout prototypes: [ ERTMedicalGearEVA ] + roleLoadout: [ RoleSurvivalEVA ] ## CBURN @@ -471,6 +486,7 @@ components: - type: Loadout prototypes: [CBURNGear] + roleLoadout: [ RoleSurvivalEVA ] - type: GhostRole name: ghost-role-information-cburn-agent-name description: ghost-role-information-cburn-agent-description @@ -506,6 +522,7 @@ settings: default - type: Loadout prototypes: [ CentcomGear ] + roleLoadout: [ RoleSurvivalStandard ] ## Syndicate @@ -528,6 +545,7 @@ randomizeName: false - type: Loadout prototypes: [SyndicateOperativeGearExtremelyBasic] + roleLoadout: [ RoleSurvivalSyndicate ] - type: entity id: RandomHumanoidSpawnerNukeOp @@ -607,8 +625,6 @@ - type: randomHumanoidSettings id: LostCargoTechnician parent: EventHumanoid - speciesBlacklist: - - Vox components: - type: GhostRole name: ghost-role-information-lost-cargo-technical-name @@ -618,6 +634,8 @@ settings: short - type: Loadout prototypes: [ LostCargoTechGearSuit, LostCargoTechGearCoat ] + roleLoadout: [ RoleSurvivalStandard ] + # Clown troupe @@ -660,8 +678,6 @@ id: ClownTroupe parent: EventHumanoid randomizeName: false - speciesBlacklist: - - Vox components: - type: GhostRole name: ghost-role-information-clown-troupe-name @@ -671,6 +687,7 @@ settings: short - type: Loadout prototypes: [ ClownTroupe ] + roleLoadout: [ RoleSurvivalStandard ] - type: RandomMetadata nameSegments: - names_clown @@ -682,6 +699,7 @@ components: - type: Loadout prototypes: [ BananaClown ] + roleLoadout: [ RoleSurvivalStandard ] # Traveling exotic chef @@ -712,8 +730,6 @@ - type: randomHumanoidSettings id: TravelingChef parent: EventHumanoid - speciesBlacklist: - - Vox components: - type: GhostRole name: ghost-role-information-traveling-chef-name @@ -723,6 +739,7 @@ settings: short - type: Loadout prototypes: [ TravelingChef ] + roleLoadout: [ RoleSurvivalStandard ] # Disaster victim @@ -774,8 +791,6 @@ - type: randomHumanoidSettings id: DisasterVictimHead parent: EventHumanoidMindShielded - speciesBlacklist: - - Vox components: - type: GhostRole name: ghost-role-information-disaster-victim-name @@ -790,6 +805,7 @@ components: - type: Loadout prototypes: [ DisasterVictimRD, DisasterVictimRDAlt ] + roleLoadout: [ RoleSurvivalStandard ] - type: randomHumanoidSettings id: DisasterVictimCMO @@ -797,6 +813,7 @@ components: - type: Loadout prototypes: [ DisasterVictimCMO, DisasterVictimCMOAlt ] + roleLoadout: [ RoleSurvivalMedical ] - type: randomHumanoidSettings id: DisasterVictimCaptain @@ -804,6 +821,7 @@ components: - type: Loadout prototypes: [ DisasterVictimCaptain, DisasterVictimCaptainAlt ] + roleLoadout: [ RoleSurvivalStandard ] # Syndie Disaster Victim @@ -834,8 +852,6 @@ - type: randomHumanoidSettings id: SyndieDisasterVictim parent: EventHumanoid - speciesBlacklist: - - Vox components: - type: NpcFactionMember factions: @@ -848,3 +864,4 @@ settings: short - type: Loadout prototypes: [ SyndicateOperativeGearCivilian ] + roleLoadout: [ RoleSurvivalStandard ] diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index af309e93ad..4a14b5332e 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -167,6 +167,7 @@ - type: Dna - type: MindContainer showExamineInfo: true + - type: CanEnterCryostorage - type: InteractionPopup successChance: 1 interactSuccessString: hugging-success-generic diff --git a/Resources/Prototypes/Entities/Mobs/Species/vox.yml b/Resources/Prototypes/Entities/Mobs/Species/vox.yml index 4bcd068d9d..3c09baa25f 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/vox.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/vox.yml @@ -108,6 +108,11 @@ 32: sprite: Mobs/Species/Vox/displacement.rsi state: hand + head: + sizeMaps: + 32: + sprite: Mobs/Species/Vox/displacement.rsi + state: head back: sizeMaps: 32: @@ -151,6 +156,11 @@ 32: sprite: Mobs/Species/Vox/displacement.rsi state: hand + head: + sizeMaps: + 32: + sprite: Mobs/Species/Vox/displacement.rsi + state: head back: sizeMaps: 32: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml index f1f30f6c46..102703f2a5 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml @@ -1,4 +1,5 @@ # Lots of misc stuff in here, hard to parent it. +# ^ Yeah, this stuff should probably get split into different files but not my fight today. # Powder (For when you throw stuff like flour and it explodes) @@ -481,10 +482,33 @@ components: - type: Sprite state: butter + - type: Slippery + - type: StepTrigger + intersectRatio: 0.2 + - type: CollisionWake + enabled: false + - type: Physics + bodyType: Dynamic + - type: Fixtures + fixtures: + slips: + shape: + !type:PhysShapeAabb + bounds: "-0.3,-0.2,0.3,0.2" + layer: + - SlipLayer + hard: false + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.3,-0.2,0.3,0.2" + density: 10 + mask: + - ItemMask - type: entity name: stick of cannabis butter - parent: FoodBakingBase + parent: FoodButter id: FoodCannabisButter description: Add this to your favorite baked goods for an irie time. components: diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index 2e3df6e754..e48fb0a263 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -64,8 +64,8 @@ - type: entity id: BiofabricatorMachineCircuitboard parent: BaseMachineCircuitboard - name: biofabricator machine board - description: A machine printed circuit board for a biofabricator. + name: biocube fabricator machine board + description: A machine printed circuit board for a biocube fabricator. components: - type: MachineBoard prototype: Biofabricator diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 44d4224d6b..8f1ff07547 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -648,7 +648,7 @@ - type: entity id: Biofabricator parent: BaseLathe - name: biofabricator + name: biocube fabricator description: Produces animal cubes using biomass. components: - type: Sprite @@ -657,16 +657,20 @@ layers: - state: icon map: ["enum.LatheVisualLayers.IsRunning"] + color: "#ffaa99" - state: unlit shader: unshaded map: ["enum.PowerDeviceVisualLayers.Powered"] + color: "#ffaaaa" - state: inserting map: ["enum.MaterialStorageVisualLayers.Inserting"] + color: "#ffaaaa" - state: panel map: ["enum.WiresVisualLayers.MaintenancePanel"] - type: Machine board: BiofabricatorMachineCircuitboard - type: MaterialStorage + ignoreColor: true whitelist: tags: - Sheet diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index ae7141e9b4..c4c9af83b3 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -1089,7 +1089,7 @@ - type: entity parent: BaseWall id: WallMining - name: wall + name: mining wall components: - type: Tag tags: @@ -1118,7 +1118,7 @@ - type: entity parent: WallShuttleDiagonal id: WallMiningDiagonal - name: wall + name: mining wall suffix: diagonal placement: mode: SnapgridCenter diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 01a9f00257..fe9d6410d0 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -151,10 +151,6 @@ minimumPlayers: 30 - type: SpaceSpawnRule - type: AntagLoadProfileRule - # Vox disabled until loadouts work on AntagSelection-based spawns - speciesOverride: Human - speciesOverrideBlacklist: - - Vox - type: AntagObjectives objectives: - StealResearchObjective @@ -171,6 +167,8 @@ max: 1 pickPlayer: false startingGear: SpaceNinjaGear + roleLoadout: + - RoleSurvivalEVA briefing: text: ninja-role-greeting color: Green diff --git a/Resources/Prototypes/GameRules/roundstart.yml b/Resources/Prototypes/GameRules/roundstart.yml index 3e4ea6d7b3..a10a6c8d2a 100644 --- a/Resources/Prototypes/GameRules/roundstart.yml +++ b/Resources/Prototypes/GameRules/roundstart.yml @@ -86,7 +86,7 @@ #Species that do not work with nukies should be included in this list. #Once the issues are fixed the species should be removed from this list to be enabled. #Balance concerns are not a valid reason to disable a species, except for high-impact Nukie-specific exploits. - - Vox + #- Vox - type: entity parent: BaseNukeopsRule @@ -103,6 +103,8 @@ fallbackRoles: [ Nukeops, NukeopsMedic ] spawnerPrototype: SpawnPointNukeopsCommander startingGear: SyndicateCommanderGearFull + roleLoadout: + - RoleSurvivalSyndicate components: - type: NukeOperative - type: RandomMetadata @@ -119,6 +121,8 @@ fallbackRoles: [ Nukeops, NukeopsCommander ] spawnerPrototype: SpawnPointNukeopsMedic startingGear: SyndicateOperativeMedicFull + roleLoadout: + - RoleSurvivalSyndicate components: - type: NukeOperative - type: RandomMetadata @@ -137,6 +141,8 @@ max: 3 playerRatio: 10 startingGear: SyndicateOperativeGearFull + roleLoadout: + - RoleSurvivalSyndicate components: - type: NukeOperative - type: RandomMetadata diff --git a/Resources/Prototypes/Loadouts/Miscellaneous/survival.yml b/Resources/Prototypes/Loadouts/Miscellaneous/survival.yml index d308c62506..2716310ecf 100644 --- a/Resources/Prototypes/Loadouts/Miscellaneous/survival.yml +++ b/Resources/Prototypes/Loadouts/Miscellaneous/survival.yml @@ -142,15 +142,32 @@ # Pre-equipped species gear -# Full Tank Equipped +# Full tank for vox as part of any Survival loadout - type: loadout - id: LoadoutSpeciesEVANitrogen + id: LoadoutSpeciesVoxNitrogen effects: - !type:GroupLoadoutEffect proto: EffectSpeciesVox equipment: suitstorage: NitrogenTankFilled +# Full EVA Tank, Any Species +- type: loadout + id: LoadoutSpeciesEVANitrogen + effects: + - !type:GroupLoadoutEffect + proto: NitrogenBreather + equipment: + suitstorage: NitrogenTankFilled + +- type: loadout + id: LoadoutSpeciesEVAOxygen + effects: + - !type:GroupLoadoutEffect + proto: OxygenBreather + equipment: + suitstorage: OxygenTankFilled + # Tank Harness - type: loadout id: LoadoutTankHarness @@ -160,7 +177,7 @@ equipment: outerClothing: ClothingOuterVestTank -# Breaths Tool On Face +# Breath Tool On Face - type: loadout id: LoadoutSpeciesBreathTool effects: diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index b1d267cc00..1df741b3c7 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -51,7 +51,15 @@ loadouts: - EmergencyNitrogen - EmergencyOxygen + - LoadoutSpeciesVoxNitrogen + +- type: loadoutGroup + id: GroupEVATank + name: loadout-group-EVA-tank + hidden: true + loadouts: - LoadoutSpeciesEVANitrogen + - LoadoutSpeciesEVAOxygen # Command - type: loadoutGroup @@ -423,7 +431,7 @@ loadouts: - EmergencyNitrogenClown - EmergencyOxygenClown - - LoadoutSpeciesEVANitrogen + - LoadoutSpeciesVoxNitrogen - type: loadoutGroup id: MimeHead @@ -746,7 +754,7 @@ loadouts: - EmergencyNitrogenExtended - EmergencyOxygenExtended - - LoadoutSpeciesEVANitrogen + - LoadoutSpeciesVoxNitrogen # Science - type: loadoutGroup @@ -1026,7 +1034,7 @@ loadouts: - EmergencyNitrogenSecurity - EmergencyOxygenSecurity - - LoadoutSpeciesEVANitrogen + - LoadoutSpeciesVoxNitrogen # Medical - type: loadoutGroup @@ -1208,7 +1216,7 @@ loadouts: - EmergencyNitrogenMedical - EmergencyOxygenMedical - - LoadoutSpeciesEVANitrogen + - LoadoutSpeciesVoxNitrogen # Wildcards - type: loadoutGroup @@ -1243,7 +1251,7 @@ loadouts: - EmergencyNitrogenSyndicate - EmergencyOxygenSyndicate - - LoadoutSpeciesEVANitrogen + - LoadoutSpeciesVoxNitrogen - type: loadoutGroup id: GroupSpeciesBreathTool diff --git a/Resources/Prototypes/Loadouts/role_loadouts.yml b/Resources/Prototypes/Loadouts/role_loadouts.yml index bb30cc182a..c204f87c93 100644 --- a/Resources/Prototypes/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/Loadouts/role_loadouts.yml @@ -550,3 +550,9 @@ - SurvivalSyndicate - GroupSpeciesBreathTool - GroupTankHarness + +- type: roleLoadout + id: RoleSurvivalEVA + groups: + - GroupEVATank + - SurvivalExtended diff --git a/Resources/Prototypes/Maps/train.yml b/Resources/Prototypes/Maps/train.yml index 20cb0fde01..771d928c00 100644 --- a/Resources/Prototypes/Maps/train.yml +++ b/Resources/Prototypes/Maps/train.yml @@ -32,8 +32,8 @@ Detective: [ 1, 1 ] #engineering ChiefEngineer: [ 1, 1 ] - AtmosphericTechnician: [ 3, 3 ] - StationEngineer: [ 5, 5 ] + AtmosphericTechnician: [ 2, 2 ] + StationEngineer: [ 4, 4 ] TechnicalAssistant: [ 3, 3 ] #medical ChiefMedicalOfficer: [ 1, 1 ] @@ -61,3 +61,4 @@ Mime: [ 1, 1 ] Musician: [ 1, 1 ] Borg: [ 2, 2 ] + Reporter: [ 1, 1 ] diff --git a/Resources/Prototypes/Roles/Antags/ninja.yml b/Resources/Prototypes/Roles/Antags/ninja.yml index 6df8a2317e..6a9a65bb13 100644 --- a/Resources/Prototypes/Roles/Antags/ninja.yml +++ b/Resources/Prototypes/Roles/Antags/ninja.yml @@ -23,12 +23,10 @@ pocket1: SpiderCharge pocket2: PinpointerStation belt: EnergyKatana - suitstorage: OxygenTankFilled inhand: - JetpackBlackFilled storage: back: # belt holds katana so satchel has the tools for sabotaging things - - BoxSurvival - Crowbar - Wrench - Screwdriver diff --git a/Resources/Prototypes/Roles/Antags/nukeops.yml b/Resources/Prototypes/Roles/Antags/nukeops.yml index 8dec692ee5..52d422876f 100644 --- a/Resources/Prototypes/Roles/Antags/nukeops.yml +++ b/Resources/Prototypes/Roles/Antags/nukeops.yml @@ -55,7 +55,6 @@ belt: ClothingBeltMilitaryWebbing storage: back: - - BoxSurvivalSyndicate - WeaponPistolViper - PinpointerSyndicateNuclear - DeathAcidifierImplanter @@ -90,7 +89,6 @@ storage: back: - SyndiHypo - - BoxSurvivalSyndicate - SawAdvanced - Cautery - CombatKnife diff --git a/Resources/Prototypes/Roles/Antags/traitor.yml b/Resources/Prototypes/Roles/Antags/traitor.yml index cb2fd4b13e..51c61e74c6 100644 --- a/Resources/Prototypes/Roles/Antags/traitor.yml +++ b/Resources/Prototypes/Roles/Antags/traitor.yml @@ -31,7 +31,6 @@ gloves: ClothingHandsGlovesColorBlack storage: back: - - BoxSurvivalSyndicate - WeaponPistolViper - PinpointerSyndicateNuclear - DeathAcidifierImplanter @@ -51,9 +50,6 @@ pocket1: WeaponPistolViper inhand: - MedkitCombatFilled - storage: - back: - - BoxSurvivalSyndicate - type: startingGear id: SyndicateReinforcementSpy @@ -62,9 +58,6 @@ id: AgentIDCard mask: ClothingMaskGasVoiceChameleon pocket1: WeaponPistolViper - storage: - back: - - BoxSurvivalSyndicate - type: startingGear id: SyndicateReinforcementThief @@ -75,7 +68,6 @@ - ToolboxSyndicateFilled storage: back: - - BoxSurvivalSyndicate - SyndicateJawsOfLife #Syndicate Operative Outfit - Basic diff --git a/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml b/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml index 011ac8812b..211a234790 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml @@ -31,7 +31,6 @@ pocket2: FlashlightSeclite storage: back: - - BoxSurvivalEngineering - WeaponDisabler - MedicatedSuture - RegenerativeMesh @@ -49,7 +48,6 @@ eyes: ClothingEyesGlassesSecurity gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitERTLeader - suitstorage: AirTankFilled id: ERTLeaderPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltSecurityFilled @@ -57,7 +55,6 @@ pocket2: FlashlightSeclite storage: back: - - BoxSurvivalEngineering - WeaponDisabler - MedicatedSuture - RegenerativeMesh @@ -75,17 +72,15 @@ eyes: ClothingEyesGlassesSecurity gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitERTLeader - suitstorage: WeaponRifleLecter id: ERTLeaderPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltSecurityFilled pocket1: MagazineRifle pocket2: MagazineRifle inhand: - - AirTankFilled + - WeaponRifleLecter storage: back: - - BoxSurvivalEngineering - WeaponDisabler - MedicatedSuture - RegenerativeMesh @@ -131,7 +126,6 @@ pocket2: DrinkWaterBottleFull storage: back: - - BoxSurvivalEngineering - BoxCandle - BoxBodyBag - DrinkWaterMelonJuiceJug @@ -156,7 +150,6 @@ neck: ClothingNeckStoleChaplain gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitERTChaplain - suitstorage: AirTankFilled id: ERTChaplainPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltStorageWaistbag @@ -164,7 +157,6 @@ pocket2: DrinkWaterBottleFull storage: back: - - BoxSurvivalEngineering - BoxCandle - BoxBodyBag - DrinkWaterMelonJuiceJug @@ -211,7 +203,6 @@ pocket2: GasAnalyzer storage: back: - - BoxSurvivalEngineering - trayScanner - RCD - RCDAmmo @@ -233,7 +224,6 @@ eyes: ClothingEyesGlassesMeson gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitERTEngineer - suitstorage: AirTankFilled id: ERTEngineerPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltChiefEngineerFilled @@ -241,7 +231,6 @@ pocket2: GasAnalyzer storage: back: - - BoxSurvivalEngineering - trayScanner - RCD - RCDAmmo @@ -286,7 +275,6 @@ pocket2: FlashlightSeclite storage: back: - - BoxSurvivalEngineering - WeaponDisabler - MedicatedSuture - RegenerativeMesh @@ -304,7 +292,6 @@ eyes: ClothingEyesGlassesSecurity gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitERTSecurity - suitstorage: AirTankFilled id: ERTSecurityPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltSecurityFilled @@ -312,7 +299,6 @@ pocket2: FlashlightSeclite storage: back: - - BoxSurvivalEngineering - WeaponDisabler - MedicatedSuture - RegenerativeMesh @@ -330,17 +316,15 @@ eyes: ClothingEyesGlassesSecurity gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitERTSecurity - suitstorage: WeaponRifleLecter id: ERTSecurityPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltSecurityFilled pocket1: MagazineRifle pocket2: MagazineRifle inhand: - - AirTankFilled + - WeaponRifleLecter storage: back: - - BoxSurvivalEngineering - WeaponDisabler - MedicatedSuture - RegenerativeMesh @@ -380,7 +364,6 @@ pocket1: Flare storage: back: - - BoxSurvivalMedical # Is this actually supposed to be Medical? All other ERT has Extended - Hypospray - MedkitAdvancedFilled - CrowbarRed @@ -398,14 +381,12 @@ eyes: ClothingEyesHudMedical gloves: ClothingHandsGlovesNitrile outerClothing: ClothingOuterHardsuitERTMedical - suitstorage: AirTankFilled id: ERTMedicPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltMedicalFilled pocket1: Flare storage: back: - - BoxSurvivalMedical # Is this actually supposed to be Medical? All other ERT has Extended - Hypospray - MedkitAdvancedFilled - CrowbarRed @@ -444,7 +425,6 @@ pocket1: Flare storage: back: - - BoxSurvivalEngineering - LightReplacer - BoxLightMixed - BoxLightMixed @@ -461,14 +441,12 @@ mask: ClothingMaskGasERT gloves: ClothingHandsGlovesColorPurple outerClothing: ClothingOuterHardsuitERTJanitor - suitstorage: AirTankFilled id: ERTJanitorPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltJanitorFilled pocket1: Flare storage: back: - - BoxSurvivalEngineering - LightReplacer - BoxLightMixed - BoxLightMixed diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml index e12bee8c79..f2291e492e 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml @@ -28,7 +28,6 @@ ears: ClothingHeadsetAltCentCom gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitDeathsquad - suitstorage: AirTankFilled shoes: ClothingShoesBootsMagAdv id: DeathsquadPDA pocket1: EnergySword @@ -36,8 +35,6 @@ belt: ClothingBeltMilitaryWebbingMedFilled storage: back: - - BoxSurvivalEngineering - - WeaponPulseRifle - WeaponPulsePistol - WeaponRevolverMateba - SpeedLoaderMagnumAP @@ -48,6 +45,8 @@ - Hypospray - DeathAcidifierImplanter # crew will try to steal their amazing hardsuits - FreedomImplanter + inhand: + - WeaponPulseRifle # Syndicate Operative Outfit - Civilian - type: startingGear @@ -117,11 +116,9 @@ id: CBURNPDA pocket1: RadioHandheld pocket2: WeaponLaserGun - suitstorage: OxygenTankFilled belt: ClothingBeltBandolier storage: back: - - BoxSurvivalEngineering - WeaponShotgunDoubleBarreled - BoxShotgunIncendiary - GrenadeFlashBang diff --git a/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vox.png index c3fa7f5917..4c94f2c091 100644 Binary files a/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vox.png and b/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/medical.rsi/up-equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/medical.rsi/up-equipped-MASK-vox.png index 770ad70cf5..c3d8d0fd57 100644 Binary files a/Resources/Textures/Clothing/Mask/medical.rsi/up-equipped-MASK-vox.png and b/Resources/Textures/Clothing/Mask/medical.rsi/up-equipped-MASK-vox.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/displacement.rsi/head.png b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/head.png new file mode 100644 index 0000000000..676262eca6 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/head.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/displacement.rsi/meta.json b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/meta.json index 2152470bd1..002f826b3e 100644 --- a/Resources/Textures/Mobs/Species/Vox/displacement.rsi/meta.json +++ b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "jumpsuit state made by PJB3005. back, hand, and eyes states made by Flareguy, ears and shoes made by TheShuEd", + "copyright": "jumpsuit state made by PJB3005. back, hand, head, and eyes states made by Flareguy, ears and shoes made by TheShuEd", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "hand", "directions": 4 }, + { + "name": "head", + "directions": 4 + }, { "name": "ears", "directions": 4 diff --git a/RobustToolbox b/RobustToolbox index 5c0ce43e6c..49c831b48d 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 5c0ce43e6c3c22a939fad8a9f9848e489b135651 +Subproject commit 49c831b48d1449e90a65acdb0c276d2deea4ce2c