diff --git a/BuildChecker/BuildChecker.csproj b/BuildChecker/BuildChecker.csproj index 63d16fa9708..4bd7fcf78c3 100644 --- a/BuildChecker/BuildChecker.csproj +++ b/BuildChecker/BuildChecker.csproj @@ -12,12 +12,12 @@ You want to handle the Build, Clean and Rebuild tasks to prevent missing task er If you want to learn more about these kinds of things, check out Microsoft's official documentation about MSBuild: https://docs.microsoft.com/en-us/visualstudio/msbuild/msbuild --> - + python3 py -3 {C899FCA4-7037-4E49-ABC2-44DE72487110} - .NETFramework, Version=v4.7.2 + net4.7.2 false diff --git a/Content.Benchmarks/ComponentQueryBenchmark.cs b/Content.Benchmarks/ComponentQueryBenchmark.cs index 11c7ab9d5f5..49e9984c093 100644 --- a/Content.Benchmarks/ComponentQueryBenchmark.cs +++ b/Content.Benchmarks/ComponentQueryBenchmark.cs @@ -9,13 +9,14 @@ using Content.Shared.Clothing.Components; using Content.Shared.Doors.Components; using Content.Shared.Item; -using Robust.Server.GameObjects; using Robust.Shared; using Robust.Shared.Analyzers; +using Robust.Shared.EntitySerialization; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.GameObjects; -using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Random; +using Robust.Shared.Utility; namespace Content.Benchmarks; @@ -32,7 +33,6 @@ public class ComponentQueryBenchmark private TestPair _pair = default!; private IEntityManager _entMan = default!; - private MapId _mapId = new(10); private EntityQuery _itemQuery; private EntityQuery _clothingQuery; private EntityQuery _mapQuery; @@ -54,10 +54,10 @@ public void Setup() _pair.Server.ResolveDependency().SetSeed(42); _pair.Server.WaitPost(() => { - var success = _entMan.System().TryLoad(_mapId, Map, out _); - if (!success) + var map = new ResPath(Map); + var opts = DeserializationOptions.Default with {InitializeMaps = true}; + if (!_entMan.System().TryLoadMap(map, out _, out _, opts)) throw new Exception("Map load failed"); - _pair.Server.MapMan.DoMapInitialize(_mapId); }).GetAwaiter().GetResult(); _items = new EntityUid[_entMan.Count()]; diff --git a/Content.Benchmarks/MapLoadBenchmark.cs b/Content.Benchmarks/MapLoadBenchmark.cs index 8182ba8ec6c..2bb71bb59d6 100644 --- a/Content.Benchmarks/MapLoadBenchmark.cs +++ b/Content.Benchmarks/MapLoadBenchmark.cs @@ -6,12 +6,13 @@ using Content.IntegrationTests; using Content.IntegrationTests.Pair; using Content.Server.Maps; -using Robust.Server.GameObjects; using Robust.Shared; using Robust.Shared.Analyzers; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.GameObjects; using Robust.Shared.Map; using Robust.Shared.Prototypes; +using Robust.Shared.Utility; namespace Content.Benchmarks; @@ -20,7 +21,7 @@ public class MapLoadBenchmark { private TestPair _pair = default!; private MapLoaderSystem _mapLoader = default!; - private IMapManager _mapManager = default!; + private SharedMapSystem _mapSys = default!; [GlobalSetup] public void Setup() @@ -36,7 +37,7 @@ public void Setup() .ToDictionary(x => x.ID, x => x.MapPath.ToString()); _mapLoader = server.ResolveDependency().GetEntitySystem(); - _mapManager = server.ResolveDependency(); + _mapSys = server.ResolveDependency().GetEntitySystem(); } [GlobalCleanup] @@ -52,17 +53,19 @@ public async Task Cleanup() public string Map; public Dictionary Paths; + private MapId _mapId; [Benchmark] public async Task LoadMap() { - var mapPath = Paths[Map]; + var mapPath = new ResPath(Paths[Map]); var server = _pair.Server; await server.WaitPost(() => { - var success = _mapLoader.TryLoad(new MapId(10), mapPath, out _); + var success = _mapLoader.TryLoadMap(mapPath, out var map, out _); if (!success) throw new Exception("Map load failed"); + _mapId = map.Value.Comp.MapId; }); } @@ -70,9 +73,7 @@ await server.WaitPost(() => public void IterationCleanup() { var server = _pair.Server; - server.WaitPost(() => - { - _mapManager.DeleteMap(new MapId(10)); - }).Wait(); + server.WaitPost(() => _mapSys.DeleteMap(_mapId)) + .Wait(); } } diff --git a/Content.Benchmarks/PvsBenchmark.cs b/Content.Benchmarks/PvsBenchmark.cs index fa7f9d45422..2f87545426e 100644 --- a/Content.Benchmarks/PvsBenchmark.cs +++ b/Content.Benchmarks/PvsBenchmark.cs @@ -7,13 +7,15 @@ using Content.IntegrationTests.Pair; using Content.Server.Mind; using Content.Server.Warps; -using Robust.Server.GameObjects; using Robust.Shared; using Robust.Shared.Analyzers; +using Robust.Shared.EntitySerialization; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.GameObjects; using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Random; +using Robust.Shared.Utility; namespace Content.Benchmarks; @@ -34,7 +36,6 @@ public class PvsBenchmark private TestPair _pair = default!; private IEntityManager _entMan = default!; - private MapId _mapId = new(10); private ICommonSession[] _players = default!; private EntityCoordinates[] _spawns = default!; public int _cycleOffset = 0; @@ -65,10 +66,10 @@ private async Task SetupAsync() _pair.Server.ResolveDependency().SetSeed(42); await _pair.Server.WaitPost(() => { - var success = _entMan.System().TryLoad(_mapId, Map, out _); - if (!success) + var path = new ResPath(Map); + var opts = DeserializationOptions.Default with {InitializeMaps = true}; + if (!_entMan.System().TryLoadMap(path, out _, out _, opts)) throw new Exception("Map load failed"); - _pair.Server.MapMan.DoMapInitialize(_mapId); }); // Get list of ghost warp positions diff --git a/Content.Client/Actions/ActionsSystem.cs b/Content.Client/Actions/ActionsSystem.cs index d836c2ed7a8..5f0a8e1f2f4 100644 --- a/Content.Client/Actions/ActionsSystem.cs +++ b/Content.Client/Actions/ActionsSystem.cs @@ -88,6 +88,7 @@ private void OnEntityTargetHandleState(EntityUid uid, EntityTargetActionComponen return; component.Whitelist = state.Whitelist; + component.Blacklist = state.Blacklist; component.CanTargetSelf = state.CanTargetSelf; BaseHandleState(uid, component, state); } diff --git a/Content.Client/Atmos/Consoles/AtmosAlertsComputerBoundUserInterface.cs b/Content.Client/Atmos/Consoles/AtmosAlertsComputerBoundUserInterface.cs index 6f0e7f80da1..8abf0cbd73a 100644 --- a/Content.Client/Atmos/Consoles/AtmosAlertsComputerBoundUserInterface.cs +++ b/Content.Client/Atmos/Consoles/AtmosAlertsComputerBoundUserInterface.cs @@ -11,6 +11,8 @@ public AtmosAlertsComputerBoundUserInterface(EntityUid owner, Enum uiKey) : base protected override void Open() { + base.Open(); + _menu = new AtmosAlertsComputerWindow(this, Owner); _menu.OpenCentered(); _menu.OnClose += Close; diff --git a/Content.Client/Atmos/EntitySystems/GasTileOverlaySystem.cs b/Content.Client/Atmos/EntitySystems/GasTileOverlaySystem.cs index 86cf0a9eb82..ad264369467 100644 --- a/Content.Client/Atmos/EntitySystems/GasTileOverlaySystem.cs +++ b/Content.Client/Atmos/EntitySystems/GasTileOverlaySystem.cs @@ -16,6 +16,7 @@ public sealed class GasTileOverlaySystem : SharedGasTileOverlaySystem [Dependency] private readonly IResourceCache _resourceCache = default!; [Dependency] private readonly IOverlayManager _overlayMan = default!; [Dependency] private readonly SpriteSystem _spriteSys = default!; + [Dependency] private readonly SharedTransformSystem _xformSys = default!; private GasTileOverlay _overlay = default!; @@ -25,7 +26,7 @@ public override void Initialize() SubscribeNetworkEvent(HandleGasOverlayUpdate); SubscribeLocalEvent(OnHandleState); - _overlay = new GasTileOverlay(this, EntityManager, _resourceCache, ProtoMan, _spriteSys); + _overlay = new GasTileOverlay(this, EntityManager, _resourceCache, ProtoMan, _spriteSys, _xformSys); _overlayMan.AddOverlay(_overlay); } diff --git a/Content.Client/Atmos/Overlays/GasTileOverlay.cs b/Content.Client/Atmos/Overlays/GasTileOverlay.cs index 17027525e54..55aeaa12af5 100644 --- a/Content.Client/Atmos/Overlays/GasTileOverlay.cs +++ b/Content.Client/Atmos/Overlays/GasTileOverlay.cs @@ -21,6 +21,7 @@ public sealed class GasTileOverlay : Overlay { private readonly IEntityManager _entManager; private readonly IMapManager _mapManager; + private readonly SharedTransformSystem _xformSys; public override OverlaySpace Space => OverlaySpace.WorldSpaceEntities | OverlaySpace.WorldSpaceBelowWorld; private readonly ShaderInstance _shader; @@ -46,10 +47,11 @@ public sealed class GasTileOverlay : Overlay public const int GasOverlayZIndex = (int) Shared.DrawDepth.DrawDepth.Effects; // Under ghosts, above mostly everything else - public GasTileOverlay(GasTileOverlaySystem system, IEntityManager entManager, IResourceCache resourceCache, IPrototypeManager protoMan, SpriteSystem spriteSys) + public GasTileOverlay(GasTileOverlaySystem system, IEntityManager entManager, IResourceCache resourceCache, IPrototypeManager protoMan, SpriteSystem spriteSys, SharedTransformSystem xformSys) { _entManager = entManager; _mapManager = IoCManager.Resolve(); + _xformSys = xformSys; _shader = protoMan.Index("unshaded").Instance(); ZIndex = GasOverlayZIndex; @@ -158,7 +160,8 @@ protected override void Draw(in OverlayDrawArgs args) _fireFrameCounter, _shader, overlayQuery, - xformQuery); + xformQuery, + _xformSys); var mapUid = _mapManager.GetMapEntityId(args.MapId); @@ -180,7 +183,8 @@ protected override void Draw(in OverlayDrawArgs args) int[] fireFrameCounter, ShaderInstance shader, EntityQuery overlayQuery, - EntityQuery xformQuery) state) => + EntityQuery xformQuery, + SharedTransformSystem xformSys) state) => { if (!state.overlayQuery.TryGetComponent(uid, out var comp) || !state.xformQuery.TryGetComponent(uid, out var gridXform)) @@ -188,7 +192,7 @@ protected override void Draw(in OverlayDrawArgs args) return true; } - var (_, _, worldMatrix, invMatrix) = gridXform.GetWorldPositionRotationMatrixWithInv(); + var (_, _, worldMatrix, invMatrix) = state.xformSys.GetWorldPositionRotationMatrixWithInv(gridXform); state.drawHandle.SetTransform(worldMatrix); var floatBounds = invMatrix.TransformBox(state.WorldBounds).Enlarged(grid.TileSize); var localBounds = new Box2i( diff --git a/Content.Client/Buckle/BuckleSystem.cs b/Content.Client/Buckle/BuckleSystem.cs index 035e1300ca5..40b2092a26c 100644 --- a/Content.Client/Buckle/BuckleSystem.cs +++ b/Content.Client/Buckle/BuckleSystem.cs @@ -3,13 +3,15 @@ using Content.Shared.Buckle.Components; using Content.Shared.Rotation; using Robust.Client.GameObjects; -using Robust.Shared.GameStates; +using Robust.Client.Graphics; namespace Content.Client.Buckle; internal sealed class BuckleSystem : SharedBuckleSystem { [Dependency] private readonly RotationVisualizerSystem _rotationVisualizerSystem = default!; + [Dependency] private readonly IEyeManager _eye = default!; + [Dependency] private readonly SharedTransformSystem _xformSystem = default!; public override void Initialize() { @@ -17,6 +19,8 @@ public override void Initialize() SubscribeLocalEvent(OnAppearanceChange); SubscribeLocalEvent(OnStrapMoveEvent); + SubscribeLocalEvent(OnBuckledEvent); + SubscribeLocalEvent(OnUnbuckledEvent); } private void OnStrapMoveEvent(EntityUid uid, StrapComponent component, ref MoveEvent args) @@ -28,13 +32,21 @@ private void OnStrapMoveEvent(EntityUid uid, StrapComponent component, ref MoveE // This code is garbage, it doesn't work with rotated viewports. I need to finally get around to reworking // sprite rendering for entity layers & direction dependent sorting. + // Future notes: + // Right now this doesn't handle: other grids, other grids rotating, the camera rotation changing, and many other fun rotation specific things + // The entire thing should be a concern of the engine, or something engine helps to implement properly. + // Give some of the sprite rotations their own drawdepth, maybe as an offset within the rsi, or something like this + // And we won't ever need to set the draw depth manually + if (args.NewRotation == args.OldRotation) return; if (!TryComp(uid, out var strapSprite)) return; - var isNorth = Transform(uid).LocalRotation.GetCardinalDir() == Direction.North; + var angle = _xformSystem.GetWorldRotation(uid) + _eye.CurrentEye.Rotation; // Get true screen position, or close enough + + var isNorth = angle.GetCardinalDir() == Direction.North; foreach (var buckledEntity in component.BuckledEntities) { if (!TryComp(buckledEntity, out var buckle)) @@ -45,6 +57,7 @@ private void OnStrapMoveEvent(EntityUid uid, StrapComponent component, ref MoveE if (isNorth) { + // This will only assign if empty, it won't get overwritten by new depth on multiple calls, which do happen easily buckle.OriginalDrawDepth ??= buckledSprite.DrawDepth; buckledSprite.DrawDepth = strapSprite.DrawDepth - 1; } @@ -56,6 +69,42 @@ private void OnStrapMoveEvent(EntityUid uid, StrapComponent component, ref MoveE } } + /// + /// Lower the draw depth of the buckled entity without needing for the strap entity to rotate/move. + /// Only do so when the entity is facing screen-local north + /// + private void OnBuckledEvent(Entity ent, ref BuckledEvent args) + { + if (!TryComp(args.Strap, out var strapSprite)) + return; + + if (!TryComp(ent.Owner, out var buckledSprite)) + return; + + var angle = _xformSystem.GetWorldRotation(args.Strap) + _eye.CurrentEye.Rotation; // Get true screen position, or close enough + + if (angle.GetCardinalDir() != Direction.North) + return; + + ent.Comp.OriginalDrawDepth ??= buckledSprite.DrawDepth; + buckledSprite.DrawDepth = strapSprite.DrawDepth - 1; + } + + /// + /// Was the draw depth of the buckled entity lowered? Reset it upon unbuckling. + /// + private void OnUnbuckledEvent(Entity ent, ref UnbuckledEvent args) + { + if (!TryComp(ent.Owner, out var buckledSprite)) + return; + + if (!ent.Comp.OriginalDrawDepth.HasValue) + return; + + buckledSprite.DrawDepth = ent.Comp.OriginalDrawDepth.Value; + ent.Comp.OriginalDrawDepth = null; + } + private void OnAppearanceChange(EntityUid uid, BuckleComponent component, ref AppearanceChangeEvent args) { if (!TryComp(uid, out var rotVisuals)) diff --git a/Content.Client/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs b/Content.Client/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs index 7c7d824ee98..4c3a583b2aa 100644 --- a/Content.Client/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs +++ b/Content.Client/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs @@ -141,6 +141,11 @@ public List GetReagentSources(string id) { return _reagentSources.GetValueOrDefault(id) ?? new List(); } + + // Is handled on server and updated on client via ReagentGuideRegistryChangedEvent + public override void ReloadAllReagentPrototypes() + { + } } /// diff --git a/Content.Client/Construction/ConstructionGhostComponent.cs b/Content.Client/Construction/ConstructionGhostComponent.cs index 8f4fe3867e8..45d1d618fc5 100644 --- a/Content.Client/Construction/ConstructionGhostComponent.cs +++ b/Content.Client/Construction/ConstructionGhostComponent.cs @@ -7,6 +7,7 @@ namespace Content.Client.Construction [RegisterComponent] public sealed partial class ConstructionGhostComponent : Component { + public int GhostId { get; set; } [ViewVariables] public ConstructionPrototype? Prototype { get; set; } } } diff --git a/Content.Client/Construction/ConstructionSystem.cs b/Content.Client/Construction/ConstructionSystem.cs index f909b23423d..17d6b053883 100644 --- a/Content.Client/Construction/ConstructionSystem.cs +++ b/Content.Client/Construction/ConstructionSystem.cs @@ -55,6 +55,12 @@ public override void Initialize() .Register(); SubscribeLocalEvent(HandleConstructionGhostExamined); + SubscribeLocalEvent(HandleGhostComponentShutdown); + } + + private void HandleGhostComponentShutdown(EntityUid uid, ConstructionGhostComponent component, ComponentShutdown args) + { + ClearGhost(component.GhostId); } private void OnConstructionGuideReceived(ResponseConstructionGuide ev) @@ -205,8 +211,9 @@ public bool TrySpawnGhost( ghost = EntityManager.SpawnEntity("constructionghost", loc); var comp = EntityManager.GetComponent(ghost.Value); comp.Prototype = prototype; + comp.GhostId = ghost.GetHashCode(); EntityManager.GetComponent(ghost.Value).LocalRotation = dir.ToAngle(); - _ghosts.Add(ghost.GetHashCode(), ghost.Value); + _ghosts.Add(comp.GhostId, ghost.Value); var sprite = EntityManager.GetComponent(ghost.Value); sprite.Color = new Color(48, 255, 48, 128); diff --git a/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml b/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml index d36718cf08b..179304a9785 100644 --- a/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml +++ b/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml @@ -58,9 +58,7 @@ StyleClasses="LabelBig" /> - public EntityWhitelist? Whitelist = null; + /// + /// Blacklist that the target must satisfy. + /// + public EntityWhitelist? Blacklist = null; + /// /// Predicate the target must satisfy. /// @@ -93,15 +98,16 @@ public void Disable() RemoveHighlights(); } - public void Enable(float range, bool checkObstructions, Func? predicate, EntityWhitelist? whitelist, CancellableEntityEventArgs? validationEvent) + public void Enable(float range, bool checkObstructions, Func? predicate, EntityWhitelist? whitelist, EntityWhitelist? blacklist, CancellableEntityEventArgs? validationEvent) { Range = range; CheckObstruction = checkObstructions; Predicate = predicate; Whitelist = whitelist; + Blacklist = blacklist; ValidationEvent = validationEvent; - _enabled = Predicate != null || Whitelist != null || ValidationEvent != null; + _enabled = Predicate != null || Whitelist != null || Blacklist != null || ValidationEvent != null; } public override void Update(float frameTime) diff --git a/Content.Client/PDA/PdaBoundUserInterface.cs b/Content.Client/PDA/PdaBoundUserInterface.cs index 2d4033390c3..2f7ebc37f73 100644 --- a/Content.Client/PDA/PdaBoundUserInterface.cs +++ b/Content.Client/PDA/PdaBoundUserInterface.cs @@ -30,8 +30,7 @@ protected override void Open() private void CreateMenu() { - _menu = this.CreateWindow(); - _menu.OpenCenteredLeft(); + _menu = this.CreateWindowCenteredLeft(); _menu.FlashLightToggleButton.OnToggled += _ => { diff --git a/Content.Client/Pinpointer/UI/StationMapBeaconControl.xaml.cs b/Content.Client/Pinpointer/UI/StationMapBeaconControl.xaml.cs index a4d4055c7df..e3bd2f4ebea 100644 --- a/Content.Client/Pinpointer/UI/StationMapBeaconControl.xaml.cs +++ b/Content.Client/Pinpointer/UI/StationMapBeaconControl.xaml.cs @@ -10,8 +10,6 @@ namespace Content.Client.Pinpointer.UI; [GenerateTypedNameReferences] public sealed partial class StationMapBeaconControl : Control, IComparable { - [Dependency] private readonly IEntityManager _entMan = default!; - public readonly EntityCoordinates BeaconPosition; public Action? OnPressed; public string? Label => BeaconNameLabel.Text; diff --git a/Content.Client/Popups/PopupSystem.cs b/Content.Client/Popups/PopupSystem.cs index a249c9251bf..38cad2d59cc 100644 --- a/Content.Client/Popups/PopupSystem.cs +++ b/Content.Client/Popups/PopupSystem.cs @@ -123,6 +123,12 @@ public override void PopupCoordinates(string? message, EntityCoordinates coordin PopupMessage(message, type, coordinates, null, true); } + public override void PopupPredictedCoordinates(string? message, EntityCoordinates coordinates, EntityUid? recipient, PopupType type = PopupType.Small) + { + if (recipient != null && _timing.IsFirstTimePredicted) + PopupCoordinates(message, coordinates, recipient.Value, type); + } + private void PopupCursorInternal(string? message, PopupType type, bool recordReplay) { if (message == null) diff --git a/Content.Client/Power/PowerMonitoringConsoleBoundUserInterface.cs b/Content.Client/Power/PowerMonitoringConsoleBoundUserInterface.cs index cbc343c06c6..2a7c24e96bb 100644 --- a/Content.Client/Power/PowerMonitoringConsoleBoundUserInterface.cs +++ b/Content.Client/Power/PowerMonitoringConsoleBoundUserInterface.cs @@ -12,6 +12,8 @@ public PowerMonitoringConsoleBoundUserInterface(EntityUid owner, Enum uiKey) : b protected override void Open() { + base.Open(); + _menu = this.CreateWindow(); _menu.SetEntity(Owner); _menu.SendPowerMonitoringConsoleMessageAction += SendPowerMonitoringConsoleMessage; diff --git a/Content.Client/Power/Visualizers/CableVisualizerSystem.cs b/Content.Client/Power/Visualizers/CableVisualizerSystem.cs index aa518d40195..60fb0d127a7 100644 --- a/Content.Client/Power/Visualizers/CableVisualizerSystem.cs +++ b/Content.Client/Power/Visualizers/CableVisualizerSystem.cs @@ -4,14 +4,18 @@ namespace Content.Client.Power.Visualizers; -public sealed class CableVisualizerSystem : VisualizerSystem +public sealed class CableVisualizerSystem : EntitySystem { + [Dependency] private readonly AppearanceSystem _appearanceSystem = default!; + public override void Initialize() { + base.Initialize(); + SubscribeLocalEvent(OnAppearanceChange, after: new[] { typeof(SubFloorHideSystem) }); } - protected override void OnAppearanceChange(EntityUid uid, CableVisualizerComponent component, ref AppearanceChangeEvent args) + private void OnAppearanceChange(EntityUid uid, CableVisualizerComponent component, ref AppearanceChangeEvent args) { if (args.Sprite == null) return; @@ -23,7 +27,7 @@ protected override void OnAppearanceChange(EntityUid uid, CableVisualizerCompone return; } - if (!AppearanceSystem.TryGetData(uid, WireVisVisuals.ConnectedMask, out var mask, args.Component)) + if (!_appearanceSystem.TryGetData(uid, WireVisVisuals.ConnectedMask, out var mask, args.Component)) mask = WireVisDirFlags.None; args.Sprite.LayerSetState(0, $"{component.StatePrefix}{(int) mask}"); diff --git a/Content.Client/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs b/Content.Client/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs index 73c11de2795..56b54c176a8 100644 --- a/Content.Client/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs +++ b/Content.Client/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs @@ -23,7 +23,7 @@ public bool EnableShuttlePosition if (_enableShuttlePosition) { - _overlay = new EmergencyShuttleOverlay(EntityManager); + _overlay = new EmergencyShuttleOverlay(EntityManager.TransformQuery, XformSystem); overlayManager.AddOverlay(_overlay); RaiseNetworkEvent(new EmergencyShuttleRequestPositionMessage()); } @@ -57,23 +57,26 @@ private void OnShuttlePosMessage(EmergencyShuttlePositionMessage ev) /// public sealed class EmergencyShuttleOverlay : Overlay { - private IEntityManager _entManager; + private readonly EntityQuery _transformQuery; + private readonly SharedTransformSystem _transformSystem; public override OverlaySpace Space => OverlaySpace.WorldSpace; public EntityUid? StationUid; public Box2? Position; - public EmergencyShuttleOverlay(IEntityManager entManager) + public EmergencyShuttleOverlay(EntityQuery transformQuery, SharedTransformSystem transformSystem) { - _entManager = entManager; + _transformQuery = transformQuery; + _transformSystem = transformSystem; } protected override void Draw(in OverlayDrawArgs args) { - if (Position == null || !_entManager.TryGetComponent(StationUid, out var xform)) return; + if (Position == null || !_transformQuery.TryGetComponent(StationUid, out var xform)) + return; - args.WorldHandle.SetTransform(xform.WorldMatrix); + args.WorldHandle.SetTransform(_transformSystem.GetWorldMatrix(xform)); args.WorldHandle.DrawRect(Position.Value, Color.Red.WithAlpha(100)); args.WorldHandle.SetTransform(Matrix3x2.Identity); } diff --git a/Content.Client/Shuttles/UI/DockObject.xaml.cs b/Content.Client/Shuttles/UI/DockObject.xaml.cs index d7d565a23e9..3aae64ced29 100644 --- a/Content.Client/Shuttles/UI/DockObject.xaml.cs +++ b/Content.Client/Shuttles/UI/DockObject.xaml.cs @@ -1,24 +1,14 @@ -using System.Text; using Content.Shared.Shuttles.BUIStates; -using Content.Shared.Shuttles.Systems; -using JetBrains.Annotations; using Robust.Client.AutoGenerated; using Robust.Client.Graphics; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; -using Robust.Shared.Map; namespace Content.Client.Shuttles.UI; [GenerateTypedNameReferences] public sealed partial class DockObject : PanelContainer { - [PublicAPI] - public event Action? UndockPressed; - - [PublicAPI] - public event Action? ViewPressed; - public BoxContainer ContentsContainer => Contents; public DockObject() diff --git a/Content.Client/Shuttles/UI/DockingScreen.xaml.cs b/Content.Client/Shuttles/UI/DockingScreen.xaml.cs index c0aa7942148..97943c6973f 100644 --- a/Content.Client/Shuttles/UI/DockingScreen.xaml.cs +++ b/Content.Client/Shuttles/UI/DockingScreen.xaml.cs @@ -163,16 +163,6 @@ private void BuildDocks(EntityUid? shuttle) } dockContainer.AddDock(dock, DockingControl); - - dockContainer.ViewPressed += () => - { - OnDockPress(dock); - }; - - dockContainer.UndockPressed += () => - { - UndockRequest?.Invoke(dock.Entity); - }; } } diff --git a/Content.Client/Sprite/ContentSpriteSystem.cs b/Content.Client/Sprite/ContentSpriteSystem.cs index da0547666b2..831978f904d 100644 --- a/Content.Client/Sprite/ContentSpriteSystem.cs +++ b/Content.Client/Sprite/ContentSpriteSystem.cs @@ -3,12 +3,12 @@ using System.Threading; using System.Threading.Tasks; using Content.Client.Administration.Managers; -using Content.Shared.Database; using Content.Shared.Verbs; using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Shared.ContentPack; +using Robust.Shared.Exceptions; using Robust.Shared.Timing; using Robust.Shared.Utility; using SixLabors.ImageSharp; @@ -24,6 +24,7 @@ public sealed class ContentSpriteSystem : EntitySystem [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IResourceManager _resManager = default!; [Dependency] private readonly IUserInterfaceManager _ui = default!; + [Dependency] private readonly IRuntimeLog _runtimeLog = default!; private ContentSpriteControl _control = new(); @@ -42,12 +43,12 @@ public override void Shutdown() { base.Shutdown(); - foreach (var queued in _control._queuedTextures) + foreach (var queued in _control.QueuedTextures) { queued.Tcs.SetCanceled(); } - _control._queuedTextures.Clear(); + _control.QueuedTextures.Clear(); _ui.RootControl.RemoveChild(_control); } @@ -103,7 +104,7 @@ public async Task Export(EntityUid entity, Direction direction, bool includeId = var texture = _clyde.CreateRenderTarget(new Vector2i(size.X, size.Y), new RenderTargetFormatParameters(RenderTargetColorFormat.Rgba8Srgb), name: "export"); var tcs = new TaskCompletionSource(cancelToken); - _control._queuedTextures.Enqueue((texture, direction, entity, includeId, tcs)); + _control.QueuedTextures.Enqueue((texture, direction, entity, includeId, tcs)); await tcs.Task; } @@ -113,13 +114,21 @@ private void GetVerbs(GetVerbsEvent ev) if (!_adminManager.IsAdmin()) return; + var target = ev.Target; Verb verb = new() { Text = Loc.GetString("export-entity-verb-get-data-text"), Category = VerbCategory.Debug, - Act = () => + Act = async () => { - Export(ev.Target); + try + { + await Export(target); + } + catch (Exception e) + { + _runtimeLog.LogException(e, $"{nameof(ContentSpriteSystem)}.{nameof(Export)}"); + } }, }; @@ -141,7 +150,7 @@ private sealed class ContentSpriteControl : Control Direction Direction, EntityUid Entity, bool IncludeId, - TaskCompletionSource Tcs)> _queuedTextures = new(); + TaskCompletionSource Tcs)> QueuedTextures = new(); private ISawmill _sawmill; @@ -155,7 +164,7 @@ protected override void Draw(DrawingHandleScreen handle) { base.Draw(handle); - while (_queuedTextures.TryDequeue(out var queued)) + while (QueuedTextures.TryDequeue(out var queued)) { if (queued.Tcs.Task.IsCanceled) continue; diff --git a/Content.Client/Storage/StorageBoundUserInterface.cs b/Content.Client/Storage/StorageBoundUserInterface.cs index bacc90eabff..16545c35784 100644 --- a/Content.Client/Storage/StorageBoundUserInterface.cs +++ b/Content.Client/Storage/StorageBoundUserInterface.cs @@ -1,8 +1,10 @@ +using System.Numerics; using Content.Client.UserInterface.Systems.Storage; using Content.Client.UserInterface.Systems.Storage.Controls; using Content.Shared.Storage; using JetBrains.Annotations; using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; namespace Content.Client.Storage; @@ -11,6 +13,8 @@ public sealed class StorageBoundUserInterface : BoundUserInterface { private StorageWindow? _window; + public Vector2? Position => _window?.Position; + public StorageBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { } @@ -21,7 +25,7 @@ protected override void Open() _window = IoCManager.Resolve() .GetUIController() - .CreateStorageWindow(Owner); + .CreateStorageWindow(this); if (EntMan.TryGetComponent(Owner, out StorageComponent? storage)) { @@ -50,10 +54,20 @@ public void Reclaim() protected override void Dispose(bool disposing) { base.Dispose(disposing); - Reclaim(); } + public void CloseWindow(Vector2 position) + { + if (_window == null) + return; + + // Update its position before potentially saving. + // Listen it makes sense okay. + LayoutContainer.SetPosition(_window, position); + _window?.Close(); + } + public void Hide() { if (_window == null) @@ -70,6 +84,15 @@ public void Show() _window.Visible = true; } + public void Show(Vector2 position) + { + if (_window == null) + return; + + Show(); + LayoutContainer.SetPosition(_window, position); + } + public void ReOpen() { _window?.Orphan(); diff --git a/Content.Client/Storage/Systems/StorageSystem.cs b/Content.Client/Storage/Systems/StorageSystem.cs index ab4d9407b22..8eab2d82495 100644 --- a/Content.Client/Storage/Systems/StorageSystem.cs +++ b/Content.Client/Storage/Systems/StorageSystem.cs @@ -19,6 +19,8 @@ public sealed class StorageSystem : SharedStorageSystem private Dictionary _oldStoredItems = new(); + private List<(StorageBoundUserInterface Bui, bool Value)> _queuedBuis = new(); + public override void Initialize() { base.Initialize(); @@ -72,11 +74,7 @@ private void OnStorageHandleState(EntityUid uid, StorageComponent component, ref if (NestedStorage && player != null && ContainerSystem.TryGetContainingContainer((uid, null, null), out var container) && UI.TryGetOpenUi(container.Owner, StorageComponent.StorageUiKey.Key, out var containerBui)) { - containerBui.Hide(); - } - else - { - storageBui.Show(); + _queuedBuis.Add((containerBui, false)); } } } @@ -93,7 +91,7 @@ protected override void HideStorageWindow(EntityUid uid, EntityUid actor) { if (UI.TryGetOpenUi(uid, StorageComponent.StorageUiKey.Key, out var storageBui)) { - storageBui.Hide(); + _queuedBuis.Add((storageBui, false)); } } @@ -101,7 +99,7 @@ protected override void ShowStorageWindow(EntityUid uid, EntityUid actor) { if (UI.TryGetOpenUi(uid, StorageComponent.StorageUiKey.Key, out var storageBui)) { - storageBui.Show(); + _queuedBuis.Add((storageBui, true)); } } @@ -156,4 +154,30 @@ public void HandleAnimatingInsertingEntities(AnimateInsertingEntitiesEvent msg) } } } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + if (!_timing.IsFirstTimePredicted) + { + return; + } + + // This update loop exists just to synchronize with UISystem and avoid 1-tick delays. + // If deferred opens / closes ever get removed you can dump this. + foreach (var (bui, open) in _queuedBuis) + { + if (open) + { + bui.Show(); + } + else + { + bui.Hide(); + } + } + + _queuedBuis.Clear(); + } } diff --git a/Content.Client/Store/Ui/StoreBoundUserInterface.cs b/Content.Client/Store/Ui/StoreBoundUserInterface.cs index 8c48258de00..d8236604bff 100644 --- a/Content.Client/Store/Ui/StoreBoundUserInterface.cs +++ b/Content.Client/Store/Ui/StoreBoundUserInterface.cs @@ -27,6 +27,8 @@ public StoreBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) protected override void Open() { + base.Open(); + _menu = this.CreateWindow(); if (EntMan.TryGetComponent(Owner, out var store)) _menu.Title = Loc.GetString(store.Name); diff --git a/Content.Client/SurveillanceCamera/UI/SurveillanceCameraSetupBoundUi.cs b/Content.Client/SurveillanceCamera/UI/SurveillanceCameraSetupBoundUi.cs index 295724788e5..d7125fa1cf0 100644 --- a/Content.Client/SurveillanceCamera/UI/SurveillanceCameraSetupBoundUi.cs +++ b/Content.Client/SurveillanceCamera/UI/SurveillanceCameraSetupBoundUi.cs @@ -21,6 +21,8 @@ public SurveillanceCameraSetupBoundUi(EntityUid component, Enum uiKey) : base(co protected override void Open() { + base.Open(); + _window = new(); if (_type == SurveillanceCameraSetupUiKey.Router) diff --git a/Content.Client/UserInterface/Controls/FancyTree/FancyTree.xaml.cs b/Content.Client/UserInterface/Controls/FancyTree/FancyTree.xaml.cs index 6cf7622ea4e..e231004868a 100644 --- a/Content.Client/UserInterface/Controls/FancyTree/FancyTree.xaml.cs +++ b/Content.Client/UserInterface/Controls/FancyTree/FancyTree.xaml.cs @@ -7,7 +7,6 @@ using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; -using Robust.Shared.Graphics; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -96,7 +95,6 @@ public FancyTree() private void LoadIcons() { IconColor = TryGetStyleProperty(StylePropertyIconColor, out Color color) ? color : Color.White; - string? path; if (!TryGetStyleProperty(StylePropertyIconExpanded, out IconExpanded)) IconExpanded = _resCache.GetTexture(DefaultIconExpanded); diff --git a/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs b/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs index a6c1cfc94f8..c2ba35f3c58 100644 --- a/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs +++ b/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs @@ -952,7 +952,7 @@ private void StartTargeting(EntityUid actionId, BaseTargetActionComponent action var range = entityAction.CheckCanAccess ? action.Range : -1; _interactionOutline?.SetEnabled(false); - _targetOutline?.Enable(range, entityAction.CheckCanAccess, predicate, entityAction.Whitelist, null); + _targetOutline?.Enable(range, entityAction.CheckCanAccess, predicate, entityAction.Whitelist, entityAction.Blacklist, null); } /// diff --git a/Content.Client/UserInterface/Systems/Character/CharacterUIController.cs b/Content.Client/UserInterface/Systems/Character/CharacterUIController.cs index 64a5e38f8ca..fe31123506e 100644 --- a/Content.Client/UserInterface/Systems/Character/CharacterUIController.cs +++ b/Content.Client/UserInterface/Systems/Character/CharacterUIController.cs @@ -56,19 +56,20 @@ public void OnStateEntered(GameplayState state) _window = UIManager.CreateWindow(); LayoutContainer.SetAnchorPreset(_window, LayoutContainer.LayoutPreset.CenterTop); - + _window.OnClose += DeactivateButton; + _window.OnOpen += ActivateButton; CommandBinds.Builder .Bind(ContentKeyFunctions.OpenCharacterMenu, - InputCmdHandler.FromDelegate(_ => ToggleWindow())) - .Register(); + InputCmdHandler.FromDelegate(_ => ToggleWindow())) + .Register(); } public void OnStateExited(GameplayState state) { if (_window != null) { - _window.Dispose(); + _window.Close(); _window = null; } @@ -105,18 +106,27 @@ public void LoadButton() } CharacterButton.OnPressed += CharacterButtonPressed; + } - if (_window == null) + private void DeactivateButton() + { + if (CharacterButton == null) { return; } - _window.OnClose += DeactivateButton; - _window.OnOpen += ActivateButton; + CharacterButton.Pressed = false; } - private void DeactivateButton() => CharacterButton!.Pressed = false; - private void ActivateButton() => CharacterButton!.Pressed = true; + private void ActivateButton() + { + if (CharacterButton == null) + { + return; + } + + CharacterButton.Pressed = true; + } private void CharacterUpdated(CharacterData data) { @@ -151,7 +161,7 @@ private void CharacterUpdated(CharacterData data) var objectiveLabel = new RichTextLabel { - StyleClasses = {StyleNano.StyleClassTooltipActionTitle} + StyleClasses = { StyleNano.StyleClassTooltipActionTitle } }; objectiveLabel.SetMessage(objectiveText); @@ -266,10 +276,7 @@ private void ToggleWindow() if (_window == null) return; - if (CharacterButton != null) - { - CharacterButton.SetClickPressed(!_window.IsOpen); - } + CharacterButton?.SetClickPressed(!_window.IsOpen); if (_window.IsOpen) { diff --git a/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs b/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs index 88b4c06d72c..a4afebc217b 100644 --- a/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs +++ b/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs @@ -9,6 +9,7 @@ using Content.Shared.Input; using Content.Shared.Item; using Content.Shared.Storage; +using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; @@ -190,6 +191,26 @@ public void UpdateContainer(Entity? entity) BuildGridRepresentation(); } + private void CloseParent() + { + if (StorageEntity == null) + return; + + var containerSystem = _entity.System(); + var uiSystem = _entity.System(); + + if (containerSystem.TryGetContainingContainer(StorageEntity.Value, out var container) && + _entity.TryGetComponent(container.Owner, out StorageComponent? storage) && + storage.Container.Contains(StorageEntity.Value) && + uiSystem + .TryGetOpenUi(container.Owner, + StorageComponent.StorageUiKey.Key, + out var parentBui)) + { + parentBui.CloseWindow(Position); + } + } + private void BuildGridRepresentation() { if (!_entity.TryGetComponent(StorageEntity, out var comp) || comp.Grid.Count == 0) @@ -212,7 +233,9 @@ private void BuildGridRepresentation() }; exitButton.OnPressed += _ => { + // Close ourselves and all parent BUIs. Close(); + CloseParent(); }; exitButton.OnKeyBindDown += args => { @@ -220,6 +243,7 @@ private void BuildGridRepresentation() if (!args.Handled && args.Function == ContentKeyFunctions.ActivateItemInWorld) { Close(); + CloseParent(); args.Handle(); } }; @@ -258,7 +282,8 @@ private void BuildGridRepresentation() var containerSystem = _entity.System(); if (containerSystem.TryGetContainingContainer(StorageEntity.Value, out var container) && - _entity.TryGetComponent(container.Owner, out StorageComponent? storage)) + _entity.TryGetComponent(container.Owner, out StorageComponent? storage) && + storage.Container.Contains(StorageEntity.Value)) { Close(); @@ -267,7 +292,7 @@ private void BuildGridRepresentation() StorageComponent.StorageUiKey.Key, out var parentBui)) { - parentBui.Show(); + parentBui.Show(Position); } } }; @@ -412,6 +437,8 @@ public void BuildItemPieces() { if (storageComp.StoredItems.TryGetValue(ent, out var updated)) { + data.Control.Marked = IsMarked(ent); + if (data.Loc.Equals(updated)) { DebugTools.Assert(data.Control.Location == updated); @@ -450,12 +477,7 @@ public void BuildItemPieces() var gridPiece = new ItemGridPiece((ent, itemEntComponent), loc, _entity) { MinSize = size, - Marked = _contained.IndexOf(ent) switch - { - 0 => ItemGridPieceMarks.First, - 1 => ItemGridPieceMarks.Second, - _ => null, - } + Marked = IsMarked(ent), }; gridPiece.OnPiecePressed += OnPiecePressed; gridPiece.OnPieceUnpressed += OnPieceUnpressed; @@ -467,6 +489,16 @@ public void BuildItemPieces() } } + private ItemGridPieceMarks? IsMarked(EntityUid uid) + { + return _contained.IndexOf(uid) switch + { + 0 => ItemGridPieceMarks.First, + 1 => ItemGridPieceMarks.Second, + _ => null, + }; + } + protected override void FrameUpdate(FrameEventArgs args) { base.FrameUpdate(args); @@ -486,8 +518,9 @@ protected override void FrameUpdate(FrameEventArgs args) { if (StorageEntity != null && _entity.System().NestedStorage) { + // If parent container nests us then show back button if (containerSystem.TryGetContainingContainer(StorageEntity.Value, out var container) && - _entity.HasComponent(container.Owner)) + _entity.TryGetComponent(container.Owner, out StorageComponent? storageComp) && storageComp.Container.Contains(StorageEntity.Value)) { _backButton.Visible = true; } diff --git a/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs b/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs index 5c3f0479827..dbb16ab24ac 100644 --- a/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs +++ b/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs @@ -11,6 +11,7 @@ using Content.Shared.Input; using Content.Shared.Interaction; using Content.Shared.Storage; +using Robust.Client.GameObjects; using Robust.Client.Input; using Robust.Client.Player; using Robust.Client.UserInterface; @@ -37,6 +38,7 @@ public sealed class StorageUIController : UIController, IOnSystemChanged _menuDragHelper; @@ -107,7 +109,7 @@ private void OnStaticStorageChanged(bool obj) StaticStorageUIEnabled = obj; } - public StorageWindow CreateStorageWindow(EntityUid uid) + public StorageWindow CreateStorageWindow(StorageBoundUserInterface sBui) { var window = new StorageWindow(); window.MouseFilter = Control.MouseFilterMode.Pass; @@ -127,9 +129,25 @@ public StorageWindow CreateStorageWindow(EntityUid uid) } else { - window.OpenCenteredLeft(); + // Open at parent position if it's open. + if (_ui.TryGetOpenUi(EntityManager.GetComponent(sBui.Owner).ParentUid, + StorageComponent.StorageUiKey.Key, out var bui) && bui.Position != null) + { + window.Open(bui.Position.Value); + } + // Open at the saved position if it exists. + else if (_ui.TryGetPosition(sBui.Owner, StorageComponent.StorageUiKey.Key, out var pos)) + { + window.Open(pos); + } + // Open at the default position. + else + { + window.OpenCenteredLeft(); + } } + _ui.RegisterControl(sBui, window); return window; } diff --git a/Content.Client/Voting/VotingSystem.cs b/Content.Client/Voting/VotingSystem.cs index dd74e1ccb18..9fea4d153f0 100644 --- a/Content.Client/Voting/VotingSystem.cs +++ b/Content.Client/Voting/VotingSystem.cs @@ -1,15 +1,11 @@ -using Content.Client.Ghost; using Content.Shared.Voting; namespace Content.Client.Voting; public sealed class VotingSystem : EntitySystem { - public event Action? VotePlayerListResponse; //Provides a list of players elligble for vote actions - [Dependency] private readonly GhostSystem _ghostSystem = default!; - public override void Initialize() { base.Initialize(); diff --git a/Content.Client/Weapons/Ranged/Systems/GunSystem.cs b/Content.Client/Weapons/Ranged/Systems/GunSystem.cs index 3cdcb2779ae..f14eb091f8d 100644 --- a/Content.Client/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Client/Weapons/Ranged/Systems/GunSystem.cs @@ -38,6 +38,7 @@ public sealed partial class GunSystem : SharedGunSystem [Dependency] private readonly InputSystem _inputSystem = default!; [Dependency] private readonly SharedCameraRecoilSystem _recoil = default!; [Dependency] private readonly SharedMapSystem _maps = default!; + [Dependency] private readonly SharedTransformSystem _xform = default!; [ValidatePrototypeId] public const string HitscanProto = "HitscanEffect"; @@ -103,6 +104,13 @@ private void OnMuzzleFlash(MuzzleFlashEvent args) private void OnHitscan(HitscanEvent ev) { // ALL I WANT IS AN ANIMATED EFFECT + + // TODO EFFECTS + // This is very jank + // because the effect consists of three unrelatd entities, the hitscan beam can be split appart. + // E.g., if a grid rotates while part of the beam is parented to the grid, and part of it is parented to the map. + // Ideally, there should only be one entity, with one sprite that has multiple layers + // Or at the very least, have the other entities parented to the same entity to make sure they stick together. foreach (var a in ev.Sprites) { if (a.Sprite is not SpriteSpecifier.Rsi rsi) @@ -110,13 +118,17 @@ private void OnHitscan(HitscanEvent ev) var coords = GetCoordinates(a.coordinates); - if (Deleted(coords.EntityId)) + if (!TryComp(coords.EntityId, out TransformComponent? relativeXform)) continue; var ent = Spawn(HitscanProto, coords); var sprite = Comp(ent); + var xform = Transform(ent); - xform.LocalRotation = a.angle; + var targetWorldRot = a.angle + _xform.GetWorldRotation(relativeXform); + var delta = targetWorldRot - _xform.GetWorldRotation(xform); + _xform.SetLocalRotationNoLerp(ent, xform.LocalRotation + delta, xform); + sprite[EffectLayers.Unshaded].AutoAnimated = false; sprite.LayerSetSprite(EffectLayers.Unshaded, rsi); sprite.LayerSetState(EffectLayers.Unshaded, rsi.RsiState); diff --git a/Content.IntegrationTests/Pair/TestPair.Prototypes.cs b/Content.IntegrationTests/Pair/TestPair.Prototypes.cs index a6f2d97bc8a..e50bc96d65f 100644 --- a/Content.IntegrationTests/Pair/TestPair.Prototypes.cs +++ b/Content.IntegrationTests/Pair/TestPair.Prototypes.cs @@ -26,11 +26,7 @@ private async Task LoadPrototypes(RobustIntegrationTest.IntegrationInstance inst instance.ProtoMan.LoadString(file, changed: changed); } - await instance.WaitPost(() => - { - instance.ProtoMan.ResolveResults(); - instance.ProtoMan.ReloadPrototypes(changed); - }); + await instance.WaitPost(() => instance.ProtoMan.ReloadPrototypes(changed)); foreach (var (kind, ids) in changed) { @@ -65,4 +61,4 @@ public bool IsTestPrototype(Type kind, string id) { return _loadedPrototypes.TryGetValue(kind, out var ids) && ids.Contains(id); } -} \ No newline at end of file +} diff --git a/Content.IntegrationTests/Tests/Body/LungTest.cs b/Content.IntegrationTests/Tests/Body/LungTest.cs index 9b5ee431f1f..8ac3a3021f1 100644 --- a/Content.IntegrationTests/Tests/Body/LungTest.cs +++ b/Content.IntegrationTests/Tests/Body/LungTest.cs @@ -11,6 +11,8 @@ using Robust.Shared.Map.Components; using System.Linq; using System.Numerics; +using Robust.Shared.EntitySerialization.Systems; +using Robust.Shared.Utility; namespace Content.IntegrationTests.Tests.Body { @@ -57,7 +59,6 @@ public async Task AirConsistencyTest() await server.WaitIdleAsync(); - var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); var mapLoader = entityManager.System(); var mapSys = entityManager.System(); @@ -69,17 +70,13 @@ public async Task AirConsistencyTest() GridAtmosphereComponent relevantAtmos = default; var startingMoles = 0.0f; - var testMapName = "Maps/Test/Breathing/3by3-20oxy-80nit.yml"; + var testMapName = new ResPath("Maps/Test/Breathing/3by3-20oxy-80nit.yml"); await server.WaitPost(() => { mapSys.CreateMap(out var mapId); - Assert.That(mapLoader.TryLoad(mapId, testMapName, out var roots)); - - var query = entityManager.GetEntityQuery(); - var grids = roots.Where(x => query.HasComponent(x)); - Assert.That(grids, Is.Not.Empty); - grid = grids.First(); + Assert.That(mapLoader.TryLoadGrid(mapId, testMapName, out var gridEnt)); + grid = gridEnt!.Value.Owner; }); Assert.That(grid, Is.Not.Null, $"Test blueprint {testMapName} not found."); @@ -148,18 +145,13 @@ public async Task NoSuffocationTest() RespiratorComponent respirator = null; EntityUid human = default; - var testMapName = "Maps/Test/Breathing/3by3-20oxy-80nit.yml"; + var testMapName = new ResPath("Maps/Test/Breathing/3by3-20oxy-80nit.yml"); await server.WaitPost(() => { mapSys.CreateMap(out var mapId); - - Assert.That(mapLoader.TryLoad(mapId, testMapName, out var ents), Is.True); - var query = entityManager.GetEntityQuery(); - grid = ents - .Select(x => x) - .FirstOrDefault((uid) => uid.HasValue && query.HasComponent(uid.Value), null); - Assert.That(grid, Is.Not.Null); + Assert.That(mapLoader.TryLoadGrid(mapId, testMapName, out var gridEnt)); + grid = gridEnt!.Value.Owner; }); Assert.That(grid, Is.Not.Null, $"Test blueprint {testMapName} not found."); diff --git a/Content.IntegrationTests/Tests/Body/SaveLoadReparentTest.cs b/Content.IntegrationTests/Tests/Body/SaveLoadReparentTest.cs index 01482ba8ee2..67163d07961 100644 --- a/Content.IntegrationTests/Tests/Body/SaveLoadReparentTest.cs +++ b/Content.IntegrationTests/Tests/Body/SaveLoadReparentTest.cs @@ -2,10 +2,11 @@ using System.Linq; using Content.Shared.Body.Components; using Content.Shared.Body.Systems; -using Robust.Server.GameObjects; using Robust.Shared.Containers; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.GameObjects; using Robust.Shared.Map; +using Robust.Shared.Utility; namespace Content.IntegrationTests.Tests.Body; @@ -111,13 +112,12 @@ await server.WaitAssertion(() => Is.Not.Empty ); - const string mapPath = $"/{nameof(SaveLoadReparentTest)}{nameof(Test)}map.yml"; + var mapPath = new ResPath($"/{nameof(SaveLoadReparentTest)}{nameof(Test)}map.yml"); - mapLoader.SaveMap(mapId, mapPath); - maps.DeleteMap(mapId); + Assert.That(mapLoader.TrySaveMap(mapId, mapPath)); + mapSys.DeleteMap(mapId); - mapSys.CreateMap(out mapId); - Assert.That(mapLoader.TryLoad(mapId, mapPath, out _), Is.True); + Assert.That(mapLoader.TryLoadMap(mapPath, out var map, out _), Is.True); var query = EnumerateQueryEnumerator( entities.EntityQueryEnumerator() @@ -173,7 +173,7 @@ await server.WaitAssertion(() => }); } - maps.DeleteMap(mapId); + entities.DeleteEntity(map); } }); diff --git a/Content.IntegrationTests/Tests/CargoTest.cs b/Content.IntegrationTests/Tests/CargoTest.cs index 37fd3a80f9a..489054c4bd7 100644 --- a/Content.IntegrationTests/Tests/CargoTest.cs +++ b/Content.IntegrationTests/Tests/CargoTest.cs @@ -7,6 +7,7 @@ using Content.Server.Nutrition.EntitySystems; using Content.Shared.Cargo.Prototypes; using Content.Shared.IdentityManagement; +using Content.Shared.Prototypes; using Content.Shared.Stacks; using Content.Shared.Tag; using Content.Shared.Whitelist; @@ -104,51 +105,34 @@ public async Task NoStaticPriceAndStackPrice() await using var pair = await PoolManager.GetServerClient(); var server = pair.Server; - var testMap = await pair.CreateTestMap(); - - var entManager = server.ResolveDependency(); - var mapManager = server.ResolveDependency(); - var protoManager = server.ResolveDependency(); + var protoManager = server.ProtoMan; + var compFact = server.ResolveDependency(); await server.WaitAssertion(() => { - var mapId = testMap.MapId; - var grid = mapManager.CreateGridEntity(mapId); - var coord = new EntityCoordinates(grid.Owner, 0, 0); - var protoIds = protoManager.EnumeratePrototypes() .Where(p => !p.Abstract) .Where(p => !pair.IsTestPrototype(p)) - .Where(p => !p.Components.ContainsKey("MapGrid")) // Grids are not for sale. - .Select(p => p.ID) + .Where(p => p.Components.ContainsKey("StaticPrice")) .ToList(); foreach (var proto in protoIds) { - var ent = entManager.SpawnEntity(proto, coord); + // Sanity check + Assert.That(proto.TryGetComponent(out var staticPriceComp, compFact), Is.True); - if (entManager.TryGetComponent(ent, out var stackpricecomp) - && stackpricecomp.Price > 0) + if (proto.TryGetComponent(out var stackPriceComp, compFact) && stackPriceComp.Price > 0) { - if (entManager.TryGetComponent(ent, out var staticpricecomp)) - { - Assert.That(staticpricecomp.Price, Is.EqualTo(0), - $"The prototype {proto} has a StackPriceComponent and StaticPriceComponent whose values are not compatible with each other."); - } + Assert.That(staticPriceComp.Price, Is.EqualTo(0), + $"The prototype {proto} has a StackPriceComponent and StaticPriceComponent whose values are not compatible with each other."); } - if (entManager.HasComponent(ent)) + if (proto.HasComponent(compFact)) { - if (entManager.TryGetComponent(ent, out var staticpricecomp)) - { - Assert.That(staticpricecomp.Price, Is.EqualTo(0), - $"The prototype {proto} has a StackComponent and StaticPriceComponent whose values are not compatible with each other."); - } + Assert.That(staticPriceComp.Price, Is.EqualTo(0), + $"The prototype {proto} has a StackComponent and StaticPriceComponent whose values are not compatible with each other."); } - - entManager.DeleteEntity(ent); } - mapManager.DeleteMap(mapId); }); await pair.CleanReturnAsync(); diff --git a/Content.IntegrationTests/Tests/EntityTest.cs b/Content.IntegrationTests/Tests/EntityTest.cs index 19a1f862035..9d80bd50579 100644 --- a/Content.IntegrationTests/Tests/EntityTest.cs +++ b/Content.IntegrationTests/Tests/EntityTest.cs @@ -39,6 +39,7 @@ await server.WaitPost(() => .Where(p => !p.Abstract) .Where(p => !pair.IsTestPrototype(p)) .Where(p => !p.Components.ContainsKey("MapGrid")) // This will smash stuff otherwise. + .Where(p => !p.Components.ContainsKey("RoomFill")) // This comp can delete all entities, and spawn others .Select(p => p.ID) .ToList(); @@ -101,6 +102,7 @@ await server.WaitPost(() => .Where(p => !p.Abstract) .Where(p => !pair.IsTestPrototype(p)) .Where(p => !p.Components.ContainsKey("MapGrid")) // This will smash stuff otherwise. + .Where(p => !p.Components.ContainsKey("RoomFill")) // This comp can delete all entities, and spawn others .Select(p => p.ID) .ToList(); foreach (var protoId in protoIds) @@ -346,6 +348,7 @@ public async Task AllComponentsOneToOneDeleteTest() "DebugExceptionInitialize", "DebugExceptionStartup", "GridFill", + "RoomFill", "Map", // We aren't testing a map entity in this test "MapGrid", "Broadphase", diff --git a/Content.IntegrationTests/Tests/Linter/StaticFieldValidationTest.cs b/Content.IntegrationTests/Tests/Linter/StaticFieldValidationTest.cs index 0632fe1347c..90bf82e8f10 100644 --- a/Content.IntegrationTests/Tests/Linter/StaticFieldValidationTest.cs +++ b/Content.IntegrationTests/Tests/Linter/StaticFieldValidationTest.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; using System.Linq; using Content.Shared.Tag; +using Robust.Shared.GameObjects; using Robust.Shared.Prototypes; using Robust.Shared.Reflection; using Robust.Shared.Serialization.Manager.Attributes; @@ -29,7 +30,9 @@ public async Task TestStaticFieldValidation() Assert.That(protoMan.ValidateStaticFields(typeof(StringValid), protos), Is.Empty); Assert.That(protoMan.ValidateStaticFields(typeof(StringArrayValid), protos), Is.Empty); Assert.That(protoMan.ValidateStaticFields(typeof(EntProtoIdValid), protos), Is.Empty); + Assert.That(protoMan.ValidateStaticFields(typeof(EntProtoIdTValid), protos), Is.Empty); Assert.That(protoMan.ValidateStaticFields(typeof(EntProtoIdArrayValid), protos), Is.Empty); + Assert.That(protoMan.ValidateStaticFields(typeof(EntProtoIdTArrayValid), protos), Is.Empty); Assert.That(protoMan.ValidateStaticFields(typeof(ProtoIdTestValid), protos), Is.Empty); Assert.That(protoMan.ValidateStaticFields(typeof(ProtoIdArrayValid), protos), Is.Empty); Assert.That(protoMan.ValidateStaticFields(typeof(ProtoIdListValid), protos), Is.Empty); @@ -39,7 +42,9 @@ public async Task TestStaticFieldValidation() Assert.That(protoMan.ValidateStaticFields(typeof(StringInvalid), protos), Has.Count.EqualTo(1)); Assert.That(protoMan.ValidateStaticFields(typeof(StringArrayInvalid), protos), Has.Count.EqualTo(2)); Assert.That(protoMan.ValidateStaticFields(typeof(EntProtoIdInvalid), protos), Has.Count.EqualTo(1)); + Assert.That(protoMan.ValidateStaticFields(typeof(EntProtoIdTInvalid), protos), Has.Count.EqualTo(1)); Assert.That(protoMan.ValidateStaticFields(typeof(EntProtoIdArrayInvalid), protos), Has.Count.EqualTo(2)); + Assert.That(protoMan.ValidateStaticFields(typeof(EntProtoIdTArrayInvalid), protos), Has.Count.EqualTo(2)); Assert.That(protoMan.ValidateStaticFields(typeof(ProtoIdTestInvalid), protos), Has.Count.EqualTo(1)); Assert.That(protoMan.ValidateStaticFields(typeof(ProtoIdArrayInvalid), protos), Has.Count.EqualTo(2)); Assert.That(protoMan.ValidateStaticFields(typeof(ProtoIdListInvalid), protos), Has.Count.EqualTo(2)); @@ -88,24 +93,48 @@ private sealed class EntProtoIdValid public static EntProtoId Tag = "StaticFieldTestEnt"; } + [Reflect(false)] + private sealed class EntProtoIdTValid + { + public static EntProtoId Tag = "StaticFieldTestEnt"; + } + [Reflect(false)] private sealed class EntProtoIdInvalid { public static EntProtoId Tag = string.Empty; } + [Reflect(false)] + private sealed class EntProtoIdTInvalid + { + public static EntProtoId Tag = string.Empty; + } + [Reflect(false)] private sealed class EntProtoIdArrayValid { public static EntProtoId[] Tag = ["StaticFieldTestEnt", "StaticFieldTestEnt"]; } + [Reflect(false)] + private sealed class EntProtoIdTArrayValid + { + public static EntProtoId[] Tag = ["StaticFieldTestEnt", "StaticFieldTestEnt"]; + } + [Reflect(false)] private sealed class EntProtoIdArrayInvalid { public static EntProtoId[] Tag = [string.Empty, "StaticFieldTestEnt", string.Empty]; } + [Reflect(false)] + private sealed class EntProtoIdTArrayInvalid + { + public static EntProtoId[] Tag = [string.Empty, "StaticFieldTestEnt", string.Empty]; + } + [Reflect(false)] private sealed class ProtoIdTestValid { diff --git a/Content.IntegrationTests/Tests/MagazineVisualsSpriteTest.cs b/Content.IntegrationTests/Tests/MagazineVisualsSpriteTest.cs new file mode 100644 index 00000000000..f0f3b72d8df --- /dev/null +++ b/Content.IntegrationTests/Tests/MagazineVisualsSpriteTest.cs @@ -0,0 +1,70 @@ +using System.Collections.Generic; +using Content.Client.Weapons.Ranged.Components; +using Content.Shared.Prototypes; +using Robust.Client.GameObjects; +using Robust.Shared.GameObjects; +using Robust.Shared.Prototypes; + +namespace Content.IntegrationTests.Tests; + +/// +/// Tests all entity prototypes with the MagazineVisualsComponent. +/// +[TestFixture] +public sealed class MagazineVisualsSpriteTest +{ + [Test] + public async Task MagazineVisualsSpritesExist() + { + await using var pair = await PoolManager.GetServerClient(); + var client = pair.Client; + var protoMan = client.ResolveDependency(); + var componentFactory = client.ResolveDependency(); + + await client.WaitAssertion(() => + { + foreach (var proto in protoMan.EnumeratePrototypes()) + { + if (proto.Abstract || pair.IsTestPrototype(proto)) + continue; + + if (!proto.TryGetComponent(out var visuals, componentFactory)) + continue; + + Assert.That(proto.TryGetComponent(out var sprite, componentFactory), + @$"{proto.ID} has MagazineVisualsComponent but no SpriteComponent."); + Assert.That(proto.HasComponent(componentFactory), + @$"{proto.ID} has MagazineVisualsComponent but no AppearanceComponent."); + + var toTest = new List<(int, string)>(); + if (sprite.LayerMapTryGet(GunVisualLayers.Mag, out var magLayerId)) + toTest.Add((magLayerId, "")); + if (sprite.LayerMapTryGet(GunVisualLayers.MagUnshaded, out var magUnshadedLayerId)) + toTest.Add((magUnshadedLayerId, "-unshaded")); + + Assert.That(toTest, Is.Not.Empty, + @$"{proto.ID} has MagazineVisualsComponent but no Mag or MagUnshaded layer map."); + + var start = visuals.ZeroVisible ? 0 : 1; + foreach (var (id, midfix) in toTest) + { + Assert.That(sprite.TryGetLayer(id, out var layer)); + var rsi = layer.ActualRsi; + for (var i = start; i < visuals.MagSteps; i++) + { + var state = $"{visuals.MagState}{midfix}-{i}"; + Assert.That(rsi.TryGetState(state, out _), + @$"{proto.ID} has MagazineVisualsComponent with MagSteps = {visuals.MagSteps}, but {rsi.Path} doesn't have state {state}!"); + } + + // MagSteps includes the 0th step, so sometimes people are off by one. + var extraState = $"{visuals.MagState}{midfix}-{visuals.MagSteps}"; + Assert.That(rsi.TryGetState(extraState, out _), Is.False, + @$"{proto.ID} has MagazineVisualsComponent with MagSteps = {visuals.MagSteps}, but more states exist!"); + } + } + }); + + await pair.CleanReturnAsync(); + } +} diff --git a/Content.IntegrationTests/Tests/Minds/MindTest.DeleteAllThenGhost.cs b/Content.IntegrationTests/Tests/Minds/MindTest.DeleteAllThenGhost.cs index 7bc62dfe2bc..ad4ddc26125 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTest.DeleteAllThenGhost.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTest.DeleteAllThenGhost.cs @@ -1,5 +1,6 @@ #nullable enable using Robust.Shared.Console; +using Robust.Shared.GameObjects; using Robust.Shared.Map; namespace Content.IntegrationTests.Tests.Minds; @@ -37,8 +38,8 @@ public async Task DeleteAllThenGhost() Assert.That(pair.Client.EntMan.EntityCount, Is.EqualTo(0)); // Create a new map. - int mapId = 1; - await pair.Server.WaitPost(() => conHost.ExecuteCommand($"addmap {mapId}")); + MapId mapId = default; + await pair.Server.WaitPost(() => pair.Server.System().CreateMap(out mapId)); await pair.RunTicksSync(5); // Client is not attached to anything @@ -54,7 +55,7 @@ public async Task DeleteAllThenGhost() Assert.That(pair.Client.EntMan.EntityExists(pair.Client.AttachedEntity)); Assert.That(pair.Server.EntMan.EntityExists(pair.PlayerData?.Mind)); var xform = pair.Client.Transform(pair.Client.AttachedEntity!.Value); - Assert.That(xform.MapID, Is.EqualTo(new MapId(mapId))); + Assert.That(xform.MapID, Is.EqualTo(mapId)); await pair.CleanReturnAsync(); } diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index b30629eca3e..ac27e7ffe5b 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -9,7 +9,6 @@ using Content.Server.Station.Components; using Content.Shared.CCVar; using Content.Shared.Roles; -using Robust.Server.GameObjects; using Robust.Shared.Configuration; using Robust.Shared.ContentPack; using Robust.Shared.GameObjects; @@ -17,6 +16,9 @@ using Robust.Shared.Map.Components; using Robust.Shared.Prototypes; using Content.Shared.Station.Components; +using Robust.Shared.EntitySerialization; +using Robust.Shared.EntitySerialization.Systems; +using Robust.Shared.IoC; using Robust.Shared.Utility; using YamlDotNet.RepresentationModel; @@ -35,11 +37,21 @@ public sealed class PostMapInitTest }; private static readonly string[] Grids = + { + "/Maps/centcomm.yml" + }; + + private static readonly string[] DoNotMapWhitelist = { "/Maps/centcomm.yml", - "/Maps/Shuttles/cargo.yml", - "/Maps/Shuttles/emergency.yml", - "/Maps/Shuttles/infiltrator.yml", + "/Maps/bagel.yml", // Contains mime's rubber stamp --> Either fix this, remove the category, or remove this comment if intentional. + "/Maps/gate.yml", // Contains positronic brain and LSE-1200c "Perforator" + "/Maps/meta.yml", // Contains warden's rubber stamp + "/Maps/reach.yml", // Contains handheld crew monitor + "/Maps/Shuttles/ShuttleEvent/cruiser.yml", // Contains LSE-1200c "Perforator" + "/Maps/Shuttles/ShuttleEvent/honki.yml", // Contains golden honker, clown's rubber stamp + "/Maps/Shuttles/ShuttleEvent/instigator.yml", // Contains EXP-320g "Friendship" + "/Maps/Shuttles/ShuttleEvent/syndie_evacpod.yml", // Contains syndicate rubber stamp "/Maps/ADTMaps/Shuttles/pirate.yml", //ADT edit }; @@ -117,33 +129,72 @@ public async Task GridsLoadableTest(string mapFile) var entManager = server.ResolveDependency(); var mapLoader = entManager.System(); var mapSystem = entManager.System(); - var mapManager = server.ResolveDependency(); var cfg = server.ResolveDependency(); Assert.That(cfg.GetCVar(CCVars.GridFill), Is.False); + var path = new ResPath(mapFile); await server.WaitPost(() => { mapSystem.CreateMap(out var mapId); try { -#pragma warning disable NUnit2045 - Assert.That(mapLoader.TryLoad(mapId, mapFile, out var roots)); - Assert.That(roots.Where(uid => entManager.HasComponent(uid)), Is.Not.Empty); -#pragma warning restore NUnit2045 + Assert.That(mapLoader.TryLoadGrid(mapId, path, out var grid)); } catch (Exception ex) { throw new Exception($"Failed to load map {mapFile}, was it saved as a map instead of a grid?", ex); } - try - { - mapManager.DeleteMap(mapId); - } - catch (Exception ex) + mapSystem.DeleteMap(mapId); + }); + await server.WaitRunTicks(1); + + await pair.CleanReturnAsync(); + } + + /// + /// Asserts that shuttles are loadable and have been saved as grids and not maps. + /// + [Test] + public async Task ShuttlesLoadableTest() + { + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + + var entManager = server.ResolveDependency(); + var resMan = server.ResolveDependency(); + var mapLoader = entManager.System(); + var mapSystem = entManager.System(); + var cfg = server.ResolveDependency(); + Assert.That(cfg.GetCVar(CCVars.GridFill), Is.False); + + var shuttleFolder = new ResPath("/Maps/Shuttles"); + var shuttles = resMan + .ContentFindFiles(shuttleFolder) + .Where(filePath => + filePath.Extension == "yml" && !filePath.Filename.StartsWith(".", StringComparison.Ordinal)) + .ToArray(); + + await server.WaitPost(() => + { + Assert.Multiple(() => { - throw new Exception($"Failed to delete map {mapFile}", ex); - } + foreach (var path in shuttles) + { + mapSystem.CreateMap(out var mapId); + try + { + Assert.That(mapLoader.TryLoadGrid(mapId, path, out _), + $"Failed to load shuttle {path}, was it saved as a map instead of a grid?"); + } + catch (Exception ex) + { + throw new Exception($"Failed to load shuttle {path}, was it saved as a map instead of a grid?", + ex); + } + mapSystem.DeleteMap(mapId); + } + }); }); await server.WaitRunTicks(1); @@ -157,12 +208,16 @@ public async Task NoSavedPostMapInitTest() var server = pair.Server; var resourceManager = server.ResolveDependency(); + var protoManager = server.ResolveDependency(); + var loader = server.System(); + var mapFolder = new ResPath("/Maps"); var maps = resourceManager .ContentFindFiles(mapFolder) .Where(filePath => filePath.Extension == "yml" && !filePath.Filename.StartsWith(".", StringComparison.Ordinal)) .ToArray(); + var v7Maps = new List(); foreach (var map in maps) { var rootedPath = map.ToRootedPath(); @@ -185,13 +240,101 @@ public async Task NoSavedPostMapInitTest() var root = yamlStream.Documents[0].RootNode; var meta = root["meta"]; - var postMapInit = meta["postmapinit"].AsBool(); + var version = meta["format"].AsInt(); + + // TODO MAP TESTS + // Move this to some separate test? + CheckDoNotMap(map, root, protoManager); + if (version >= 7) + { + v7Maps.Add(map); + continue; + } + + var postMapInit = meta["postmapinit"].AsBool(); Assert.That(postMapInit, Is.False, $"Map {map.Filename} was saved postmapinit"); } + + var deps = server.ResolveDependency().DependencyCollection; + foreach (var map in v7Maps) + { + Assert.That(IsPreInit(map, loader, deps)); + } + + // Check that the test actually does manage to catch post-init maps and isn't just blindly passing everything. + // To that end, create a new post-init map and try verify it. + var mapSys = server.System(); + MapId id = default; + await server.WaitPost(() => mapSys.CreateMap(out id, runMapInit: false)); + await server.WaitPost(() => server.EntMan.Spawn(null, new MapCoordinates(0, 0, id))); + + // First check that a pre-init version passes + var path = new ResPath($"{nameof(NoSavedPostMapInitTest)}.yml"); + Assert.That(loader.TrySaveMap(id, path)); + Assert.That(IsPreInit(path, loader, deps)); + + // and the post-init version fails. + await server.WaitPost(() => mapSys.InitializeMap(id)); + Assert.That(loader.TrySaveMap(id, path)); + Assert.That(IsPreInit(path, loader, deps), Is.False); + await pair.CleanReturnAsync(); } + /// + /// Check that maps do not have any entities that belong to the DoNotMap entity category + /// + private void CheckDoNotMap(ResPath map, YamlNode node, IPrototypeManager protoManager) + { + if (DoNotMapWhitelist.Contains(map.ToString())) + return; + + var yamlEntities = node["entities"]; + if (!protoManager.TryIndex("DoNotMap", out var dnmCategory)) + return; + + Assert.Multiple(() => + { + foreach (var yamlEntity in (YamlSequenceNode)yamlEntities) + { + var protoId = yamlEntity["proto"].AsString(); + + // This doesn't properly handle prototype migrations, but thats not a significant issue. + if (!protoManager.TryIndex(protoId, out var proto, false)) + continue; + + Assert.That(!proto.Categories.Contains(dnmCategory), + $"\nMap {map} contains entities in the DO NOT MAP category ({proto.Name})"); + } + }); + } + + private bool IsPreInit(ResPath map, MapLoaderSystem loader, IDependencyCollection deps) + { + if (!loader.TryReadFile(map, out var data)) + { + Assert.Fail($"Failed to read {map}"); + return false; + } + + var reader = new EntityDeserializer(deps, data, DeserializationOptions.Default); + if (!reader.TryProcessData()) + { + Assert.Fail($"Failed to process {map}"); + return false; + } + + foreach (var mapId in reader.MapYamlIds) + { + var mapData = reader.YamlEntities[mapId]; + if (mapData.PostInit) + return false; + } + + return true; + } + [Test, TestCaseSource(nameof(GameMaps))] public async Task GameMapsLoadableTest(string mapProto) { @@ -208,16 +351,16 @@ public async Task GameMapsLoadableTest(string mapProto) var protoManager = server.ResolveDependency(); var ticker = entManager.EntitySysManager.GetEntitySystem(); var shuttleSystem = entManager.EntitySysManager.GetEntitySystem(); - var xformQuery = entManager.GetEntityQuery(); var cfg = server.ResolveDependency(); Assert.That(cfg.GetCVar(CCVars.GridFill), Is.False); await server.WaitPost(() => { - mapSystem.CreateMap(out var mapId); + MapId mapId; try { - ticker.LoadGameMap(protoManager.Index(mapProto), mapId, null); + var opts = DeserializationOptions.Default with {InitializeMaps = true}; + ticker.LoadGameMap(protoManager.Index(mapProto), out mapId, opts); } catch (Exception ex) { @@ -254,21 +397,17 @@ await server.WaitPost(() => if (entManager.TryGetComponent(station, out var stationEvac)) { var shuttlePath = stationEvac.EmergencyShuttlePath; -#pragma warning disable NUnit2045 - Assert.That(mapLoader.TryLoad(shuttleMap, shuttlePath.ToString(), out var roots)); - EntityUid shuttle = default!; - Assert.DoesNotThrow(() => - { - shuttle = roots.First(uid => entManager.HasComponent(uid)); - }, $"Failed to load {shuttlePath}"); + Assert.That(mapLoader.TryLoadGrid(shuttleMap, shuttlePath, out var shuttle), + $"Failed to load {shuttlePath}"); + Assert.That( - shuttleSystem.TryFTLDock(shuttle, - entManager.GetComponent(shuttle), targetGrid.Value), + shuttleSystem.TryFTLDock(shuttle!.Value.Owner, + entManager.GetComponent(shuttle!.Value.Owner), + targetGrid.Value), $"Unable to dock {shuttlePath} to {mapProto}"); -#pragma warning restore NUnit2045 } - mapManager.DeleteMap(shuttleMap); + mapSystem.DeleteMap(shuttleMap); if (entManager.HasComponent(station)) { @@ -305,7 +444,7 @@ await server.WaitPost(() => try { - mapManager.DeleteMap(mapId); + mapSystem.DeleteMap(mapId); } catch (Exception ex) { @@ -369,11 +508,9 @@ public async Task NonGameMapsLoadableTest() var server = pair.Server; var mapLoader = server.ResolveDependency().GetEntitySystem(); - var mapManager = server.ResolveDependency(); var resourceManager = server.ResolveDependency(); var protoManager = server.ResolveDependency(); var cfg = server.ResolveDependency(); - var mapSystem = server.System(); Assert.That(cfg.GetCVar(CCVars.GridFill), Is.False); var gameMaps = protoManager.EnumeratePrototypes().Select(o => o.MapPath).ToHashSet(); @@ -384,7 +521,7 @@ public async Task NonGameMapsLoadableTest() .Where(filePath => filePath.Extension == "yml" && !filePath.Filename.StartsWith(".", StringComparison.Ordinal)) .ToArray(); - var mapNames = new List(); + var mapPaths = new List(); foreach (var map in maps) { if (gameMaps.Contains(map)) @@ -395,32 +532,46 @@ public async Task NonGameMapsLoadableTest() { continue; } - mapNames.Add(rootedPath.ToString()); + mapPaths.Add(rootedPath); } await server.WaitPost(() => { Assert.Multiple(() => { - foreach (var mapName in mapNames) + // This bunch of files contains a random mixture of both map and grid files. + // TODO MAPPING organize files + var opts = MapLoadOptions.Default with + { + DeserializationOptions = DeserializationOptions.Default with + { + InitializeMaps = true, + LogOrphanedGrids = false + } + }; + + HashSet> maps; + foreach (var path in mapPaths) { - mapSystem.CreateMap(out var mapId); try { - Assert.That(mapLoader.TryLoad(mapId, mapName, out _)); + Assert.That(mapLoader.TryLoadGeneric(path, out maps, out _, opts)); } catch (Exception ex) { - throw new Exception($"Failed to load map {mapName}", ex); + throw new Exception($"Failed to load map {path}", ex); } try { - mapManager.DeleteMap(mapId); + foreach (var map in maps) + { + server.EntMan.DeleteEntity(map); + } } catch (Exception ex) { - throw new Exception($"Failed to delete map {mapName}", ex); + throw new Exception($"Failed to delete map {path}", ex); } } }); diff --git a/Content.IntegrationTests/Tests/SalvageTest.cs b/Content.IntegrationTests/Tests/SalvageTest.cs index 5dfba82308f..0059db6292b 100644 --- a/Content.IntegrationTests/Tests/SalvageTest.cs +++ b/Content.IntegrationTests/Tests/SalvageTest.cs @@ -1,11 +1,8 @@ -using System.Linq; -using Content.Shared.CCVar; +using Content.Shared.CCVar; using Content.Shared.Salvage; -using Robust.Server.GameObjects; using Robust.Shared.Configuration; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.GameObjects; -using Robust.Shared.Map; -using Robust.Shared.Map.Components; using Robust.Shared.Prototypes; namespace Content.IntegrationTests.Tests; @@ -24,7 +21,6 @@ public async Task AllSalvageMapsLoadableTest() var entManager = server.ResolveDependency(); var mapLoader = entManager.System(); - var mapManager = server.ResolveDependency(); var prototypeManager = server.ResolveDependency(); var cfg = server.ResolveDependency(); var mapSystem = entManager.System(); @@ -34,13 +30,10 @@ await server.WaitPost(() => { foreach (var salvage in prototypeManager.EnumeratePrototypes()) { - var mapFile = salvage.MapPath; - mapSystem.CreateMap(out var mapId); try { - Assert.That(mapLoader.TryLoad(mapId, mapFile.ToString(), out var roots)); - Assert.That(roots.Where(uid => entManager.HasComponent(uid)), Is.Not.Empty); + Assert.That(mapLoader.TryLoadGrid(mapId, salvage.MapPath, out var grid)); } catch (Exception ex) { @@ -49,7 +42,7 @@ await server.WaitPost(() => try { - mapManager.DeleteMap(mapId); + mapSystem.DeleteMap(mapId); } catch (Exception ex) { diff --git a/Content.IntegrationTests/Tests/SaveLoadMapTest.cs b/Content.IntegrationTests/Tests/SaveLoadMapTest.cs index 213da5d7862..eb3dc147208 100644 --- a/Content.IntegrationTests/Tests/SaveLoadMapTest.cs +++ b/Content.IntegrationTests/Tests/SaveLoadMapTest.cs @@ -3,6 +3,7 @@ using Robust.Server.GameObjects; using Robust.Shared.Configuration; using Robust.Shared.ContentPack; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.GameObjects; using Robust.Shared.Map; using Robust.Shared.Maths; @@ -16,7 +17,7 @@ public sealed class SaveLoadMapTest [Test] public async Task SaveLoadMultiGridMap() { - const string mapPath = @"/Maps/Test/TestMap.yml"; + var mapPath = new ResPath("/Maps/Test/TestMap.yml"); await using var pair = await PoolManager.GetServerClient(); var server = pair.Server; @@ -31,7 +32,7 @@ public async Task SaveLoadMultiGridMap() await server.WaitAssertion(() => { - var dir = new ResPath(mapPath).Directory; + var dir = mapPath.Directory; resManager.UserData.CreateDir(dir); mapSystem.CreateMap(out var mapId); @@ -39,23 +40,25 @@ await server.WaitAssertion(() => { var mapGrid = mapManager.CreateGridEntity(mapId); xformSystem.SetWorldPosition(mapGrid, new Vector2(10, 10)); - mapSystem.SetTile(mapGrid, new Vector2i(0, 0), new Tile(1, (TileRenderFlag) 1, 255)); + mapSystem.SetTile(mapGrid, new Vector2i(0, 0), new Tile(typeId: 1, flags: 1, variant: 255)); } { var mapGrid = mapManager.CreateGridEntity(mapId); xformSystem.SetWorldPosition(mapGrid, new Vector2(-8, -8)); - mapSystem.SetTile(mapGrid, new Vector2i(0, 0), new Tile(2, (TileRenderFlag) 1, 254)); + mapSystem.SetTile(mapGrid, new Vector2i(0, 0), new Tile(typeId: 2, flags: 1, variant: 254)); } - Assert.Multiple(() => mapLoader.SaveMap(mapId, mapPath)); - Assert.Multiple(() => mapManager.DeleteMap(mapId)); + Assert.That(mapLoader.TrySaveMap(mapId, mapPath)); + mapSystem.DeleteMap(mapId); }); await server.WaitIdleAsync(); + MapId newMap = default; await server.WaitAssertion(() => { - Assert.That(mapLoader.TryLoad(new MapId(10), mapPath, out _)); + Assert.That(mapLoader.TryLoadMap(mapPath, out var map, out _)); + newMap = map!.Value.Comp.MapId; }); await server.WaitIdleAsync(); @@ -63,7 +66,7 @@ await server.WaitAssertion(() => await server.WaitAssertion(() => { { - if (!mapManager.TryFindGridAt(new MapId(10), new Vector2(10, 10), out var gridUid, out var mapGrid) || + if (!mapManager.TryFindGridAt(newMap, new Vector2(10, 10), out var gridUid, out var mapGrid) || !sEntities.TryGetComponent(gridUid, out var gridXform)) { Assert.Fail(); @@ -73,11 +76,11 @@ await server.WaitAssertion(() => Assert.Multiple(() => { Assert.That(xformSystem.GetWorldPosition(gridXform), Is.EqualTo(new Vector2(10, 10))); - Assert.That(mapSystem.GetTileRef(gridUid, mapGrid, new Vector2i(0, 0)).Tile, Is.EqualTo(new Tile(1, (TileRenderFlag) 1, 255))); + Assert.That(mapSystem.GetTileRef(gridUid, mapGrid, new Vector2i(0, 0)).Tile, Is.EqualTo(new Tile(typeId: 1, flags: 1, variant: 255))); }); } { - if (!mapManager.TryFindGridAt(new MapId(10), new Vector2(-8, -8), out var gridUid, out var mapGrid) || + if (!mapManager.TryFindGridAt(newMap, new Vector2(-8, -8), out var gridUid, out var mapGrid) || !sEntities.TryGetComponent(gridUid, out var gridXform)) { Assert.Fail(); @@ -87,7 +90,7 @@ await server.WaitAssertion(() => Assert.Multiple(() => { Assert.That(xformSystem.GetWorldPosition(gridXform), Is.EqualTo(new Vector2(-8, -8))); - Assert.That(mapSystem.GetTileRef(gridUid, mapGrid, new Vector2i(0, 0)).Tile, Is.EqualTo(new Tile(2, (TileRenderFlag) 1, 254))); + Assert.That(mapSystem.GetTileRef(gridUid, mapGrid, new Vector2i(0, 0)).Tile, Is.EqualTo(new Tile(typeId: 2, flags: 1, variant: 254))); }); } }); diff --git a/Content.IntegrationTests/Tests/SaveLoadSaveTest.cs b/Content.IntegrationTests/Tests/SaveLoadSaveTest.cs index 4facd5ee40c..b41aa0bf2f3 100644 --- a/Content.IntegrationTests/Tests/SaveLoadSaveTest.cs +++ b/Content.IntegrationTests/Tests/SaveLoadSaveTest.cs @@ -1,25 +1,25 @@ using System.IO; using System.Linq; using Content.Shared.CCVar; -using Robust.Server.GameObjects; -using Robust.Server.Maps; using Robust.Shared.Configuration; using Robust.Shared.ContentPack; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.GameObjects; using Robust.Shared.Map; -using Robust.Shared.Map.Components; +using Robust.Shared.Map.Events; +using Robust.Shared.Serialization.Markdown.Mapping; using Robust.Shared.Utility; namespace Content.IntegrationTests.Tests { /// - /// Tests that a map's yaml does not change when saved consecutively. + /// Tests that a grid's yaml does not change when saved consecutively. /// [TestFixture] public sealed class SaveLoadSaveTest { [Test] - public async Task SaveLoadSave() + public async Task CreateSaveLoadSaveGrid() { await using var pair = await PoolManager.GetServerClient(); var server = pair.Server; @@ -30,22 +30,21 @@ public async Task SaveLoadSave() var cfg = server.ResolveDependency(); Assert.That(cfg.GetCVar(CCVars.GridFill), Is.False); + var testSystem = server.System(); + testSystem.Enabled = true; + + var rp1 = new ResPath("/save load save 1.yml"); + var rp2 = new ResPath("/save load save 2.yml"); + await server.WaitPost(() => { mapSystem.CreateMap(out var mapId0); - // TODO: Properly find the "main" station grid. var grid0 = mapManager.CreateGridEntity(mapId0); - mapLoader.Save(grid0.Owner, "save load save 1.yml"); + entManager.RunMapInit(grid0.Owner, entManager.GetComponent(grid0)); + Assert.That(mapLoader.TrySaveGrid(grid0.Owner, rp1)); mapSystem.CreateMap(out var mapId1); - EntityUid grid1 = default!; -#pragma warning disable NUnit2045 - Assert.That(mapLoader.TryLoad(mapId1, "save load save 1.yml", out var roots, new MapLoadOptions() { LoadMap = false }), $"Failed to load test map {TestMap}"); - Assert.DoesNotThrow(() => - { - grid1 = roots.First(uid => entManager.HasComponent(uid)); - }); -#pragma warning restore NUnit2045 - mapLoader.Save(grid1, "save load save 2.yml"); + Assert.That(mapLoader.TryLoadGrid(mapId1, rp1, out var grid1)); + Assert.That(mapLoader.TrySaveGrid(grid1!.Value, rp2)); }); await server.WaitIdleAsync(); @@ -54,14 +53,12 @@ await server.WaitPost(() => string one; string two; - var rp1 = new ResPath("/save load save 1.yml"); await using (var stream = userData.Open(rp1, FileMode.Open)) using (var reader = new StreamReader(stream)) { one = await reader.ReadToEndAsync(); } - var rp2 = new ResPath("/save load save 2.yml"); await using (var stream = userData.Open(rp2, FileMode.Open)) using (var reader = new StreamReader(stream)) { @@ -87,6 +84,7 @@ await server.WaitPost(() => TestContext.Error.WriteLine(twoTmp); } }); + testSystem.Enabled = false; await pair.CleanReturnAsync(); } @@ -101,8 +99,12 @@ public async Task LoadSaveTicksSaveBagel() await using var pair = await PoolManager.GetServerClient(); var server = pair.Server; var mapLoader = server.ResolveDependency().GetEntitySystem(); - var mapManager = server.ResolveDependency(); - var mapSystem = server.System(); + var mapSys = server.System(); + var testSystem = server.System(); + testSystem.Enabled = true; + + var rp1 = new ResPath("/load save ticks save 1.yml"); + var rp2 = new ResPath("/load save ticks save 2.yml"); MapId mapId = default; var cfg = server.ResolveDependency(); @@ -111,10 +113,10 @@ public async Task LoadSaveTicksSaveBagel() // Load bagel.yml as uninitialized map, and save it to ensure it's up to date. server.Post(() => { - mapSystem.CreateMap(out mapId, runMapInit: false); - mapManager.SetMapPaused(mapId, true); - Assert.That(mapLoader.TryLoad(mapId, TestMap, out _), $"Failed to load test map {TestMap}"); - mapLoader.SaveMap(mapId, "load save ticks save 1.yml"); + var path = new ResPath(TestMap); + Assert.That(mapLoader.TryLoadMap(path, out var map, out _), $"Failed to load test map {TestMap}"); + mapId = map!.Value.Comp.MapId; + Assert.That(mapLoader.TrySaveMap(mapId, rp1)); }); // Run 5 ticks. @@ -122,7 +124,7 @@ public async Task LoadSaveTicksSaveBagel() await server.WaitPost(() => { - mapLoader.SaveMap(mapId, "/load save ticks save 2.yml"); + Assert.That(mapLoader.TrySaveMap(mapId, rp2)); }); await server.WaitIdleAsync(); @@ -131,13 +133,13 @@ await server.WaitPost(() => string one; string two; - await using (var stream = userData.Open(new ResPath("/load save ticks save 1.yml"), FileMode.Open)) + await using (var stream = userData.Open(rp1, FileMode.Open)) using (var reader = new StreamReader(stream)) { one = await reader.ReadToEndAsync(); } - await using (var stream = userData.Open(new ResPath("/load save ticks save 2.yml"), FileMode.Open)) + await using (var stream = userData.Open(rp2, FileMode.Open)) using (var reader = new StreamReader(stream)) { two = await reader.ReadToEndAsync(); @@ -163,7 +165,8 @@ await server.WaitPost(() => } }); - await server.WaitPost(() => mapManager.DeleteMap(mapId)); + testSystem.Enabled = false; + await server.WaitPost(() => mapSys.DeleteMap(mapId)); await pair.CleanReturnAsync(); } @@ -184,29 +187,31 @@ public async Task LoadTickLoadBagel() var server = pair.Server; var mapLoader = server.System(); - var mapSystem = server.System(); - var mapManager = server.ResolveDependency(); + var mapSys = server.System(); var userData = server.ResolveDependency().UserData; var cfg = server.ResolveDependency(); Assert.That(cfg.GetCVar(CCVars.GridFill), Is.False); + var testSystem = server.System(); + testSystem.Enabled = true; - MapId mapId = default; - const string fileA = "/load tick load a.yml"; - const string fileB = "/load tick load b.yml"; + MapId mapId1 = default; + MapId mapId2 = default; + var fileA = new ResPath("/load tick load a.yml"); + var fileB = new ResPath("/load tick load b.yml"); string yamlA; string yamlB; // Load & save the first map server.Post(() => { - mapSystem.CreateMap(out mapId, runMapInit: false); - mapManager.SetMapPaused(mapId, true); - Assert.That(mapLoader.TryLoad(mapId, TestMap, out _), $"Failed to load test map {TestMap}"); - mapLoader.SaveMap(mapId, fileA); + var path = new ResPath(TestMap); + Assert.That(mapLoader.TryLoadMap(path, out var map, out _), $"Failed to load test map {TestMap}"); + mapId1 = map!.Value.Comp.MapId; + Assert.That(mapLoader.TrySaveMap(mapId1, fileA)); }); await server.WaitIdleAsync(); - await using (var stream = userData.Open(new ResPath(fileA), FileMode.Open)) + await using (var stream = userData.Open(fileA, FileMode.Open)) using (var reader = new StreamReader(stream)) { yamlA = await reader.ReadToEndAsync(); @@ -217,16 +222,15 @@ public async Task LoadTickLoadBagel() // Load & save the second map server.Post(() => { - mapManager.DeleteMap(mapId); - mapSystem.CreateMap(out mapId, runMapInit: false); - mapManager.SetMapPaused(mapId, true); - Assert.That(mapLoader.TryLoad(mapId, TestMap, out _), $"Failed to load test map {TestMap}"); - mapLoader.SaveMap(mapId, fileB); + var path = new ResPath(TestMap); + Assert.That(mapLoader.TryLoadMap(path, out var map, out _), $"Failed to load test map {TestMap}"); + mapId2 = map!.Value.Comp.MapId; + Assert.That(mapLoader.TrySaveMap(mapId2, fileB)); }); await server.WaitIdleAsync(); - await using (var stream = userData.Open(new ResPath(fileB), FileMode.Open)) + await using (var stream = userData.Open(fileB, FileMode.Open)) using (var reader = new StreamReader(stream)) { yamlB = await reader.ReadToEndAsync(); @@ -234,8 +238,32 @@ public async Task LoadTickLoadBagel() Assert.That(yamlA, Is.EqualTo(yamlB)); - await server.WaitPost(() => mapManager.DeleteMap(mapId)); + testSystem.Enabled = false; + await server.WaitPost(() => mapSys.DeleteMap(mapId1)); + await server.WaitPost(() => mapSys.DeleteMap(mapId2)); await pair.CleanReturnAsync(); } + + /// + /// Simple system that modifies the data saved to a yaml file by removing the timestamp. + /// Required by some tests that validate that re-saving a map does not modify it. + /// + private sealed class SaveLoadSaveTestSystem : EntitySystem + { + public bool Enabled; + public override void Initialize() + { + SubscribeLocalEvent(OnAfterSave); + } + + private void OnAfterSave(AfterSerializationEvent ev) + { + if (!Enabled) + return; + + // Remove timestamp. + ((MappingDataNode)ev.Node["meta"]).Remove("time"); + } + } } } diff --git a/Content.IntegrationTests/Tests/Shuttle/DockTest.cs b/Content.IntegrationTests/Tests/Shuttle/DockTest.cs index f6e99596e90..ab82a3d2f91 100644 --- a/Content.IntegrationTests/Tests/Shuttle/DockTest.cs +++ b/Content.IntegrationTests/Tests/Shuttle/DockTest.cs @@ -4,10 +4,12 @@ using Content.Server.Shuttles.Systems; using Content.Tests; using Robust.Server.GameObjects; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.GameObjects; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Maths; +using Robust.Shared.Utility; namespace Content.IntegrationTests.Tests.Shuttle; @@ -106,8 +108,9 @@ await server.WaitAssertion(() => { mapGrid = entManager.AddComponent(map.MapUid); entManager.DeleteEntity(map.Grid); - Assert.That(entManager.System().TryLoad(otherMap.MapId, "/Maps/Shuttles/emergency.yml", out var rootUids)); - shuttle = rootUids[0]; + var path = new ResPath("/Maps/Shuttles/emergency.yml"); + Assert.That(entManager.System().TryLoadGrid(otherMap.MapId, path, out var grid)); + shuttle = grid!.Value.Owner; var dockingConfig = dockingSystem.GetDockingConfig(shuttle, map.MapUid); Assert.That(dockingConfig, Is.EqualTo(null)); diff --git a/Content.Server.Database/Migrations/Postgres/20250211131539_LoadoutNames.Designer.cs b/Content.Server.Database/Migrations/Postgres/20250211131539_LoadoutNames.Designer.cs new file mode 100644 index 00000000000..b6bd8e24ede --- /dev/null +++ b/Content.Server.Database/Migrations/Postgres/20250211131539_LoadoutNames.Designer.cs @@ -0,0 +1,2117 @@ +// +using System; +using System.Net; +using System.Text.Json; +using Content.Server.Database; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; +using NpgsqlTypes; + +#nullable disable + +namespace Content.Server.Database.Migrations.Postgres +{ + [DbContext(typeof(PostgresServerDbContext))] + [Migration("20250211131539_LoadoutNames")] + partial class LoadoutNames + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("AdminRankId") + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + b.Property("Deadminned") + .HasColumnType("boolean") + .HasColumnName("deadminned"); + + b.Property("Suspended") + .HasColumnType("boolean") + .HasColumnName("suspended"); + + b.Property("Title") + .HasColumnType("text") + .HasColumnName("title"); + + b.HasKey("UserId") + .HasName("PK_admin"); + + b.HasIndex("AdminRankId") + .HasDatabaseName("IX_admin_admin_rank_id"); + + b.ToTable("admin", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_flag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminId") + .HasColumnType("uuid") + .HasColumnName("admin_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flag"); + + b.Property("Negative") + .HasColumnType("boolean") + .HasColumnName("negative"); + + b.HasKey("Id") + .HasName("PK_admin_flag"); + + b.HasIndex("AdminId") + .HasDatabaseName("IX_admin_flag_admin_id"); + + b.HasIndex("Flag", "AdminId") + .IsUnique(); + + b.ToTable("admin_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Id") + .HasColumnType("integer") + .HasColumnName("admin_log_id"); + + b.Property("Date") + .HasColumnType("timestamp with time zone") + .HasColumnName("date"); + + b.Property("Impact") + .HasColumnType("smallint") + .HasColumnName("impact"); + + b.Property("Json") + .IsRequired() + .HasColumnType("jsonb") + .HasColumnName("json"); + + b.Property("Message") + .IsRequired() + .HasColumnType("text") + .HasColumnName("message"); + + b.Property("Type") + .HasColumnType("integer") + .HasColumnName("type"); + + b.HasKey("RoundId", "Id") + .HasName("PK_admin_log"); + + b.HasIndex("Date"); + + b.HasIndex("Message") + .HasAnnotation("Npgsql:TsVectorConfig", "english"); + + NpgsqlIndexBuilderExtensions.HasMethod(b.HasIndex("Message"), "GIN"); + + b.HasIndex("Type") + .HasDatabaseName("IX_admin_log_type"); + + b.ToTable("admin_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("LogId") + .HasColumnType("integer") + .HasColumnName("log_id"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.HasKey("RoundId", "LogId", "PlayerUserId") + .HasName("PK_admin_log_player"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_log_player_player_user_id"); + + b.ToTable("admin_log_player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_messages_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("uuid") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("boolean") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("uuid") + .HasColumnName("deleted_by_id"); + + b.Property("Dismissed") + .HasColumnType("boolean") + .HasColumnName("dismissed"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("character varying(4096)") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Seen") + .HasColumnType("boolean") + .HasColumnName("seen"); + + b.HasKey("Id") + .HasName("PK_admin_messages"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_messages_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_messages_round_id"); + + b.ToTable("admin_messages", null, t => + { + t.HasCheckConstraint("NotDismissedAndSeen", "NOT dismissed OR seen"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_notes_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("uuid") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("boolean") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("uuid") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("character varying(4096)") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Secret") + .HasColumnType("boolean") + .HasColumnName("secret"); + + b.Property("Severity") + .HasColumnType("integer") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_admin_notes"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_notes_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_notes_round_id"); + + b.ToTable("admin_notes", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_admin_rank"); + + b.ToTable("admin_rank", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_rank_flag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminRankId") + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flag"); + + b.HasKey("Id") + .HasName("PK_admin_rank_flag"); + + b.HasIndex("AdminRankId"); + + b.HasIndex("Flag", "AdminRankId") + .IsUnique(); + + b.ToTable("admin_rank_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_watchlists_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("uuid") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("boolean") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("uuid") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("character varying(4096)") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.HasKey("Id") + .HasName("PK_admin_watchlists"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_watchlists_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_watchlists_round_id"); + + b.ToTable("admin_watchlists", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("antag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AntagName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("antag_name"); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_antag"); + + b.HasIndex("ProfileId", "AntagName") + .IsUnique(); + + b.ToTable("antag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AssignedUserId", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("assigned_user_id_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_assigned_user_id"); + + b.HasIndex("UserId") + .IsUnique(); + + b.HasIndex("UserName") + .IsUnique(); + + b.ToTable("assigned_user_id", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.BanTemplate", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("ban_template_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AutoDelete") + .HasColumnType("boolean") + .HasColumnName("auto_delete"); + + b.Property("ExemptFlags") + .HasColumnType("integer") + .HasColumnName("exempt_flags"); + + b.Property("Hidden") + .HasColumnType("boolean") + .HasColumnName("hidden"); + + b.Property("Length") + .HasColumnType("interval") + .HasColumnName("length"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("text") + .HasColumnName("reason"); + + b.Property("Severity") + .HasColumnType("integer") + .HasColumnName("severity"); + + b.Property("Title") + .IsRequired() + .HasColumnType("text") + .HasColumnName("title"); + + b.HasKey("Id") + .HasName("PK_ban_template"); + + b.ToTable("ban_template", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Blacklist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_blacklist"); + + b.ToTable("blacklist", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("connection_log_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Address") + .IsRequired() + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("Denied") + .HasColumnType("smallint") + .HasColumnName("denied"); + + b.Property("ServerId") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasDefaultValue(0) + .HasColumnName("server_id"); + + b.Property("Time") + .HasColumnType("timestamp with time zone") + .HasColumnName("time"); + + b.Property("Trust") + .HasColumnType("real") + .HasColumnName("trust"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_connection_log"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_connection_log_server_id"); + + b.HasIndex("Time"); + + b.HasIndex("UserId"); + + b.ToTable("connection_log", null, t => + { + t.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.IPIntelCache", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("ipintel_cache_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Address") + .IsRequired() + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("Score") + .HasColumnType("real") + .HasColumnName("score"); + + b.Property("Time") + .HasColumnType("timestamp with time zone") + .HasColumnName("time"); + + b.HasKey("Id") + .HasName("PK_ipintel_cache"); + + b.ToTable("ipintel_cache", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("job_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("JobName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("job_name"); + + b.Property("Priority") + .HasColumnType("integer") + .HasColumnName("priority"); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_job"); + + b.HasIndex("ProfileId"); + + b.HasIndex("ProfileId", "JobName") + .IsUnique(); + + b.HasIndex(new[] { "ProfileId" }, "IX_job_one_high_priority") + .IsUnique() + .HasFilter("priority = 3"); + + b.ToTable("job", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.PlayTime", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("play_time_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("PlayerId") + .HasColumnType("uuid") + .HasColumnName("player_id"); + + b.Property("TimeSpent") + .HasColumnType("interval") + .HasColumnName("time_spent"); + + b.Property("Tracker") + .IsRequired() + .HasColumnType("text") + .HasColumnName("tracker"); + + b.HasKey("Id") + .HasName("PK_play_time"); + + b.HasIndex("PlayerId", "Tracker") + .IsUnique(); + + b.ToTable("play_time", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("player_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("FirstSeenTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("first_seen_time"); + + b.Property("LastReadRules") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_read_rules"); + + b.Property("LastSeenAddress") + .IsRequired() + .HasColumnType("inet") + .HasColumnName("last_seen_address"); + + b.Property("LastSeenTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_seen_time"); + + b.Property("LastSeenUserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("last_seen_user_name"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_player"); + + b.HasAlternateKey("UserId") + .HasName("ak_player_user_id"); + + b.HasIndex("LastSeenUserName"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("player", null, t => + { + t.HasCheckConstraint("LastSeenAddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= last_seen_address"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("preference_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminOOCColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("admin_ooc_color"); + + b.Property("SelectedCharacterSlot") + .HasColumnType("integer") + .HasColumnName("selected_character_slot"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_preference"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("preference", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("profile_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Age") + .HasColumnType("integer") + .HasColumnName("age"); + + b.Property("CharacterName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("char_name"); + + b.Property("EyeColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("eye_color"); + + b.Property("FacialHairColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("facial_hair_color"); + + b.Property("FacialHairName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("facial_hair_name"); + + b.Property("FlavorText") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flavor_text"); + + b.Property("Gender") + .IsRequired() + .HasColumnType("text") + .HasColumnName("gender"); + + b.Property("HairColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("hair_color"); + + b.Property("HairName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("hair_name"); + + b.Property("Markings") + .HasColumnType("jsonb") + .HasColumnName("markings"); + + b.Property("PreferenceId") + .HasColumnType("integer") + .HasColumnName("preference_id"); + + b.Property("PreferenceUnavailable") + .HasColumnType("integer") + .HasColumnName("pref_unavailable"); + + b.Property("Sex") + .IsRequired() + .HasColumnType("text") + .HasColumnName("sex"); + + b.Property("SkinColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("skin_color"); + + b.Property("Slot") + .HasColumnType("integer") + .HasColumnName("slot"); + + b.Property("SpawnPriority") + .HasColumnType("integer") + .HasColumnName("spawn_priority"); + + b.Property("Species") + .IsRequired() + .HasColumnType("text") + .HasColumnName("species"); + + b.HasKey("Id") + .HasName("PK_profile"); + + b.HasIndex("PreferenceId") + .HasDatabaseName("IX_profile_preference_id"); + + b.HasIndex("Slot", "PreferenceId") + .IsUnique(); + + b.ToTable("profile", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadout", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("profile_loadout_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("LoadoutName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("loadout_name"); + + b.Property("ProfileLoadoutGroupId") + .HasColumnType("integer") + .HasColumnName("profile_loadout_group_id"); + + b.HasKey("Id") + .HasName("PK_profile_loadout"); + + b.HasIndex("ProfileLoadoutGroupId"); + + b.ToTable("profile_loadout", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadoutGroup", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("profile_loadout_group_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("GroupName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("group_name"); + + b.Property("ProfileRoleLoadoutId") + .HasColumnType("integer") + .HasColumnName("profile_role_loadout_id"); + + b.HasKey("Id") + .HasName("PK_profile_loadout_group"); + + b.HasIndex("ProfileRoleLoadoutId"); + + b.ToTable("profile_loadout_group", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileRoleLoadout", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("profile_role_loadout_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("EntityName") + .HasMaxLength(256) + .HasColumnType("character varying(256)") + .HasColumnName("entity_name"); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.Property("RoleName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("role_name"); + + b.HasKey("Id") + .HasName("PK_profile_role_loadout"); + + b.HasIndex("ProfileId"); + + b.ToTable("profile_role_loadout", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.RoleWhitelist", b => + { + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("RoleId") + .HasColumnType("text") + .HasColumnName("role_id"); + + b.HasKey("PlayerUserId", "RoleId") + .HasName("PK_role_whitelists"); + + b.ToTable("role_whitelists", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("round_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ServerId") + .HasColumnType("integer") + .HasColumnName("server_id"); + + b.Property("StartDate") + .HasColumnType("timestamp with time zone") + .HasColumnName("start_date"); + + b.HasKey("Id") + .HasName("PK_round"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_round_server_id"); + + b.HasIndex("StartDate"); + + b.ToTable("round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_server"); + + b.ToTable("server", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_ban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Address") + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("AutoDelete") + .HasColumnType("boolean") + .HasColumnName("auto_delete"); + + b.Property("BanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("uuid") + .HasColumnName("banning_admin"); + + b.Property("ExemptFlags") + .HasColumnType("integer") + .HasColumnName("exempt_flags"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("Hidden") + .HasColumnType("boolean") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("text") + .HasColumnName("reason"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("integer") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_ban_round_id"); + + b.ToTable("server_ban", null, t => + { + t.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanExemption", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("Flags") + .HasColumnType("integer") + .HasColumnName("flags"); + + b.HasKey("UserId") + .HasName("PK_server_ban_exemption"); + + b.ToTable("server_ban_exemption", null, t => + { + t.HasCheckConstraint("FlagsNotZero", "flags != 0"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_ban_hit_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("ConnectionId") + .HasColumnType("integer") + .HasColumnName("connection_id"); + + b.HasKey("Id") + .HasName("PK_server_ban_hit"); + + b.HasIndex("BanId") + .HasDatabaseName("IX_server_ban_hit_ban_id"); + + b.HasIndex("ConnectionId") + .HasDatabaseName("IX_server_ban_hit_connection_id"); + + b.ToTable("server_ban_hit", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_role_ban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Address") + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("BanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("uuid") + .HasColumnName("banning_admin"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("Hidden") + .HasColumnType("boolean") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("text") + .HasColumnName("reason"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("text") + .HasColumnName("role_id"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("integer") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_role_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_role_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_role_ban_round_id"); + + b.ToTable("server_role_ban", null, t => + { + t.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("role_unban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("uuid") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_role_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_role_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("unban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("uuid") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("trait_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.Property("TraitName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("trait_name"); + + b.HasKey("Id") + .HasName("PK_trait"); + + b.HasIndex("ProfileId", "TraitName") + .IsUnique(); + + b.ToTable("trait", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.UploadedResourceLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("uploaded_resource_log_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Data") + .IsRequired() + .HasColumnType("bytea") + .HasColumnName("data"); + + b.Property("Date") + .HasColumnType("timestamp with time zone") + .HasColumnName("date"); + + b.Property("Path") + .IsRequired() + .HasColumnType("text") + .HasColumnName("path"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_uploaded_resource_log"); + + b.ToTable("uploaded_resource_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Whitelist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_whitelist"); + + b.ToTable("whitelist", (string)null); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.Property("PlayersId") + .HasColumnType("integer") + .HasColumnName("players_id"); + + b.Property("RoundsId") + .HasColumnType("integer") + .HasColumnName("rounds_id"); + + b.HasKey("PlayersId", "RoundsId") + .HasName("PK_player_round"); + + b.HasIndex("RoundsId") + .HasDatabaseName("IX_player_round_rounds_id"); + + b.ToTable("player_round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.HasOne("Content.Server.Database.AdminRank", "AdminRank") + .WithMany("Admins") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_admin_rank_admin_rank_id"); + + b.Navigation("AdminRank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.HasOne("Content.Server.Database.Admin", "Admin") + .WithMany("Flags") + .HasForeignKey("AdminId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_flag_admin_admin_id"); + + b.Navigation("Admin"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany("AdminLogs") + .HasForeignKey("RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_round_round_id"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminLogs") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_player_player_user_id"); + + b.HasOne("Content.Server.Database.AdminLog", "Log") + .WithMany("Players") + .HasForeignKey("RoundId", "LogId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_admin_log_round_id_log_id"); + + b.Navigation("Log"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminMessagesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminMessagesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminMessagesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminMessagesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_messages_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_messages_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminNotesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminNotesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminNotesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminNotesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_notes_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_notes_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.HasOne("Content.Server.Database.AdminRank", "Rank") + .WithMany("Flags") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_rank_flag_admin_rank_admin_rank_id"); + + b.Navigation("Rank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminWatchlistsCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminWatchlistsDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminWatchlistsLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminWatchlistsReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_watchlists_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_watchlists_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Antags") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_antag_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("ConnectionLogs") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.SetNull) + .IsRequired() + .HasConstraintName("FK_connection_log_server_server_id"); + + b.OwnsOne("Content.Server.Database.TypedHwid", "HWId", b1 => + { + b1.Property("ConnectionLogId") + .HasColumnType("integer") + .HasColumnName("connection_log_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasDefaultValue(0) + .HasColumnName("hwid_type"); + + b1.HasKey("ConnectionLogId"); + + b1.ToTable("connection_log"); + + b1.WithOwner() + .HasForeignKey("ConnectionLogId") + .HasConstraintName("FK_connection_log_connection_log_connection_log_id"); + }); + + b.Navigation("HWId"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Jobs") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_job_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.OwnsOne("Content.Server.Database.TypedHwid", "LastSeenHWId", b1 => + { + b1.Property("PlayerId") + .HasColumnType("integer") + .HasColumnName("player_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("bytea") + .HasColumnName("last_seen_hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasDefaultValue(0) + .HasColumnName("last_seen_hwid_type"); + + b1.HasKey("PlayerId"); + + b1.ToTable("player"); + + b1.WithOwner() + .HasForeignKey("PlayerId") + .HasConstraintName("FK_player_player_player_id"); + }); + + b.Navigation("LastSeenHWId"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.HasOne("Content.Server.Database.Preference", "Preference") + .WithMany("Profiles") + .HasForeignKey("PreferenceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_preference_preference_id"); + + b.Navigation("Preference"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadout", b => + { + b.HasOne("Content.Server.Database.ProfileLoadoutGroup", "ProfileLoadoutGroup") + .WithMany("Loadouts") + .HasForeignKey("ProfileLoadoutGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_loadout_profile_loadout_group_profile_loadout_group~"); + + b.Navigation("ProfileLoadoutGroup"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadoutGroup", b => + { + b.HasOne("Content.Server.Database.ProfileRoleLoadout", "ProfileRoleLoadout") + .WithMany("Groups") + .HasForeignKey("ProfileRoleLoadoutId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_loadout_group_profile_role_loadout_profile_role_loa~"); + + b.Navigation("ProfileRoleLoadout"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileRoleLoadout", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Loadouts") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_role_loadout_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.RoleWhitelist", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("JobWhitelists") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_role_whitelists_player_player_user_id"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("Rounds") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_round_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_ban_round_round_id"); + + b.OwnsOne("Content.Server.Database.TypedHwid", "HWId", b1 => + { + b1.Property("ServerBanId") + .HasColumnType("integer") + .HasColumnName("server_ban_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasDefaultValue(0) + .HasColumnName("hwid_type"); + + b1.HasKey("ServerBanId"); + + b1.ToTable("server_ban"); + + b1.WithOwner() + .HasForeignKey("ServerBanId") + .HasConstraintName("FK_server_ban_server_ban_server_ban_id"); + }); + + b.Navigation("CreatedBy"); + + b.Navigation("HWId"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithMany("BanHits") + .HasForeignKey("BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_server_ban_ban_id"); + + b.HasOne("Content.Server.Database.ConnectionLog", "Connection") + .WithMany("BanHits") + .HasForeignKey("ConnectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_connection_log_connection_id"); + + b.Navigation("Ban"); + + b.Navigation("Connection"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerRoleBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerRoleBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_role_ban_round_round_id"); + + b.OwnsOne("Content.Server.Database.TypedHwid", "HWId", b1 => + { + b1.Property("ServerRoleBanId") + .HasColumnType("integer") + .HasColumnName("server_role_ban_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasDefaultValue(0) + .HasColumnName("hwid_type"); + + b1.HasKey("ServerRoleBanId"); + + b1.ToTable("server_role_ban"); + + b1.WithOwner() + .HasForeignKey("ServerRoleBanId") + .HasConstraintName("FK_server_role_ban_server_role_ban_server_role_ban_id"); + }); + + b.Navigation("CreatedBy"); + + b.Navigation("HWId"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.HasOne("Content.Server.Database.ServerRoleBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerRoleUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_role_unban_server_role_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_unban_server_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Traits") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_trait_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.HasOne("Content.Server.Database.Player", null) + .WithMany() + .HasForeignKey("PlayersId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_player_players_id"); + + b.HasOne("Content.Server.Database.Round", null) + .WithMany() + .HasForeignKey("RoundsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_round_rounds_id"); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Navigation("Players"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Navigation("Admins"); + + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Navigation("BanHits"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Navigation("AdminLogs"); + + b.Navigation("AdminMessagesCreated"); + + b.Navigation("AdminMessagesDeleted"); + + b.Navigation("AdminMessagesLastEdited"); + + b.Navigation("AdminMessagesReceived"); + + b.Navigation("AdminNotesCreated"); + + b.Navigation("AdminNotesDeleted"); + + b.Navigation("AdminNotesLastEdited"); + + b.Navigation("AdminNotesReceived"); + + b.Navigation("AdminServerBansCreated"); + + b.Navigation("AdminServerBansLastEdited"); + + b.Navigation("AdminServerRoleBansCreated"); + + b.Navigation("AdminServerRoleBansLastEdited"); + + b.Navigation("AdminWatchlistsCreated"); + + b.Navigation("AdminWatchlistsDeleted"); + + b.Navigation("AdminWatchlistsLastEdited"); + + b.Navigation("AdminWatchlistsReceived"); + + b.Navigation("JobWhitelists"); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Navigation("Profiles"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Navigation("Antags"); + + b.Navigation("Jobs"); + + b.Navigation("Loadouts"); + + b.Navigation("Traits"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadoutGroup", b => + { + b.Navigation("Loadouts"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileRoleLoadout", b => + { + b.Navigation("Groups"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Navigation("AdminLogs"); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Navigation("ConnectionLogs"); + + b.Navigation("Rounds"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Navigation("BanHits"); + + b.Navigation("Unban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Navigation("Unban"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Content.Server.Database/Migrations/Postgres/20250211131539_LoadoutNames.cs b/Content.Server.Database/Migrations/Postgres/20250211131539_LoadoutNames.cs new file mode 100644 index 00000000000..3b331f33df4 --- /dev/null +++ b/Content.Server.Database/Migrations/Postgres/20250211131539_LoadoutNames.cs @@ -0,0 +1,29 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Content.Server.Database.Migrations.Postgres +{ + /// + public partial class LoadoutNames : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "entity_name", + table: "profile_role_loadout", + type: "character varying(256)", + maxLength: 256, + nullable: true); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "entity_name", + table: "profile_role_loadout"); + } + } +} diff --git a/Content.Server.Database/Migrations/Postgres/PostgresServerDbContextModelSnapshot.cs b/Content.Server.Database/Migrations/Postgres/PostgresServerDbContextModelSnapshot.cs index a186197a8c1..60d8461c136 100644 --- a/Content.Server.Database/Migrations/Postgres/PostgresServerDbContextModelSnapshot.cs +++ b/Content.Server.Database/Migrations/Postgres/PostgresServerDbContextModelSnapshot.cs @@ -1062,6 +1062,11 @@ protected override void BuildModel(ModelBuilder modelBuilder) NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + b.Property("EntityName") + .HasMaxLength(256) + .HasColumnType("character varying(256)") + .HasColumnName("entity_name"); + b.Property("ProfileId") .HasColumnType("integer") .HasColumnName("profile_id"); diff --git a/Content.Server.Database/Migrations/Sqlite/20250211131517_LoadoutNames.Designer.cs b/Content.Server.Database/Migrations/Sqlite/20250211131517_LoadoutNames.Designer.cs new file mode 100644 index 00000000000..5e54eec94b0 --- /dev/null +++ b/Content.Server.Database/Migrations/Sqlite/20250211131517_LoadoutNames.Designer.cs @@ -0,0 +1,2041 @@ +// +using System; +using Content.Server.Database; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace Content.Server.Database.Migrations.Sqlite +{ + [DbContext(typeof(SqliteServerDbContext))] + [Migration("20250211131517_LoadoutNames")] + partial class LoadoutNames + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "8.0.0"); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("AdminRankId") + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Deadminned") + .HasColumnType("INTEGER") + .HasColumnName("deadminned"); + + b.Property("Suspended") + .HasColumnType("INTEGER") + .HasColumnName("suspended"); + + b.Property("Title") + .HasColumnType("TEXT") + .HasColumnName("title"); + + b.HasKey("UserId") + .HasName("PK_admin"); + + b.HasIndex("AdminRankId") + .HasDatabaseName("IX_admin_admin_rank_id"); + + b.ToTable("admin", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_flag_id"); + + b.Property("AdminId") + .HasColumnType("TEXT") + .HasColumnName("admin_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flag"); + + b.Property("Negative") + .HasColumnType("INTEGER") + .HasColumnName("negative"); + + b.HasKey("Id") + .HasName("PK_admin_flag"); + + b.HasIndex("AdminId") + .HasDatabaseName("IX_admin_flag_admin_id"); + + b.HasIndex("Flag", "AdminId") + .IsUnique(); + + b.ToTable("admin_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Id") + .HasColumnType("INTEGER") + .HasColumnName("admin_log_id"); + + b.Property("Date") + .HasColumnType("TEXT") + .HasColumnName("date"); + + b.Property("Impact") + .HasColumnType("INTEGER") + .HasColumnName("impact"); + + b.Property("Json") + .IsRequired() + .HasColumnType("jsonb") + .HasColumnName("json"); + + b.Property("Message") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("Type") + .HasColumnType("INTEGER") + .HasColumnName("type"); + + b.HasKey("RoundId", "Id") + .HasName("PK_admin_log"); + + b.HasIndex("Date"); + + b.HasIndex("Type") + .HasDatabaseName("IX_admin_log_type"); + + b.ToTable("admin_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("LogId") + .HasColumnType("INTEGER") + .HasColumnName("log_id"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.HasKey("RoundId", "LogId", "PlayerUserId") + .HasName("PK_admin_log_player"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_log_player_player_user_id"); + + b.ToTable("admin_log_player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_messages_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("Dismissed") + .HasColumnType("INTEGER") + .HasColumnName("dismissed"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Seen") + .HasColumnType("INTEGER") + .HasColumnName("seen"); + + b.HasKey("Id") + .HasName("PK_admin_messages"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_messages_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_messages_round_id"); + + b.ToTable("admin_messages", null, t => + { + t.HasCheckConstraint("NotDismissedAndSeen", "NOT dismissed OR seen"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_notes_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Secret") + .HasColumnType("INTEGER") + .HasColumnName("secret"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_admin_notes"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_notes_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_notes_round_id"); + + b.ToTable("admin_notes", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_admin_rank"); + + b.ToTable("admin_rank", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_flag_id"); + + b.Property("AdminRankId") + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flag"); + + b.HasKey("Id") + .HasName("PK_admin_rank_flag"); + + b.HasIndex("AdminRankId"); + + b.HasIndex("Flag", "AdminRankId") + .IsUnique(); + + b.ToTable("admin_rank_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_watchlists_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.HasKey("Id") + .HasName("PK_admin_watchlists"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_watchlists_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_watchlists_round_id"); + + b.ToTable("admin_watchlists", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("antag_id"); + + b.Property("AntagName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("antag_name"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_antag"); + + b.HasIndex("ProfileId", "AntagName") + .IsUnique(); + + b.ToTable("antag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AssignedUserId", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("assigned_user_id_id"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_assigned_user_id"); + + b.HasIndex("UserId") + .IsUnique(); + + b.HasIndex("UserName") + .IsUnique(); + + b.ToTable("assigned_user_id", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.BanTemplate", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("ban_template_id"); + + b.Property("AutoDelete") + .HasColumnType("INTEGER") + .HasColumnName("auto_delete"); + + b.Property("ExemptFlags") + .HasColumnType("INTEGER") + .HasColumnName("exempt_flags"); + + b.Property("Hidden") + .HasColumnType("INTEGER") + .HasColumnName("hidden"); + + b.Property("Length") + .HasColumnType("TEXT") + .HasColumnName("length"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("reason"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.Property("Title") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("title"); + + b.HasKey("Id") + .HasName("PK_ban_template"); + + b.ToTable("ban_template", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Blacklist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_blacklist"); + + b.ToTable("blacklist", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("connection_log_id"); + + b.Property("Address") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("Denied") + .HasColumnType("INTEGER") + .HasColumnName("denied"); + + b.Property("ServerId") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0) + .HasColumnName("server_id"); + + b.Property("Time") + .HasColumnType("TEXT") + .HasColumnName("time"); + + b.Property("Trust") + .HasColumnType("REAL") + .HasColumnName("trust"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_connection_log"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_connection_log_server_id"); + + b.HasIndex("Time"); + + b.HasIndex("UserId"); + + b.ToTable("connection_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.IPIntelCache", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("ipintel_cache_id"); + + b.Property("Address") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("Score") + .HasColumnType("REAL") + .HasColumnName("score"); + + b.Property("Time") + .HasColumnType("TEXT") + .HasColumnName("time"); + + b.HasKey("Id") + .HasName("PK_ipintel_cache"); + + b.HasIndex("Address") + .IsUnique(); + + b.ToTable("ipintel_cache", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("job_id"); + + b.Property("JobName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("job_name"); + + b.Property("Priority") + .HasColumnType("INTEGER") + .HasColumnName("priority"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_job"); + + b.HasIndex("ProfileId"); + + b.HasIndex("ProfileId", "JobName") + .IsUnique(); + + b.HasIndex(new[] { "ProfileId" }, "IX_job_one_high_priority") + .IsUnique() + .HasFilter("priority = 3"); + + b.ToTable("job", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.PlayTime", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("play_time_id"); + + b.Property("PlayerId") + .HasColumnType("TEXT") + .HasColumnName("player_id"); + + b.Property("TimeSpent") + .HasColumnType("TEXT") + .HasColumnName("time_spent"); + + b.Property("Tracker") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("tracker"); + + b.HasKey("Id") + .HasName("PK_play_time"); + + b.HasIndex("PlayerId", "Tracker") + .IsUnique(); + + b.ToTable("play_time", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("player_id"); + + b.Property("FirstSeenTime") + .HasColumnType("TEXT") + .HasColumnName("first_seen_time"); + + b.Property("LastReadRules") + .HasColumnType("TEXT") + .HasColumnName("last_read_rules"); + + b.Property("LastSeenAddress") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_seen_address"); + + b.Property("LastSeenTime") + .HasColumnType("TEXT") + .HasColumnName("last_seen_time"); + + b.Property("LastSeenUserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_seen_user_name"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_player"); + + b.HasAlternateKey("UserId") + .HasName("ak_player_user_id"); + + b.HasIndex("LastSeenUserName"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("preference_id"); + + b.Property("AdminOOCColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("admin_ooc_color"); + + b.Property("SelectedCharacterSlot") + .HasColumnType("INTEGER") + .HasColumnName("selected_character_slot"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_preference"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("preference", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("Age") + .HasColumnType("INTEGER") + .HasColumnName("age"); + + b.Property("CharacterName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("char_name"); + + b.Property("EyeColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("eye_color"); + + b.Property("FacialHairColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("facial_hair_color"); + + b.Property("FacialHairName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("facial_hair_name"); + + b.Property("FlavorText") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flavor_text"); + + b.Property("Gender") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("gender"); + + b.Property("HairColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("hair_color"); + + b.Property("HairName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("hair_name"); + + b.Property("Markings") + .HasColumnType("jsonb") + .HasColumnName("markings"); + + b.Property("PreferenceId") + .HasColumnType("INTEGER") + .HasColumnName("preference_id"); + + b.Property("PreferenceUnavailable") + .HasColumnType("INTEGER") + .HasColumnName("pref_unavailable"); + + b.Property("Sex") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("sex"); + + b.Property("SkinColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("skin_color"); + + b.Property("Slot") + .HasColumnType("INTEGER") + .HasColumnName("slot"); + + b.Property("SpawnPriority") + .HasColumnType("INTEGER") + .HasColumnName("spawn_priority"); + + b.Property("Species") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("species"); + + b.HasKey("Id") + .HasName("PK_profile"); + + b.HasIndex("PreferenceId") + .HasDatabaseName("IX_profile_preference_id"); + + b.HasIndex("Slot", "PreferenceId") + .IsUnique(); + + b.ToTable("profile", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadout", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("profile_loadout_id"); + + b.Property("LoadoutName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("loadout_name"); + + b.Property("ProfileLoadoutGroupId") + .HasColumnType("INTEGER") + .HasColumnName("profile_loadout_group_id"); + + b.HasKey("Id") + .HasName("PK_profile_loadout"); + + b.HasIndex("ProfileLoadoutGroupId"); + + b.ToTable("profile_loadout", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadoutGroup", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("profile_loadout_group_id"); + + b.Property("GroupName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("group_name"); + + b.Property("ProfileRoleLoadoutId") + .HasColumnType("INTEGER") + .HasColumnName("profile_role_loadout_id"); + + b.HasKey("Id") + .HasName("PK_profile_loadout_group"); + + b.HasIndex("ProfileRoleLoadoutId"); + + b.ToTable("profile_loadout_group", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileRoleLoadout", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("profile_role_loadout_id"); + + b.Property("EntityName") + .HasMaxLength(256) + .HasColumnType("TEXT") + .HasColumnName("entity_name"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("RoleName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("role_name"); + + b.HasKey("Id") + .HasName("PK_profile_role_loadout"); + + b.HasIndex("ProfileId"); + + b.ToTable("profile_role_loadout", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.RoleWhitelist", b => + { + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("RoleId") + .HasColumnType("TEXT") + .HasColumnName("role_id"); + + b.HasKey("PlayerUserId", "RoleId") + .HasName("PK_role_whitelists"); + + b.ToTable("role_whitelists", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("ServerId") + .HasColumnType("INTEGER") + .HasColumnName("server_id"); + + b.Property("StartDate") + .HasColumnType("TEXT") + .HasColumnName("start_date"); + + b.HasKey("Id") + .HasName("PK_round"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_round_server_id"); + + b.HasIndex("StartDate"); + + b.ToTable("round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_id"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_server"); + + b.ToTable("server", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_ban_id"); + + b.Property("Address") + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("AutoDelete") + .HasColumnType("INTEGER") + .HasColumnName("auto_delete"); + + b.Property("BanTime") + .HasColumnType("TEXT") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("banning_admin"); + + b.Property("ExemptFlags") + .HasColumnType("INTEGER") + .HasColumnName("exempt_flags"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("Hidden") + .HasColumnType("INTEGER") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("reason"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_ban_round_id"); + + b.ToTable("server_ban", null, t => + { + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanExemption", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("Flags") + .HasColumnType("INTEGER") + .HasColumnName("flags"); + + b.HasKey("UserId") + .HasName("PK_server_ban_exemption"); + + b.ToTable("server_ban_exemption", null, t => + { + t.HasCheckConstraint("FlagsNotZero", "flags != 0"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_ban_hit_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("ConnectionId") + .HasColumnType("INTEGER") + .HasColumnName("connection_id"); + + b.HasKey("Id") + .HasName("PK_server_ban_hit"); + + b.HasIndex("BanId") + .HasDatabaseName("IX_server_ban_hit_ban_id"); + + b.HasIndex("ConnectionId") + .HasDatabaseName("IX_server_ban_hit_connection_id"); + + b.ToTable("server_ban_hit", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_role_ban_id"); + + b.Property("Address") + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("BanTime") + .HasColumnType("TEXT") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("banning_admin"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("Hidden") + .HasColumnType("INTEGER") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("reason"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("role_id"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_role_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_role_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_role_ban_round_id"); + + b.ToTable("server_role_ban", null, t => + { + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("role_unban_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("TEXT") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_role_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_role_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("unban_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("TEXT") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("trait_id"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("TraitName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("trait_name"); + + b.HasKey("Id") + .HasName("PK_trait"); + + b.HasIndex("ProfileId", "TraitName") + .IsUnique(); + + b.ToTable("trait", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.UploadedResourceLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("uploaded_resource_log_id"); + + b.Property("Data") + .IsRequired() + .HasColumnType("BLOB") + .HasColumnName("data"); + + b.Property("Date") + .HasColumnType("TEXT") + .HasColumnName("date"); + + b.Property("Path") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("path"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_uploaded_resource_log"); + + b.ToTable("uploaded_resource_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Whitelist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_whitelist"); + + b.ToTable("whitelist", (string)null); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.Property("PlayersId") + .HasColumnType("INTEGER") + .HasColumnName("players_id"); + + b.Property("RoundsId") + .HasColumnType("INTEGER") + .HasColumnName("rounds_id"); + + b.HasKey("PlayersId", "RoundsId") + .HasName("PK_player_round"); + + b.HasIndex("RoundsId") + .HasDatabaseName("IX_player_round_rounds_id"); + + b.ToTable("player_round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.HasOne("Content.Server.Database.AdminRank", "AdminRank") + .WithMany("Admins") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_admin_rank_admin_rank_id"); + + b.Navigation("AdminRank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.HasOne("Content.Server.Database.Admin", "Admin") + .WithMany("Flags") + .HasForeignKey("AdminId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_flag_admin_admin_id"); + + b.Navigation("Admin"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany("AdminLogs") + .HasForeignKey("RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_round_round_id"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminLogs") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_player_player_user_id"); + + b.HasOne("Content.Server.Database.AdminLog", "Log") + .WithMany("Players") + .HasForeignKey("RoundId", "LogId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_admin_log_round_id_log_id"); + + b.Navigation("Log"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminMessagesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminMessagesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminMessagesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminMessagesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_messages_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_messages_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminNotesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminNotesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminNotesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminNotesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_notes_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_notes_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.HasOne("Content.Server.Database.AdminRank", "Rank") + .WithMany("Flags") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_rank_flag_admin_rank_admin_rank_id"); + + b.Navigation("Rank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminWatchlistsCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminWatchlistsDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminWatchlistsLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminWatchlistsReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_watchlists_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_watchlists_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Antags") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_antag_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("ConnectionLogs") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.SetNull) + .IsRequired() + .HasConstraintName("FK_connection_log_server_server_id"); + + b.OwnsOne("Content.Server.Database.TypedHwid", "HWId", b1 => + { + b1.Property("ConnectionLogId") + .HasColumnType("INTEGER") + .HasColumnName("connection_log_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0) + .HasColumnName("hwid_type"); + + b1.HasKey("ConnectionLogId"); + + b1.ToTable("connection_log"); + + b1.WithOwner() + .HasForeignKey("ConnectionLogId") + .HasConstraintName("FK_connection_log_connection_log_connection_log_id"); + }); + + b.Navigation("HWId"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Jobs") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_job_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.OwnsOne("Content.Server.Database.TypedHwid", "LastSeenHWId", b1 => + { + b1.Property("PlayerId") + .HasColumnType("INTEGER") + .HasColumnName("player_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("BLOB") + .HasColumnName("last_seen_hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0) + .HasColumnName("last_seen_hwid_type"); + + b1.HasKey("PlayerId"); + + b1.ToTable("player"); + + b1.WithOwner() + .HasForeignKey("PlayerId") + .HasConstraintName("FK_player_player_player_id"); + }); + + b.Navigation("LastSeenHWId"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.HasOne("Content.Server.Database.Preference", "Preference") + .WithMany("Profiles") + .HasForeignKey("PreferenceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_preference_preference_id"); + + b.Navigation("Preference"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadout", b => + { + b.HasOne("Content.Server.Database.ProfileLoadoutGroup", "ProfileLoadoutGroup") + .WithMany("Loadouts") + .HasForeignKey("ProfileLoadoutGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_loadout_profile_loadout_group_profile_loadout_group_id"); + + b.Navigation("ProfileLoadoutGroup"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadoutGroup", b => + { + b.HasOne("Content.Server.Database.ProfileRoleLoadout", "ProfileRoleLoadout") + .WithMany("Groups") + .HasForeignKey("ProfileRoleLoadoutId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_loadout_group_profile_role_loadout_profile_role_loadout_id"); + + b.Navigation("ProfileRoleLoadout"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileRoleLoadout", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Loadouts") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_role_loadout_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.RoleWhitelist", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("JobWhitelists") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_role_whitelists_player_player_user_id"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("Rounds") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_round_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_ban_round_round_id"); + + b.OwnsOne("Content.Server.Database.TypedHwid", "HWId", b1 => + { + b1.Property("ServerBanId") + .HasColumnType("INTEGER") + .HasColumnName("server_ban_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0) + .HasColumnName("hwid_type"); + + b1.HasKey("ServerBanId"); + + b1.ToTable("server_ban"); + + b1.WithOwner() + .HasForeignKey("ServerBanId") + .HasConstraintName("FK_server_ban_server_ban_server_ban_id"); + }); + + b.Navigation("CreatedBy"); + + b.Navigation("HWId"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithMany("BanHits") + .HasForeignKey("BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_server_ban_ban_id"); + + b.HasOne("Content.Server.Database.ConnectionLog", "Connection") + .WithMany("BanHits") + .HasForeignKey("ConnectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_connection_log_connection_id"); + + b.Navigation("Ban"); + + b.Navigation("Connection"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerRoleBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerRoleBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_role_ban_round_round_id"); + + b.OwnsOne("Content.Server.Database.TypedHwid", "HWId", b1 => + { + b1.Property("ServerRoleBanId") + .HasColumnType("INTEGER") + .HasColumnName("server_role_ban_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0) + .HasColumnName("hwid_type"); + + b1.HasKey("ServerRoleBanId"); + + b1.ToTable("server_role_ban"); + + b1.WithOwner() + .HasForeignKey("ServerRoleBanId") + .HasConstraintName("FK_server_role_ban_server_role_ban_server_role_ban_id"); + }); + + b.Navigation("CreatedBy"); + + b.Navigation("HWId"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.HasOne("Content.Server.Database.ServerRoleBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerRoleUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_role_unban_server_role_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_unban_server_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Traits") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_trait_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.HasOne("Content.Server.Database.Player", null) + .WithMany() + .HasForeignKey("PlayersId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_player_players_id"); + + b.HasOne("Content.Server.Database.Round", null) + .WithMany() + .HasForeignKey("RoundsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_round_rounds_id"); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Navigation("Players"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Navigation("Admins"); + + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Navigation("BanHits"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Navigation("AdminLogs"); + + b.Navigation("AdminMessagesCreated"); + + b.Navigation("AdminMessagesDeleted"); + + b.Navigation("AdminMessagesLastEdited"); + + b.Navigation("AdminMessagesReceived"); + + b.Navigation("AdminNotesCreated"); + + b.Navigation("AdminNotesDeleted"); + + b.Navigation("AdminNotesLastEdited"); + + b.Navigation("AdminNotesReceived"); + + b.Navigation("AdminServerBansCreated"); + + b.Navigation("AdminServerBansLastEdited"); + + b.Navigation("AdminServerRoleBansCreated"); + + b.Navigation("AdminServerRoleBansLastEdited"); + + b.Navigation("AdminWatchlistsCreated"); + + b.Navigation("AdminWatchlistsDeleted"); + + b.Navigation("AdminWatchlistsLastEdited"); + + b.Navigation("AdminWatchlistsReceived"); + + b.Navigation("JobWhitelists"); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Navigation("Profiles"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Navigation("Antags"); + + b.Navigation("Jobs"); + + b.Navigation("Loadouts"); + + b.Navigation("Traits"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadoutGroup", b => + { + b.Navigation("Loadouts"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileRoleLoadout", b => + { + b.Navigation("Groups"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Navigation("AdminLogs"); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Navigation("ConnectionLogs"); + + b.Navigation("Rounds"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Navigation("BanHits"); + + b.Navigation("Unban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Navigation("Unban"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Content.Server.Database/Migrations/Sqlite/20250211131517_LoadoutNames.cs b/Content.Server.Database/Migrations/Sqlite/20250211131517_LoadoutNames.cs new file mode 100644 index 00000000000..bc13e9e59f5 --- /dev/null +++ b/Content.Server.Database/Migrations/Sqlite/20250211131517_LoadoutNames.cs @@ -0,0 +1,29 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Content.Server.Database.Migrations.Sqlite +{ + /// + public partial class LoadoutNames : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "entity_name", + table: "profile_role_loadout", + type: "TEXT", + maxLength: 256, + nullable: true); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "entity_name", + table: "profile_role_loadout"); + } + } +} diff --git a/Content.Server.Database/Migrations/Sqlite/SqliteServerDbContextModelSnapshot.cs b/Content.Server.Database/Migrations/Sqlite/SqliteServerDbContextModelSnapshot.cs index f7a03ca3259..394dadaa46a 100644 --- a/Content.Server.Database/Migrations/Sqlite/SqliteServerDbContextModelSnapshot.cs +++ b/Content.Server.Database/Migrations/Sqlite/SqliteServerDbContextModelSnapshot.cs @@ -1004,6 +1004,11 @@ protected override void BuildModel(ModelBuilder modelBuilder) .HasColumnType("INTEGER") .HasColumnName("profile_role_loadout_id"); + b.Property("EntityName") + .HasMaxLength(256) + .HasColumnType("TEXT") + .HasColumnName("entity_name"); + b.Property("ProfileId") .HasColumnType("INTEGER") .HasColumnName("profile_id"); diff --git a/Content.Server.Database/Model.cs b/Content.Server.Database/Model.cs index dcdb6044ddd..09768536aad 100644 --- a/Content.Server.Database/Model.cs +++ b/Content.Server.Database/Model.cs @@ -505,6 +505,12 @@ public class ProfileRoleLoadout /// public string RoleName { get; set; } = string.Empty; + /// + /// Custom name of the role loadout if it supports it. + /// + [MaxLength(256)] + public string? EntityName { get; set; } + /// /// Store the saved loadout groups. These may get validated and removed when loaded at runtime. /// diff --git a/Content.Server/ADT/AdditionalMapLoader/AdditionalMapLoaderSystem.cs b/Content.Server/ADT/AdditionalMapLoader/AdditionalMapLoaderSystem.cs index 8e5da98936c..7a7b9abbc81 100644 --- a/Content.Server/ADT/AdditionalMapLoader/AdditionalMapLoaderSystem.cs +++ b/Content.Server/ADT/AdditionalMapLoader/AdditionalMapLoaderSystem.cs @@ -38,8 +38,7 @@ private void OnGetMaps(LoadingMapsEvent args) private void CreateAndInitializeMap(Maps.GameMapPrototype mapProto) { var map = _mapManager.CreateMap(); - _mapManager.AddUninitializedMap(map); - _gameTicker.LoadGameMap(mapProto, map, null); + _gameTicker.LoadGameMap(mapProto, out map, null); _mapManager.DoMapInitialize(map); } } diff --git a/Content.Server/ADT/Administration/Commands/SendERTCommand.cs b/Content.Server/ADT/Administration/Commands/SendERTCommand.cs index 3030fa12f43..79976c33ea8 100644 --- a/Content.Server/ADT/Administration/Commands/SendERTCommand.cs +++ b/Content.Server/ADT/Administration/Commands/SendERTCommand.cs @@ -6,17 +6,18 @@ using Content.Server.Station.Systems; using Content.Shared.Administration; using Content.Shared.Database; -using Robust.Server.GameObjects; -using Robust.Server.Maps; +using Robust.Shared.Map; using Robust.Server.Player; using Robust.Shared.Audio; using Robust.Shared.Console; -using Robust.Shared.Map; using Robust.Shared.Player; -using System.Numerics; using Content.Server.Chat.Managers; using Robust.Shared.ContentPack; using System.Threading.Tasks; +using Robust.Shared.Utility; + +using Robust.Shared.EntitySerialization; +using Robust.Shared.EntitySerialization.Systems; namespace Content.Server.ADT.Administration.Commands; @@ -125,7 +126,7 @@ public async void Execute(IConsoleShell shell, string argStr, string[] args) case "denial": audioPath = $"{defaultAudioPath}/noert.ogg"; isAnnounce = true; - isLoadGrid = false; + isLoadGrid = false; isSetAlertLevel = false; break; @@ -150,10 +151,8 @@ public async void Execute(IConsoleShell shell, string argStr, string[] args) var mapId = _mapManager.CreateMap(); _system.GetEntitySystem().SetEntityName(_mapManager.GetMapEntityId(mapId), Loc.GetString("sent-ert-map-name")); - var girdOptions = new MapLoadOptions(); - girdOptions.Offset = new Vector2(0, 0); - girdOptions.Rotation = Angle.FromDegrees(0); - _system.GetEntitySystem().Load(mapId, gridPath, girdOptions); + var opts = new DeserializationOptions {StoreYamlUids = true, InitializeMaps = true}; + _system.GetEntitySystem().TryLoadGrid(mapId, new ResPath(gridPath), out _, opts); shell.WriteLine($"Карта {gridPath} успешно загружена! :з"); _chat.SendAdminAlert($"Админ {player.Name} вызвал {args[0].ToLower()}. Карте 'Сектор патрулирования' было присовино ID: {mapId}. Точка телепортации для призраков появилась на шаттле."); } diff --git a/Content.Server/ADT/Administration/Systems/AdminTestArenaVariableSystem.cs b/Content.Server/ADT/Administration/Systems/AdminTestArenaVariableSystem.cs index c3c1f09cb05..f84deb0e9e7 100644 --- a/Content.Server/ADT/Administration/Systems/AdminTestArenaVariableSystem.cs +++ b/Content.Server/ADT/Administration/Systems/AdminTestArenaVariableSystem.cs @@ -1,8 +1,9 @@ -using Robust.Server.GameObjects; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Network; using Robust.Shared.Player; +using Robust.Shared.EntitySerialization.Systems; +using Robust.Shared.Utility; /* ADT Content by 🐾 Schrödinger's Code 🐾 @@ -15,7 +16,6 @@ ADT Content by 🐾 Schrödinger's Code 🐾 */ - namespace Content.Server.Administration.Systems; /// @@ -33,33 +33,32 @@ public sealed class AdminTestArenaVariableSystem : EntitySystem public (EntityUid Map, EntityUid? Grid) AssertArenaLoaded( ICommonSession admin, - string pachGridAdminRoom, + string pathGridAdminRoom, string prefixNameAdminRoom) { - if (ArenaMap.TryGetValue((admin.UserId, prefixNameAdminRoom), out var arenaMap) - && !Deleted(arenaMap) && !Terminating(arenaMap)) + var key = (admin.UserId, prefixNameAdminRoom); + + if (ArenaMap.TryGetValue(key, out var arenaMap) && !Deleted(arenaMap) && !Terminating(arenaMap)) { - if (ArenaGrid.TryGetValue((admin.UserId, prefixNameAdminRoom), out var arenaGrid) - && arenaGrid.HasValue && !Deleted(arenaGrid.Value) && !Terminating(arenaGrid.Value)) + if (ArenaGrid.TryGetValue(key, out var arenaGrid) && arenaGrid.HasValue && !Deleted(arenaGrid.Value) && !Terminating(arenaGrid.Value)) { return (arenaMap, arenaGrid); } else { - ArenaGrid[(admin.UserId, prefixNameAdminRoom)] = null; + ArenaGrid[key] = null; return (arenaMap, null); } } - var key = (admin.UserId, prefixNameAdminRoom); ArenaMap[key] = _mapManager.GetMapEntityId(_mapManager.CreateMap()); _metaDataSystem.SetEntityName(ArenaMap[key], $"{prefixNameAdminRoom}M-{admin.Name}"); - var grids = _map.LoadMap(Comp(ArenaMap[key]).MapId, pachGridAdminRoom); - if (grids.Count != 0) + if (_map.TryLoadGrid(Comp(ArenaMap[key]).MapId, new ResPath(pathGridAdminRoom), out var grids)) { - _metaDataSystem.SetEntityName(grids[0], $"{prefixNameAdminRoom}G-{admin.Name}"); - ArenaGrid[key] = grids[0]; + var firstGrid = grids.GetValueOrDefault(); + _metaDataSystem.SetEntityName(firstGrid, $"{prefixNameAdminRoom}G-{admin.Name}"); + ArenaGrid[key] = firstGrid; } else { diff --git a/Content.Server/ADT/GameTicking/Rules/PiratesRuleSystem.cs b/Content.Server/ADT/GameTicking/Rules/PiratesRuleSystem.cs index d5a9b698700..0819671ede0 100644 --- a/Content.Server/ADT/GameTicking/Rules/PiratesRuleSystem.cs +++ b/Content.Server/ADT/GameTicking/Rules/PiratesRuleSystem.cs @@ -1,11 +1,13 @@ using Content.Server.Cargo.Systems; using Content.Server.GameTicking.Rules.Components; using Content.Shared.Mind; -using Robust.Server.GameObjects; -using Robust.Server.Maps; using Robust.Shared.Map; using Robust.Shared.Utility; using Content.Shared.GameTicking.Components; +using Robust.Shared.EntitySerialization.Systems; +using Robust.Shared.EntitySerialization; +using System.Numerics; +using System.Linq; namespace Content.Server.GameTicking.Rules; @@ -31,11 +33,16 @@ protected override void Started(EntityUid uid, PiratesRuleComponent component, G base.Started(uid, component, gameRule, args); var shuttleMap = _mapManager.CreateMap(); - var options = new MapLoadOptions { LoadMap = true }; - if (!_map.TryLoad(shuttleMap, component.PiratesShuttlePath, out var shuttle, options)) + var opts = new DeserializationOptions { + StoreYamlUids = true, + InitializeMaps = true, + }; + + if (!_map.TryLoadGrid(shuttleMap, new ResPath(component.PiratesShuttlePath), out var shuttle, opts)) return; - component.PirateShip = shuttle[0]; + + component.PirateShip = shuttle.Value; component.InitialShipValue = _pricingSystem.AppraiseGrid(component.PirateShip, uid => { diff --git a/Content.Server/ADT/Ghostbar/Systems/GhostBarSystem.cs b/Content.Server/ADT/Ghostbar/Systems/GhostBarSystem.cs index ca01d33b7fb..7223fc24108 100644 --- a/Content.Server/ADT/Ghostbar/Systems/GhostBarSystem.cs +++ b/Content.Server/ADT/Ghostbar/Systems/GhostBarSystem.cs @@ -1,10 +1,8 @@ -using Robust.Server.GameObjects; using Content.Server.GameTicking; using Content.Server.GameTicking.Events; using Content.Server.Station.Systems; using Robust.Shared.Map; using Robust.Shared.Prototypes; -using Robust.Server.Maps; using Robust.Shared.Random; using Content.Shared.Ghost; using Content.Server.ADT.Ghostbar.Components; @@ -17,10 +15,11 @@ using Content.Shared.Weather; using Content.Shared.Stealth.Components; using Content.Server.Stealth; -using Content.Server.Popups; -using Content.Shared.NameModifier.EntitySystems; +using Robust.Shared.EntitySerialization.Systems; +using Robust.Shared.EntitySerialization; +using Robust.Shared.Map.Components; using System.Linq; -using Robust.Shared.Player; +using Robust.Shared.Utility; namespace Content.Server.ADT.Ghostbar; @@ -45,22 +44,31 @@ public override void Initialize() SubscribeNetworkEvent(SpawnPlayer); } + private void OnRoundStart(RoundStartingEvent ev) { - _mapSystem.CreateMap(out var mapId); - var options = new MapLoadOptions { LoadMap = true }; + // _mapSystem.CreateMap(out var mapId); + var opts = new DeserializationOptions + { + StoreYamlUids = true, + InitializeMaps = true, + }; var mapList = _prototypeManager.EnumeratePrototypes().ToList(); GhostBarMap = _random.Pick(mapList); if (GhostBarMap == null) return; - if (!_mapLoader.TryLoad(mapId, GhostBarMap.Path, out _, options)) + if (!_mapLoader.TryLoadMap(new ResPath(GhostBarMap.Path), out var mapId, out _, opts)) return; - _mapSystem.SetPaused(mapId, false); + if (!TryComp(mapId, out var mapComponent)) + return; + + _mapSystem.SetPaused(mapComponent.MapId, false); + if (GhostBarMap.Weather.HasValue) - _weathersystem.SetWeather(mapId, _prototypeManager.Index(GhostBarMap.Weather.Value), null); + _weathersystem.SetWeather(mapComponent.MapId, _prototypeManager.Index(GhostBarMap.Weather.Value), null); } private void OnPlayerGhosted(EntityUid uid, GhostBarPlayerComponent component, MindRemovedMessage args) diff --git a/Content.Server/ADT/Planet/PlanetSystem.cs b/Content.Server/ADT/Planet/PlanetSystem.cs index 931b4bde16d..c1ee0be1d6b 100644 --- a/Content.Server/ADT/Planet/PlanetSystem.cs +++ b/Content.Server/ADT/Planet/PlanetSystem.cs @@ -6,6 +6,12 @@ using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Prototypes; +using Robust.Shared.EntitySerialization.Systems; +using Robust.Shared.EntitySerialization; +using System.Numerics; +using System.Linq; +using Robust.Shared.Utility; +using Robust.Shared.Toolshed.Commands.Values; namespace Content.Server.ADT.Planet; @@ -17,6 +23,7 @@ public sealed class PlanetSystem : EntitySystem [Dependency] private readonly MapLoaderSystem _mapLoader = default!; [Dependency] private readonly MetaDataSystem _meta = default!; [Dependency] private readonly AtmosphereSystem _atmos = default!; + [Dependency] private readonly IMapManager _mapManager = default!; private List<(Vector2i, Tile)> _setTiles = new(); @@ -55,20 +62,24 @@ public EntityUid SpawnPlanet(ProtoId id, bool runMapInit = true { var map = SpawnPlanet(id, runMapInit: false); var mapId = Comp(map).MapId; - if (!_mapLoader.TryLoad(mapId, path, out var grids)) + + if (!_mapLoader.TryLoadGrid(mapId, new ResPath(path), out var grids)) { Log.Error($"Failed to load planet grid {path} for planet {id}!"); - Del(map); return null; } - // don't want rocks spawning inside the base - foreach (var gridUid in grids) + if (grids.HasValue) { + var gridUid = grids.Value; _setTiles.Clear(); var aabb = Comp(gridUid).LocalAABB; _biome.ReserveTiles(map, aabb.Enlarged(0.2f), _setTiles); } + else + { + Log.Error("Grid not found for this map."); + } _map.InitializeMap(map); return map; diff --git a/Content.Server/Administration/Commands/ChangeCvarCommand.cs b/Content.Server/Administration/Commands/ChangeCvarCommand.cs new file mode 100644 index 00000000000..984c9c1077a --- /dev/null +++ b/Content.Server/Administration/Commands/ChangeCvarCommand.cs @@ -0,0 +1,215 @@ +using System.Linq; +using Content.Server.Administration.Logs; +using Content.Server.Administration.Managers; +using Content.Shared.Administration; +using Content.Shared.Database; +using Robust.Shared.Configuration; +using Robust.Shared.Console; + +namespace Content.Server.Administration.Commands; + +/// +/// Allows admins to change certain CVars. This is different than the "cvar" command which is host only and can change any CVar. +/// +/// +/// Possible todo for future, store default values for cvars, and allow resetting to default. +/// +[AnyCommand] +public sealed class ChangeCvarCommand : IConsoleCommand +{ + [Dependency] private readonly IConfigurationManager _configurationManager = default!; + [Dependency] private readonly IAdminLogManager _adminLogManager = default!; + [Dependency] private readonly CVarControlManager _cVarControlManager = default!; + + /// + /// Searches the list of cvars for a cvar that matches the search string. + /// + private void SearchCVars(IConsoleShell shell, string argStr, string[] args) + { + if (args.Length < 2) + { + shell.WriteLine(Loc.GetString("cmd-changecvar-search-no-arguments")); + return; + } + + var cvars = _cVarControlManager.GetAllRunnableCvars(shell); + + var matches = cvars + .Where(c => + c.Name.Contains(args[1], StringComparison.OrdinalIgnoreCase) + || c.ShortHelp?.Contains(args[1], StringComparison.OrdinalIgnoreCase) == true + || c.LongHelp?.Contains(args[1], StringComparison.OrdinalIgnoreCase) == true + ) // Might be very slow and stupid, but eh. + .ToList(); + + if (matches.Count == 0) + { + shell.WriteLine(Loc.GetString("cmd-changecvar-search-no-matches")); + return; + } + + shell.WriteLine(Loc.GetString("cmd-changecvar-search-matches", ("count", matches.Count))); + shell.WriteLine(string.Join("\n", matches.Select(FormatCVarFullHelp))); + } + + /// + /// Formats a CVar into a string for display. + /// + private string FormatCVarFullHelp(ChangableCVar cvar) + { + if (cvar.LongHelp != null && cvar.ShortHelp != null) + { + return $"{cvar.Name} - {cvar.LongHelp}"; + } + + // There is no help, no one is coming. We are all doomed. + return cvar.Name; + } + + public string Command => "changecvar"; + public string Description { get; } = Loc.GetString("cmd-changecvar-desc"); + public string Help { get; } = Loc.GetString("cmd-changecvar-help"); + public void Execute(IConsoleShell shell, string argStr, string[] args) + { + if (args.Length == 0) + { + shell.WriteLine(Loc.GetString("cmd-changecvar-no-arguments")); + return; + } + + var cvars = _cVarControlManager.GetAllRunnableCvars(shell); + + var cvar = args[0]; + if (cvar == "?") + { + if (cvars.Count == 0) + { + shell.WriteLine(Loc.GetString("cmd-changecvar-no-cvars")); + return; + } + + shell.WriteLine(Loc.GetString("cmd-changecvar-available-cvars")); + shell.WriteLine(string.Join("\n", cvars.Select(FormatCVarFullHelp))); + return; + } + + if (cvar == "search") + { + SearchCVars(shell, argStr, args); + return; + } + + if (!_configurationManager.IsCVarRegistered(cvar)) // Might be a redunat check with the if statement below. + { + shell.WriteLine(Loc.GetString("cmd-changecvar-cvar-not-registered", ("cvar", cvar))); + return; + } + + if (cvars.All(c => c.Name != cvar)) + { + shell.WriteLine(Loc.GetString("cmd-changecvar-cvar-not-allowed")); + return; + } + + if (args.Length == 1) + { + var value = _configurationManager.GetCVar(cvar); + shell.WriteLine(value.ToString()!); + } + else + { + var value = args[1]; + var type = _configurationManager.GetCVarType(cvar); + try + { + var parsed = CVarCommandUtil.ParseObject(type, value); + // Value check, is it in the min/max range? + var control = _cVarControlManager.GetCVar(cvar)!.Control; // Null check is done above. + var allowed = true; + if (control is { Min: not null, Max: not null }) + { + switch (parsed) // This looks bad, and im not sorry. + { + case int intVal: + { + if (intVal < (int)control.Min || intVal > (int)control.Max) + { + allowed = false; + } + + break; + } + case float floatVal: + { + if (floatVal < (float)control.Min || floatVal > (float)control.Max) + { + allowed = false; + } + + break; + } + case long longVal: + { + if (longVal < (long)control.Min || longVal > (long)control.Max) + { + allowed = false; + } + + break; + } + case ushort ushortVal: + { + if (ushortVal < (ushort)control.Min || ushortVal > (ushort)control.Max) + { + allowed = false; + } + + break; + } + } + } + + if (!allowed) + { + shell.WriteError(Loc.GetString("cmd-changecvar-value-out-of-range", + ("min", control.Min ?? "-∞"), + ("max", control.Max ?? "∞"))); + return; + } + + var oldValue = _configurationManager.GetCVar(cvar); + _configurationManager.SetCVar(cvar, parsed); + _adminLogManager.Add(LogType.AdminCommands, + LogImpact.High, + $"{shell.Player!.Name} ({shell.Player!.UserId}) changed CVAR {cvar} from {oldValue.ToString()} to {parsed.ToString()}" + ); + + shell.WriteLine(Loc.GetString("cmd-changecvar-success", ("cvar", cvar), ("old", oldValue), ("value", parsed))); + } + catch (FormatException) + { + shell.WriteError(Loc.GetString("cmd-cvar-parse-error", ("type", type))); + } + } + } + + public CompletionResult GetCompletion(IConsoleShell shell, string[] args) + { + var cvars = _cVarControlManager.GetAllRunnableCvars(shell); + + if (args.Length == 1) + { + return CompletionResult.FromHintOptions( + cvars + .Select(c => new CompletionOption(c.Name, c.ShortHelp ?? c.Name)), + Loc.GetString("cmd-changecvar-arg-name")); + } + + var cvar = args[0]; + if (!_configurationManager.IsCVarRegistered(cvar)) + return CompletionResult.Empty; + + var type = _configurationManager.GetCVarType(cvar); + return CompletionResult.FromHint($"<{type.Name}>"); + } +} diff --git a/Content.Server/Administration/Commands/LoadGameMapCommand.cs b/Content.Server/Administration/Commands/LoadGameMapCommand.cs index ea31c1ecb17..034b50a9c5e 100644 --- a/Content.Server/Administration/Commands/LoadGameMapCommand.cs +++ b/Content.Server/Administration/Commands/LoadGameMapCommand.cs @@ -1,11 +1,9 @@ -using System.Linq; using System.Numerics; using Content.Server.GameTicking; using Content.Server.Maps; using Content.Shared.Administration; -using Robust.Server.Maps; using Robust.Shared.Console; -using Robust.Shared.ContentPack; +using Robust.Shared.EntitySerialization; using Robust.Shared.Map; using Robust.Shared.Prototypes; @@ -25,6 +23,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) var prototypeManager = IoCManager.Resolve(); var entityManager = IoCManager.Resolve(); var gameTicker = entityManager.EntitySysManager.GetEntitySystem(); + var mapSys = entityManager.EntitySysManager.GetEntitySystem(); if (args.Length is not (2 or 4 or 5)) { @@ -32,29 +31,28 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (prototypeManager.TryIndex(args[1], out var gameMap)) + if (!prototypeManager.TryIndex(args[1], out var gameMap)) { - if (!int.TryParse(args[0], out var mapId)) + shell.WriteError($"The given map prototype {args[0]} is invalid."); + return; + } + + if (!int.TryParse(args[0], out var mapId)) return; - var loadOptions = new MapLoadOptions() - { - LoadMap = false, - }; + var stationName = args.Length == 5 ? args[4] : null; - var stationName = args.Length == 5 ? args[4] : null; + Vector2? offset = null; + if (args.Length >= 4) + offset = new Vector2(int.Parse(args[2]), int.Parse(args[3])); - if (args.Length >= 4 && int.TryParse(args[2], out var x) && int.TryParse(args[3], out var y)) - { - loadOptions.Offset = new Vector2(x, y); - } - var grids = gameTicker.LoadGameMap(gameMap, new MapId(mapId), loadOptions, stationName); - shell.WriteLine($"Loaded {grids.Count} grids."); - } - else - { - shell.WriteError($"The given map prototype {args[0]} is invalid."); - } + var id = new MapId(mapId); + + var grids = mapSys.MapExists(id) + ? gameTicker.MergeGameMap(gameMap, id, stationName: stationName, offset: offset) + : gameTicker.LoadGameMapWithId(gameMap, id, stationName: stationName, offset: offset); + + shell.WriteLine($"Loaded {grids.Count} grids."); } public CompletionResult GetCompletion(IConsoleShell shell, string[] args) diff --git a/Content.Server/Administration/Commands/PersistenceSaveCommand.cs b/Content.Server/Administration/Commands/PersistenceSaveCommand.cs index 7ef1932c568..cae507f6d8e 100644 --- a/Content.Server/Administration/Commands/PersistenceSaveCommand.cs +++ b/Content.Server/Administration/Commands/PersistenceSaveCommand.cs @@ -1,10 +1,10 @@ using Content.Shared.Administration; using Content.Shared.CCVar; -using Robust.Server.GameObjects; using Robust.Shared.Configuration; using Robust.Shared.Console; using Robust.Shared.Map; -using System.Linq; +using Robust.Shared.EntitySerialization.Systems; +using Robust.Shared.Utility; namespace Content.Server.Administration.Commands; @@ -48,7 +48,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } var mapLoader = _system.GetEntitySystem(); - mapLoader.SaveMap(mapId, saveFilePath); + mapLoader.TrySaveMap(mapId, new ResPath(saveFilePath)); shell.WriteLine(Loc.GetString("cmd-savemap-success")); } } diff --git a/Content.Server/Administration/Managers/CVarControlManager.cs b/Content.Server/Administration/Managers/CVarControlManager.cs new file mode 100644 index 00000000000..4d151905513 --- /dev/null +++ b/Content.Server/Administration/Managers/CVarControlManager.cs @@ -0,0 +1,125 @@ +using System.Linq; +using System.Reflection; +using Content.Shared.CCVar.CVarAccess; +using Robust.Shared.Configuration; +using Robust.Shared.Console; +using Robust.Shared.Player; +using Robust.Shared.Reflection; + +namespace Content.Server.Administration.Managers; + +/// +/// Manages the control of CVars via the attribute. +/// +public sealed class CVarControlManager : IPostInjectInit +{ + [Dependency] private readonly IReflectionManager _reflectionManager = default!; + [Dependency] private readonly IAdminManager _adminManager = default!; + [Dependency] private readonly ILocalizationManager _localizationManager = default!; + [Dependency] private readonly ILogManager _logger = default!; + + private readonly List _changableCvars = new(); + private ISawmill _sawmill = default!; + + void IPostInjectInit.PostInject() + { + _sawmill = _logger.GetSawmill("cvarcontrol"); + } + + public void Initialize() + { + RegisterCVars(); + } + + private void RegisterCVars() + { + if (_changableCvars.Count != 0) + { + _sawmill.Warning("CVars already registered, overwriting."); + _changableCvars.Clear(); + } + + var validCvarsDefs = _reflectionManager.FindTypesWithAttribute(); + + foreach (var type in validCvarsDefs) + { + foreach (var field in type.GetFields(BindingFlags.Public | BindingFlags.Static | BindingFlags.FlattenHierarchy)) + { + var allowed = field.GetCustomAttribute(); + if (allowed == null) + { + continue; + } + + var cvarDef = (CVarDef)field.GetValue(null)!; + _changableCvars.Add(new ChangableCVar(cvarDef.Name, allowed, _localizationManager)); + } + } + + _sawmill.Info($"Registered {_changableCvars.Count} CVars."); + } + + /// + /// Gets all CVars that the player can change. + /// + public List GetAllRunnableCvars(IConsoleShell shell) + { + // Not a player, running as server. We COULD return all cvars, + // but a check later down the line will prevent it from anyways. Use the "cvar" command instead. + if (shell.Player == null) + return []; + + return GetAllRunnableCvars(shell.Player); + } + + public List GetAllRunnableCvars(ICommonSession session) + { + var adminData = _adminManager.GetAdminData(session); + if (adminData == null) + return []; // Not an admin + + return _changableCvars + .Where(cvar => adminData.HasFlag(cvar.Control.AdminFlags)) + .ToList(); + } + + public ChangableCVar? GetCVar(string name) + { + return _changableCvars.FirstOrDefault(cvar => cvar.Name == name); + } +} + +public sealed class ChangableCVar +{ + private const string LocPrefix = "changecvar"; + + public string Name { get; } + + // Holding a reference to the attribute might be skrunkly? Not sure how much mem it eats up. + public CVarControl Control { get; } + + public string? ShortHelp; + public string? LongHelp; + + public ChangableCVar(string name, CVarControl control, ILocalizationManager loc) + { + Name = name; + Control = control; + + if (loc.TryGetString($"{LocPrefix}-simple-{name.Replace('.', '_')}", out var simple)) + { + ShortHelp = simple; + } + + if (loc.TryGetString($"{LocPrefix}-full-{name.Replace('.', '_')}", out var longHelp)) + { + LongHelp = longHelp; + } + + // If one is set and the other is not, we throw + if (ShortHelp == null && LongHelp != null || ShortHelp != null && LongHelp == null) + { + throw new InvalidOperationException("Short and long help must both be set or both be null."); + } + } +} diff --git a/Content.Server/Administration/Systems/AdminTestArenaSystem.cs b/Content.Server/Administration/Systems/AdminTestArenaSystem.cs index e3671bcdfb3..12bf0eba648 100644 --- a/Content.Server/Administration/Systems/AdminTestArenaSystem.cs +++ b/Content.Server/Administration/Systems/AdminTestArenaSystem.cs @@ -1,8 +1,7 @@ -using Robust.Server.GameObjects; -using Robust.Shared.Map; -using Robust.Shared.Map.Components; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Network; using Robust.Shared.Player; +using Robust.Shared.Utility; namespace Content.Server.Administration.Systems; @@ -11,8 +10,7 @@ namespace Content.Server.Administration.Systems; /// public sealed class AdminTestArenaSystem : EntitySystem { - [Dependency] private readonly IMapManager _mapManager = default!; - [Dependency] private readonly MapLoaderSystem _map = default!; + [Dependency] private readonly MapLoaderSystem _loader = default!; [Dependency] private readonly MetaDataSystem _metaDataSystem = default!; public const string ArenaMapPath = "/Maps/Test/admin_test_arena.yml"; @@ -28,26 +26,24 @@ public sealed class AdminTestArenaSystem : EntitySystem { return (arenaMap, arenaGrid); } - else - { - ArenaGrid[admin.UserId] = null; - return (arenaMap, null); - } - } - ArenaMap[admin.UserId] = _mapManager.GetMapEntityId(_mapManager.CreateMap()); - _metaDataSystem.SetEntityName(ArenaMap[admin.UserId], $"ATAM-{admin.Name}"); - var grids = _map.LoadMap(Comp(ArenaMap[admin.UserId]).MapId, ArenaMapPath); - if (grids.Count != 0) - { - _metaDataSystem.SetEntityName(grids[0], $"ATAG-{admin.Name}"); - ArenaGrid[admin.UserId] = grids[0]; - } - else - { + ArenaGrid[admin.UserId] = null; + return (arenaMap, null); } - return (ArenaMap[admin.UserId], ArenaGrid[admin.UserId]); + var path = new ResPath(ArenaMapPath); + if (!_loader.TryLoadMap(path, out var map, out var grids)) + throw new Exception($"Failed to load admin arena"); + + ArenaMap[admin.UserId] = map.Value.Owner; + _metaDataSystem.SetEntityName(map.Value.Owner, $"ATAM-{admin.Name}"); + + var grid = grids.FirstOrNull(); + ArenaGrid[admin.UserId] = grid?.Owner; + if (grid != null) + _metaDataSystem.SetEntityName(grid.Value.Owner, $"ATAG-{admin.Name}"); + + return (map.Value.Owner, grid?.Owner); } } diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs index 57a312c3045..08e86ff400d 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs @@ -137,7 +137,7 @@ private void AddSmiteVerbs(GetVerbsEvent args) var board = Spawn("ChessBoard", xform.Coordinates); var session = _tabletopSystem.EnsureSession(Comp(board)); xform.Coordinates = EntityCoordinates.FromMap(_mapManager, session.Position); - xform.WorldRotation = Angle.Zero; + _transformSystem.SetWorldRotationNoLerp((args.Target, xform), Angle.Zero); }, Impact = LogImpact.Extreme, Message = string.Join(": ", chessName, Loc.GetString("admin-smite-chess-dimension-description")) diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.cs b/Content.Server/Administration/Systems/AdminVerbSystem.cs index 891a71675ea..b77da8706ea 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.cs @@ -109,7 +109,7 @@ private void AddAdminVerbs(GetVerbsEvent args) mark.Text = Loc.GetString("toolshed-verb-mark"); mark.Message = Loc.GetString("toolshed-verb-mark-description"); mark.Category = VerbCategory.Admin; - mark.Act = () => _toolshed.InvokeCommand(player, "=> $marked", Enumerable.Repeat(args.Target, 1), out _); + mark.Act = () => _toolshed.InvokeCommand(player, "=> $marked", new List {args.Target}, out _); mark.Impact = LogImpact.Low; args.Verbs.Add(mark); @@ -374,7 +374,7 @@ private void AddAdminVerbs(GetVerbsEvent args) } - if (lawBoundComponent != null && target != null) + if (lawBoundComponent != null && target != null && _adminManager.HasAdminFlag(player, AdminFlags.Moderator)) { args.Verbs.Add(new Verb() { diff --git a/Content.Server/Administration/Toolshed/MarkedCommand.cs b/Content.Server/Administration/Toolshed/MarkedCommand.cs index 54d45a352de..c2b9ecf79a0 100644 --- a/Content.Server/Administration/Toolshed/MarkedCommand.cs +++ b/Content.Server/Administration/Toolshed/MarkedCommand.cs @@ -9,8 +9,7 @@ public sealed class MarkedCommand : ToolshedCommand [CommandImplementation] public IEnumerable Marked(IInvocationContext ctx) { - var res = (IEnumerable?)ctx.ReadVar("marked"); - res ??= Array.Empty(); - return res; + var marked = ctx.ReadVar("marked") as IEnumerable; + return marked ?? Array.Empty(); } } diff --git a/Content.Server/Announcements/AnnounceCommand.cs b/Content.Server/Announcements/AnnounceCommand.cs index 3249fcc95d2..55a0498aa05 100644 --- a/Content.Server/Announcements/AnnounceCommand.cs +++ b/Content.Server/Announcements/AnnounceCommand.cs @@ -1,38 +1,79 @@ using Content.Server.Administration; -using Content.Server.Chat; using Content.Server.Chat.Systems; using Content.Shared.Administration; +using Robust.Shared.Audio; using Robust.Shared.Console; +using Robust.Shared.ContentPack; +using Robust.Shared.Prototypes; -namespace Content.Server.Announcements +namespace Content.Server.Announcements; + +[AdminCommand(AdminFlags.Moderator)] +public sealed class AnnounceCommand : LocalizedEntityCommands { - [AdminCommand(AdminFlags.Moderator)] - public sealed class AnnounceCommand : IConsoleCommand + [Dependency] private readonly ChatSystem _chat = default!; + [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly IResourceManager _res = default!; + + public override string Command => "announce"; + public override string Description => Loc.GetString("cmd-announce-desc"); + public override string Help => Loc.GetString("cmd-announce-help", ("command", Command)); + + public override void Execute(IConsoleShell shell, string argStr, string[] args) { - public string Command => "announce"; - public string Description => "Send an in-game announcement."; - public string Help => $"{Command} or {Command} to send announcement as CentCom."; - public void Execute(IConsoleShell shell, string argStr, string[] args) + switch (args.Length) { - var chat = IoCManager.Resolve().GetEntitySystem(); - - if (args.Length == 0) - { - shell.WriteError("Not enough arguments! Need at least 1."); + case 0: + shell.WriteError(Loc.GetString("shell-need-minimum-one-argument")); return; - } + case > 4: + shell.WriteError(Loc.GetString("shell-wrong-arguments-number")); + return; + } + + var message = args[0]; + var sender = Loc.GetString("cmd-announce-sender"); + var color = Color.Gold; + var sound = new SoundPathSpecifier("/Audio/Announcements/announce.ogg"); - if (args.Length == 1) + // Optional sender argument + if (args.Length >= 2) + sender = args[1]; + + // Optional color argument + if (args.Length >= 3) + { + try { - chat.DispatchGlobalAnnouncement(args[0], colorOverride: Color.Gold); + color = Color.FromHex(args[2]); } - else + catch { - // Explicit IEnumerable due to overload ambiguity on .NET 9 - var message = string.Join(' ', (IEnumerable)new ArraySegment(args, 1, args.Length-1)); - chat.DispatchGlobalAnnouncement(message, args[0], colorOverride: Color.Gold); + shell.WriteError(Loc.GetString("shell-invalid-color-hex")); + return; } - shell.WriteLine("Sent!"); } + + // Optional sound argument + if (args.Length >= 4) + sound = new SoundPathSpecifier(args[3]); + + _chat.DispatchGlobalAnnouncement(message, sender, true, sound, color); + shell.WriteLine(Loc.GetString("shell-command-success")); + } + + public override CompletionResult GetCompletion(IConsoleShell shell, string[] args) + { + return args.Length switch + { + 1 => CompletionResult.FromHint(Loc.GetString("cmd-announce-arg-message")), + 2 => CompletionResult.FromHint(Loc.GetString("cmd-announce-arg-sender")), + 3 => CompletionResult.FromHint(Loc.GetString("cmd-announce-arg-color")), + 4 => CompletionResult.FromHintOptions( + CompletionHelper.AudioFilePath(args[3], _proto, _res), + Loc.GetString("cmd-announce-arg-sound") + ), + _ => CompletionResult.Empty + }; } } diff --git a/Content.Server/Anomaly/Effects/InnerBodyAnomalySystem.cs b/Content.Server/Anomaly/Effects/InnerBodyAnomalySystem.cs index b75be376383..5380a1aa0a1 100644 --- a/Content.Server/Anomaly/Effects/InnerBodyAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/InnerBodyAnomalySystem.cs @@ -4,7 +4,6 @@ using Content.Server.Jittering; using Content.Server.Mind; using Content.Server.Stunnable; -using Content.Shared.Actions; using Content.Shared.Anomaly; using Content.Shared.Anomaly.Components; using Content.Shared.Anomaly.Effects; @@ -24,8 +23,6 @@ public sealed class InnerBodyAnomalySystem : SharedInnerBodyAnomalySystem { [Dependency] private readonly IAdminLogManager _adminLog = default!; [Dependency] private readonly AnomalySystem _anomaly = default!; - [Dependency] private readonly ActionContainerSystem _actionContainer = default!; - [Dependency] private readonly SharedActionsSystem _actions = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly BodySystem _body = default!; [Dependency] private readonly IChatManager _chat = default!; diff --git a/Content.Server/Antag/AntagSelectionSystem.API.cs b/Content.Server/Antag/AntagSelectionSystem.API.cs index bbb38f01558..fe7bdcd1682 100644 --- a/Content.Server/Antag/AntagSelectionSystem.API.cs +++ b/Content.Server/Antag/AntagSelectionSystem.API.cs @@ -19,11 +19,12 @@ public sealed partial class AntagSelectionSystem /// Tries to get the next non-filled definition based on the current amount of selected minds and other factors. /// public bool TryGetNextAvailableDefinition(Entity ent, - [NotNullWhen(true)] out AntagSelectionDefinition? definition) + [NotNullWhen(true)] out AntagSelectionDefinition? definition, + int? players = null) { definition = null; - var totalTargetCount = GetTargetAntagCount(ent); + var totalTargetCount = GetTargetAntagCount(ent, players); var mindCount = ent.Comp.SelectedMinds.Count; if (mindCount >= totalTargetCount) return false; diff --git a/Content.Server/Antag/AntagSelectionSystem.cs b/Content.Server/Antag/AntagSelectionSystem.cs index 45daa7a312f..ce7f3fec4c6 100644 --- a/Content.Server/Antag/AntagSelectionSystem.cs +++ b/Content.Server/Antag/AntagSelectionSystem.cs @@ -144,7 +144,10 @@ private void OnSpawnComplete(PlayerSpawnCompleteEvent args) DebugTools.AssertEqual(antag.SelectionTime, AntagSelectionTime.PostPlayerSpawn); - if (!TryGetNextAvailableDefinition((uid, antag), out var def)) + // do not count players in the lobby for the antag ratio + var players = _playerManager.NetworkedSessions.Count(x => x.AttachedEntity != null); + + if (!TryGetNextAvailableDefinition((uid, antag), out var def, players)) continue; if (TryMakeAntag((uid, antag), args.Player, def.Value)) diff --git a/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs b/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs index 2d35ae59731..6e3a11b5f93 100644 --- a/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs +++ b/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs @@ -10,10 +10,8 @@ using Content.Shared.Atmos.Monitor.Components; using Content.Shared.DeviceNetwork.Components; using Content.Shared.Pinpointer; -using Content.Shared.Tag; using Robust.Server.GameObjects; using Robust.Shared.Map.Components; -using Robust.Shared.Timing; using System.Diagnostics.CodeAnalysis; using System.Linq; @@ -25,11 +23,9 @@ public sealed class AtmosAlertsComputerSystem : SharedAtmosAlertsComputerSystem [Dependency] private readonly AirAlarmSystem _airAlarmSystem = default!; [Dependency] private readonly AtmosDeviceNetworkSystem _atmosDevNet = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly TagSystem _tagSystem = default!; [Dependency] private readonly MapSystem _mapSystem = default!; [Dependency] private readonly TransformSystem _transformSystem = default!; [Dependency] private readonly NavMapSystem _navMapSystem = default!; - [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly DeviceListSystem _deviceListSystem = default!; private const float UpdateTime = 1.0f; @@ -54,7 +50,7 @@ public override void Initialize() SubscribeLocalEvent(OnDeviceAnchorChanged); } - #region Event handling + #region Event handling private void OnConsoleInit(EntityUid uid, AtmosAlertsComputerComponent component, ComponentInit args) { diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs index b790493c448..d728ba91644 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs @@ -61,9 +61,9 @@ private void FixGridAtmosCommand(IConsoleShell shell, string argstr, string[] ar mixtures[5].Temperature = 5000f; // 6: (Walk-In) Freezer - mixtures[6].AdjustMoles(Gas.Oxygen, Atmospherics.OxygenMolesStandard); - mixtures[6].AdjustMoles(Gas.Nitrogen, Atmospherics.NitrogenMolesStandard); - mixtures[6].Temperature = 235f; // Little colder than an actual freezer but gives a grace period to get e.g. themomachines set up, should keep warm for a few door openings + mixtures[6].AdjustMoles(Gas.Oxygen, Atmospherics.OxygenMolesFreezer); + mixtures[6].AdjustMoles(Gas.Nitrogen, Atmospherics.NitrogenMolesFreezer); + mixtures[6].Temperature = Atmospherics.FreezerTemp; // Little colder than an actual freezer but gives a grace period to get e.g. themomachines set up, should keep warm for a few door openings // 7: Nitrogen (101kpa) for vox rooms mixtures[7].AdjustMoles(Gas.Nitrogen, Atmospherics.MolesCellStandard); diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.HighPressureDelta.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.HighPressureDelta.cs index 0b43c924149..6a5b07bb17a 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.HighPressureDelta.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.HighPressureDelta.cs @@ -118,7 +118,7 @@ private void HighPressureMovements(Entity gridAtmospher return; // Used by ExperiencePressureDifference to correct push/throw directions from tile-relative to physics world. - var gridWorldRotation = xforms.GetComponent(gridAtmosphere).WorldRotation; + var gridWorldRotation = _transformSystem.GetWorldRotation(gridAtmosphere); // If we're using monstermos, smooth out the yeet direction to follow the flow if (MonstermosEqualization) diff --git a/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs b/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs index 81f0b96d025..cc541e35e9a 100644 --- a/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs @@ -76,14 +76,13 @@ private void OnAfterInteract(Entity entity, ref AfterInter /// private void OnUseInHand(Entity entity, ref UseInHandEvent args) { + // Not checking for Handled because ActivatableUISystem already marks it as such. + if (!entity.Comp.Enabled) - { ActivateAnalyzer(entity, args.User); - } else - { DisableAnalyzer(entity, args.User); - } + args.Handled = true; } diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs index 07a0c9ae73e..e608dab80e6 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs +++ b/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs @@ -11,8 +11,12 @@ namespace Content.Server.Atmos.Piping.Unary.Components [RegisterComponent] public sealed partial class GasVentPumpComponent : Component { + /// + /// Identifies if the device is enabled by an air alarm. Does not indicate if the device is powered. + /// By default, all air vents start enabled, whether linked to an alarm or not. + /// [ViewVariables(VVAccess.ReadWrite)] - public bool Enabled { get; set; } = false; + public bool Enabled { get; set; } = true; [ViewVariables] public bool IsDirty { get; set; } = false; diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs index b2143283f73..4a9437bc1fc 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs +++ b/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs @@ -9,8 +9,12 @@ namespace Content.Server.Atmos.Piping.Unary.Components [Access(typeof(GasVentScrubberSystem))] public sealed partial class GasVentScrubberComponent : Component { + /// + /// Identifies if the device is enabled by an air alarm. Does not indicate if the device is powered. + /// By default, all air scrubbers start enabled, whether linked to an alarm or not. + /// [DataField] - public bool Enabled { get; set; } = false; + public bool Enabled { get; set; } = true; [DataField] public bool IsDirty { get; set; } = false; diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs index c58d6eb14bc..93f7dcf1110 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs @@ -9,6 +9,8 @@ using Content.Server.DeviceNetwork.Systems; using Content.Server.NodeContainer.EntitySystems; using Content.Server.NodeContainer.Nodes; +using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; using Content.Shared.Administration.Logs; using Content.Shared.Atmos; using Content.Shared.Atmos.Monitor; @@ -43,6 +45,7 @@ public sealed class GasVentPumpSystem : EntitySystem [Dependency] private readonly SharedToolSystem _toolSystem = default!; [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly PowerReceiverSystem _powerReceiverSystem = default!; public override void Initialize() { base.Initialize(); @@ -66,9 +69,10 @@ private void OnGasVentPumpUpdated(EntityUid uid, GasVentPumpComponent vent, ref { //Bingo waz here if (_weldable.IsWelded(uid)) - { return; - } + + if (!_powerReceiverSystem.IsPowered(uid)) + return; var nodeName = vent.PumpDirection switch { @@ -210,7 +214,6 @@ private void OnAtmosAlarm(EntityUid uid, GasVentPumpComponent component, AtmosAl private void OnPowerChanged(EntityUid uid, GasVentPumpComponent component, ref PowerChangedEvent args) { - component.Enabled = args.Powered; UpdateState(uid, component); } @@ -318,7 +321,7 @@ private void UpdateState(EntityUid uid, GasVentPumpComponent vent, AppearanceCom _ambientSoundSystem.SetAmbience(uid, false); _appearance.SetData(uid, VentPumpVisuals.State, VentPumpState.Welded, appearance); } - else if (!vent.Enabled) + else if (!_powerReceiverSystem.IsPowered(uid) || !vent.Enabled) { _ambientSoundSystem.SetAmbience(uid, false); _appearance.SetData(uid, VentPumpVisuals.State, VentPumpState.Off, appearance); diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs index 02075353981..38d75701d73 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentScrubberSystem.cs @@ -10,6 +10,7 @@ using Content.Server.NodeContainer.EntitySystems; using Content.Server.NodeContainer.Nodes; using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; using Content.Shared.Administration.Logs; using Content.Shared.Atmos; using Content.Shared.Atmos.Piping.Unary.Visuals; @@ -37,6 +38,7 @@ public sealed class GasVentScrubberSystem : EntitySystem [Dependency] private readonly TransformSystem _transformSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly WeldableSystem _weldable = default!; + [Dependency] private readonly PowerReceiverSystem _powerReceiverSystem = default!; public override void Initialize() { @@ -58,6 +60,9 @@ private void OnVentScrubberUpdated(EntityUid uid, GasVentScrubberComponent scrub var timeDelta = args.dt; + if (!_powerReceiverSystem.IsPowered(uid)) + return; + if (!scrubber.Enabled || !_nodeContainer.TryGetNode(uid, scrubber.OutletName, out PipeNode? outlet)) return; @@ -141,7 +146,6 @@ private void OnAtmosAlarm(EntityUid uid, GasVentScrubberComponent component, Atm private void OnPowerChanged(EntityUid uid, GasVentScrubberComponent component, ref PowerChangedEvent args) { - component.Enabled = args.Powered; UpdateState(uid, component); } @@ -225,7 +229,7 @@ private void UpdateState(EntityUid uid, GasVentScrubberComponent scrubber, _ambientSoundSystem.SetAmbience(uid, false); _appearance.SetData(uid, ScrubberVisuals.State, ScrubberState.Welded, appearance); } - else if (!scrubber.Enabled) + else if (!_powerReceiverSystem.IsPowered(uid) || !scrubber.Enabled) { _ambientSoundSystem.SetAmbience(uid, false); _appearance.SetData(uid, ScrubberVisuals.State, ScrubberState.Off, appearance); diff --git a/Content.Server/Beam/BeamSystem.cs b/Content.Server/Beam/BeamSystem.cs index ad67f983c27..bf120bf8c4e 100644 --- a/Content.Server/Beam/BeamSystem.cs +++ b/Content.Server/Beam/BeamSystem.cs @@ -96,7 +96,7 @@ private void CreateBeam(string prototype, _physics.SetBodyType(ent, BodyType.Dynamic, manager: manager, body: physics); _physics.SetCanCollide(ent, true, manager: manager, body: physics); - _broadphase.RegenerateContacts(ent, physics, manager); + _broadphase.RegenerateContacts((ent, physics, manager)); var distanceLength = distanceCorrection.Length(); diff --git a/Content.Server/Botany/Components/PlantHolderComponent.cs b/Content.Server/Botany/Components/PlantHolderComponent.cs index 235cd3050b5..d65e1b702be 100644 --- a/Content.Server/Botany/Components/PlantHolderComponent.cs +++ b/Content.Server/Botany/Components/PlantHolderComponent.cs @@ -7,8 +7,15 @@ namespace Content.Server.Botany.Components; [RegisterComponent] public sealed partial class PlantHolderComponent : Component { + /// + /// Game time for the next plant reagent update. + /// [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] public TimeSpan NextUpdate = TimeSpan.Zero; + + /// + /// Time between plant reagent consumption updates. + /// [DataField] public TimeSpan UpdateDelay = TimeSpan.FromSeconds(3); @@ -18,18 +25,31 @@ public sealed partial class PlantHolderComponent : Component [DataField] public int MissingGas; + /// + /// Time between plant growth updates. + /// [DataField] public TimeSpan CycleDelay = TimeSpan.FromSeconds(15f); + /// + /// Game time when the plant last did a growth update. + /// [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] public TimeSpan LastCycle = TimeSpan.Zero; + /// + /// Sound played when any reagent is transferred into the plant holder. + /// [DataField] public SoundSpecifier? WateringSound; [DataField] public bool UpdateSpriteAfterUpdate; + /// + /// Set to true if the plant holder displays plant warnings (e.g. water low) in the sprite and + /// examine text. Used to differentiate hydroponic trays from simple soil plots. + /// [DataField] public bool DrawWarnings = false; @@ -60,9 +80,16 @@ public sealed partial class PlantHolderComponent : Component [DataField] public bool Harvest; + /// + /// Set to true if this plant has been clipped by seed clippers. Used to prevent a single plant + /// from repeatedly being clipped. + /// [DataField] public bool Sampled; + /// + /// Multiplier for the number of entities produced at harvest. + /// [DataField] public int YieldMod = 1; @@ -81,15 +108,28 @@ public sealed partial class PlantHolderComponent : Component [DataField] public SeedData? Seed; + /// + /// True if the plant is losing health due to too high/low temperature. + /// [DataField] public bool ImproperHeat; + /// + /// True if the plant is losing health due to too high/low pressure. + /// [DataField] public bool ImproperPressure; + /// + /// Not currently used. + /// [DataField] public bool ImproperLight; + /// + /// Set to true to force a plant update (visuals, component, etc.) regardless of the current + /// update cycle time. Typically used when some interaction affects this plant. + /// [DataField] public bool ForceUpdate; diff --git a/Content.Server/Botany/Systems/BotanySystem.Seed.cs b/Content.Server/Botany/Systems/BotanySystem.Seed.cs index 76421daf2e9..81645be34f4 100644 --- a/Content.Server/Botany/Systems/BotanySystem.Seed.cs +++ b/Content.Server/Botany/Systems/BotanySystem.Seed.cs @@ -10,7 +10,6 @@ using Content.Shared.Random.Helpers; using Robust.Server.GameObjects; using Robust.Shared.Map; -using Robust.Shared.Physics.Systems; using Robust.Shared.Prototypes; using Robust.Shared.Random; using System.Diagnostics.CodeAnalysis; @@ -25,10 +24,8 @@ public sealed partial class BotanySystem : EntitySystem [Dependency] private readonly AppearanceSystem _appearance = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly SharedHandsSystem _hands = default!; - [Dependency] private readonly SharedPointLightSystem _light = default!; [Dependency] private readonly SharedSolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; - [Dependency] private readonly FixtureSystem _fixtureSystem = default!; [Dependency] private readonly RandomHelperSystem _randomHelper = default!; public override void Initialize() diff --git a/Content.Server/Chat/Systems/ChatSystem.Emote.cs b/Content.Server/Chat/Systems/ChatSystem.Emote.cs index fddf453ff06..707a0e0dc5d 100644 --- a/Content.Server/Chat/Systems/ChatSystem.Emote.cs +++ b/Content.Server/Chat/Systems/ChatSystem.Emote.cs @@ -196,17 +196,30 @@ static string TrimPunctuation(string textInput) /// private bool AllowedToUseEmote(EntityUid source, EmotePrototype emote) { - if ((_whitelistSystem.IsWhitelistFail(emote.Whitelist, source) || _whitelistSystem.IsBlacklistPass(emote.Blacklist, source))) + // If emote is in AllowedEmotes, it will bypass whitelist and blacklist + if (TryComp(source, out var speech) && + speech.AllowedEmotes.Contains(emote.ID)) + { + return true; + } + + // Check the whitelist and blacklist + if (_whitelistSystem.IsWhitelistFail(emote.Whitelist, source) || + _whitelistSystem.IsBlacklistPass(emote.Blacklist, source)) + { return false; + } - if (!emote.Available && - TryComp(source, out var speech) && - !speech.AllowedEmotes.Contains(emote.ID)) + // Check if the emote is available for all + if (!emote.Available) + { return false; + } return true; } + private void InvokeEmoteEvent(EntityUid uid, EmotePrototype proto) { var ev = new EmoteEvent(proto); diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index 13e4449a83c..137ee0d06dc 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -6,7 +6,7 @@ using Content.Server.Chat.Managers; using Content.Server.GameTicking; using Content.Server.Players.RateLimiting; -using Content.Server.Speech.Components; +using Content.Server.Speech.Prototypes; using Content.Server.Speech.EntitySystems; using Content.Server.Station.Components; using Content.Server.Station.Systems; diff --git a/Content.Server/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs b/Content.Server/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs index e2cd72030de..e72fd34cd88 100644 --- a/Content.Server/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs @@ -64,4 +64,9 @@ private void PrototypeManagerReload(PrototypesReloadedEventArgs obj) var ev = new ReagentGuideRegistryChangedEvent(changeset); RaiseNetworkEvent(ev); } + + public override void ReloadAllReagentPrototypes() + { + InitializeServerRegistry(); + } } diff --git a/Content.Server/Chemistry/EntitySystems/HypospraySystem.cs b/Content.Server/Chemistry/EntitySystems/HypospraySystem.cs index d56219cce3d..c1f4d3d7197 100644 --- a/Content.Server/Chemistry/EntitySystems/HypospraySystem.cs +++ b/Content.Server/Chemistry/EntitySystems/HypospraySystem.cs @@ -12,10 +12,7 @@ using Content.Shared.Mobs.Components; using Content.Shared.Timing; using Content.Shared.Weapons.Melee.Events; -using Content.Server.Interaction; using Content.Server.Body.Components; -using Robust.Shared.GameStates; -using System.Diagnostics.CodeAnalysis; using System.Linq; using Robust.Server.Audio; @@ -24,7 +21,6 @@ namespace Content.Server.Chemistry.EntitySystems; public sealed class HypospraySystem : SharedHypospraySystem { [Dependency] private readonly AudioSystem _audio = default!; - [Dependency] private readonly InteractionSystem _interaction = default!; public override void Initialize() { diff --git a/Content.Server/Chemistry/EntitySystems/SolutionInjectWhileEmbeddedSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionInjectWhileEmbeddedSystem.cs index 2baeba9da15..eb805a90990 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionInjectWhileEmbeddedSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionInjectWhileEmbeddedSystem.cs @@ -1,14 +1,6 @@ -using Content.Server.Body.Components; -using Content.Server.Body.Systems; using Content.Server.Chemistry.Components; -using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Chemistry.Events; -using Content.Shared.Inventory; -using Content.Shared.Popups; using Content.Shared.Projectiles; -using Content.Shared.Tag; -using Content.Shared.Weapons.Melee.Events; -using Robust.Shared.Collections; using Robust.Shared.Timing; namespace Content.Server.Chemistry.EntitySystems; @@ -19,16 +11,11 @@ namespace Content.Server.Chemistry.EntitySystems; public sealed class SolutionInjectWhileEmbeddedSystem : EntitySystem { [Dependency] private readonly IGameTiming _gameTiming = default!; - [Dependency] private readonly BloodstreamSystem _bloodstream = default!; - [Dependency] private readonly InventorySystem _inventory = default!; - [Dependency] private readonly SharedPopupSystem _popup = default!; - [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; - [Dependency] private readonly TagSystem _tag = default!; public override void Initialize() { base.Initialize(); - + SubscribeLocalEvent(OnMapInit); } diff --git a/Content.Server/Chemistry/TileReactions/SpillTileReaction.cs b/Content.Server/Chemistry/TileReactions/SpillTileReaction.cs index f9fb2b90d0b..68c1966de84 100644 --- a/Content.Server/Chemistry/TileReactions/SpillTileReaction.cs +++ b/Content.Server/Chemistry/TileReactions/SpillTileReaction.cs @@ -17,14 +17,14 @@ namespace Content.Server.Chemistry.TileReactions [DataDefinition] public sealed partial class SpillTileReaction : ITileReaction { - [DataField("launchForwardsMultiplier")] private float _launchForwardsMultiplier = 1; - [DataField("requiredSlipSpeed")] private float _requiredSlipSpeed = 6; - [DataField("paralyzeTime")] private float _paralyzeTime = 1; + [DataField("launchForwardsMultiplier")] public float LaunchForwardsMultiplier = 1; + [DataField("requiredSlipSpeed")] public float RequiredSlipSpeed = 6; + [DataField("paralyzeTime")] public float ParalyzeTime = 1; /// /// /// - [DataField("superSlippery")] private bool _superSlippery; + [DataField("superSlippery")] public bool SuperSlippery; public FixedPoint2 TileReact(TileRef tile, ReagentPrototype reagent, @@ -39,13 +39,13 @@ public FixedPoint2 TileReact(TileRef tile, .TrySpillAt(tile, new Solution(reagent.ID, reactVolume, data), out var puddleUid, false, false)) { var slippery = entityManager.EnsureComponent(puddleUid); - slippery.LaunchForwardsMultiplier = _launchForwardsMultiplier; - slippery.ParalyzeTime = _paralyzeTime; - slippery.SuperSlippery = _superSlippery; + slippery.LaunchForwardsMultiplier = LaunchForwardsMultiplier; + slippery.ParalyzeTime = ParalyzeTime; + slippery.SuperSlippery = SuperSlippery; entityManager.Dirty(puddleUid, slippery); var step = entityManager.EnsureComponent(puddleUid); - entityManager.EntitySysManager.GetEntitySystem().SetRequiredTriggerSpeed(puddleUid, _requiredSlipSpeed, step); + entityManager.EntitySysManager.GetEntitySystem().SetRequiredTriggerSpeed(puddleUid, RequiredSlipSpeed, step); var slow = entityManager.EnsureComponent(puddleUid); var speedModifier = 1 - reagent.Viscosity; diff --git a/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs b/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs index 3700aeb549c..5c8954cc69b 100644 --- a/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs +++ b/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs @@ -3,18 +3,13 @@ using Content.Shared.Clothing.EntitySystems; using Content.Shared.IdentityManagement.Components; using Content.Shared.Prototypes; -using Content.Shared.Verbs; -using Robust.Server.GameObjects; -using Robust.Shared.Player; using Robust.Shared.Prototypes; -using Robust.Shared.Utility; namespace Content.Server.Clothing.Systems; public sealed class ChameleonClothingSystem : SharedChameleonClothingSystem { [Dependency] private readonly IPrototypeManager _proto = default!; - [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; [Dependency] private readonly IComponentFactory _factory = default!; [Dependency] private readonly IdentitySystem _identity = default!; @@ -22,7 +17,6 @@ public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnMapInit); - SubscribeLocalEvent>(OnVerb); SubscribeLocalEvent(OnSelected); } @@ -31,40 +25,18 @@ private void OnMapInit(EntityUid uid, ChameleonClothingComponent component, MapI SetSelectedPrototype(uid, component.Default, true, component); } - private void OnVerb(EntityUid uid, ChameleonClothingComponent component, GetVerbsEvent args) - { - if (!args.CanAccess || !args.CanInteract || component.User != args.User) - return; - - args.Verbs.Add(new InteractionVerb() - { - Text = Loc.GetString("chameleon-component-verb-text"), - Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/settings.svg.192dpi.png")), - Act = () => TryOpenUi(uid, args.User, component) - }); - } - private void OnSelected(EntityUid uid, ChameleonClothingComponent component, ChameleonPrototypeSelectedMessage args) { SetSelectedPrototype(uid, args.SelectedId, component: component); } - private void TryOpenUi(EntityUid uid, EntityUid user, ChameleonClothingComponent? component = null) - { - if (!Resolve(uid, ref component)) - return; - if (!TryComp(user, out ActorComponent? actor)) - return; - _uiSystem.TryToggleUi(uid, ChameleonUiKey.Key, actor.PlayerSession); - } - private void UpdateUi(EntityUid uid, ChameleonClothingComponent? component = null) { if (!Resolve(uid, ref component)) return; var state = new ChameleonBoundUserInterfaceState(component.Slot, component.Default, component.RequireTag); - _uiSystem.SetUiState(uid, ChameleonUiKey.Key, state); + UI.SetUiState(uid, ChameleonUiKey.Key, state); } /// diff --git a/Content.Server/Commands/CommandUtils.cs b/Content.Server/Commands/CommandUtils.cs index 30ea41b7c9f..502c3ae0241 100644 --- a/Content.Server/Commands/CommandUtils.cs +++ b/Content.Server/Commands/CommandUtils.cs @@ -4,6 +4,7 @@ using Robust.Shared.Console; using Robust.Shared.Network; using Robust.Shared.Player; +using Robust.Shared.Toolshed.Commands.Generic; namespace Content.Server.Commands { @@ -50,45 +51,5 @@ public static bool TryGetAttachedEntityByUsernameOrId(IConsoleShell shell, attachedEntity = session.AttachedEntity.Value; return true; } - - public static string SubstituteEntityDetails(IConsoleShell shell, EntityUid ent, string ruleString) - { - 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", - worldPosition.X.ToString(CultureInfo.InvariantCulture)); - ruleString = ruleString.Replace("$WY", - worldPosition.Y.ToString(CultureInfo.InvariantCulture)); - ruleString = ruleString.Replace("$LX", - transform.LocalPosition.X.ToString(CultureInfo.InvariantCulture)); - ruleString = ruleString.Replace("$LY", - transform.LocalPosition.Y.ToString(CultureInfo.InvariantCulture)); - ruleString = ruleString.Replace("$NAME", entMan.GetComponent(ent).EntityName); - - if (shell.Player is { } player) - { - 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", - pWorldPosition.X.ToString(CultureInfo.InvariantCulture)); - ruleString = ruleString.Replace("$PWY", - pWorldPosition.Y.ToString(CultureInfo.InvariantCulture)); - ruleString = ruleString.Replace("$PLX", - pTransform.LocalPosition.X.ToString(CultureInfo.InvariantCulture)); - ruleString = ruleString.Replace("$PLY", - pTransform.LocalPosition.Y.ToString(CultureInfo.InvariantCulture)); - } - } - return ruleString; - } } } diff --git a/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs b/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs index 50c69f38297..b1f5365b016 100644 --- a/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs +++ b/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs @@ -37,7 +37,7 @@ private void OnDoHit(EntityUid uid, DamageOtherOnHitComponent component, ThrowDo if (TerminatingOrDeleted(args.Target)) return; - var dmg = _damageable.TryChangeDamage(args.Target, component.Damage, component.IgnoreResistances, origin: args.Component.Thrower); + var dmg = _damageable.TryChangeDamage(args.Target, component.Damage * _damageable.UniversalThrownDamageModifier, component.IgnoreResistances, origin: args.Component.Thrower); // Log damage only for mobs. Useful for when people throw spears at each other, but also avoids log-spam when explosions send glass shards flying. if (dmg != null && HasComp(args.Target)) @@ -58,7 +58,7 @@ private void OnDoHit(EntityUid uid, DamageOtherOnHitComponent component, ThrowDo private void OnDamageExamine(EntityUid uid, DamageOtherOnHitComponent component, ref DamageExamineEvent args) { - _damageExamine.AddDamageExamine(args.Message, component.Damage, Loc.GetString("damage-throw")); + _damageExamine.AddDamageExamine(args.Message, _damageable.ApplyUniversalAllModifiers(component.Damage * _damageable.UniversalThrownDamageModifier), Loc.GetString("damage-throw")); } /// diff --git a/Content.Server/Database/ServerDbBase.cs b/Content.Server/Database/ServerDbBase.cs index 2d2cb036410..74627d65da2 100644 --- a/Content.Server/Database/ServerDbBase.cs +++ b/Content.Server/Database/ServerDbBase.cs @@ -233,6 +233,7 @@ private static HumanoidCharacterProfile ConvertProfiles(Profile profile) { var loadout = new RoleLoadout(role.RoleName) { + EntityName = role.EntityName, }; foreach (var group in role.Groups) @@ -336,6 +337,7 @@ private static Profile ConvertProfiles(HumanoidCharacterProfile humanoid, int sl var dz = new ProfileRoleLoadout() { RoleName = role, + EntityName = loadouts.EntityName ?? string.Empty, }; foreach (var (group, groupLoadouts) in loadouts.SelectedLoadouts) diff --git a/Content.Server/DeviceNetwork/Systems/DeviceListSystem.cs b/Content.Server/DeviceNetwork/Systems/DeviceListSystem.cs index a8d40882c4d..1988a07cea0 100644 --- a/Content.Server/DeviceNetwork/Systems/DeviceListSystem.cs +++ b/Content.Server/DeviceNetwork/Systems/DeviceListSystem.cs @@ -20,7 +20,7 @@ public override void Initialize() SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnBeforeBroadcast); SubscribeLocalEvent(OnBeforePacketSent); - SubscribeLocalEvent(OnMapSave); + SubscribeLocalEvent(OnMapSave); } private void OnShutdown(EntityUid uid, DeviceListComponent component, ComponentShutdown args) @@ -124,14 +124,14 @@ public void OnDeviceShutdown(Entity list, Entity toRemove = new(); var query = GetEntityQuery(); var enumerator = AllEntityQuery(); while (enumerator.MoveNext(out var uid, out var device, out var xform)) { - if (xform.MapUid != ev.Map) + if (!ev.MapIds.Contains(xform.MapID)) continue; foreach (var ent in device.Devices) @@ -144,7 +144,10 @@ private void OnMapSave(BeforeSaveEvent ev) continue; } - if (linkedXform.MapUid == ev.Map) + // This is assuming that **all** of the map is getting saved. + // Which is not necessarily true. + // AAAAAAAAAAAAAA + if (ev.MapIds.Contains(linkedXform.MapID)) continue; toRemove.Add(ent); diff --git a/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs b/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs index efaf5680947..645d28f6d24 100644 --- a/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs +++ b/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs @@ -67,15 +67,18 @@ public override void Initialize() SubscribeLocalEvent(OnComponentRemoved); - SubscribeLocalEvent(OnMapSave); + SubscribeLocalEvent(OnMapSave); } - private void OnMapSave(BeforeSaveEvent ev) + private void OnMapSave(BeforeSerializationEvent ev) { var enumerator = AllEntityQuery(); while (enumerator.MoveNext(out var uid, out var conf)) { - if (CompOrNull(conf.ActiveDeviceList)?.MapUid != ev.Map) + if (!TryComp(conf.ActiveDeviceList, out TransformComponent? listXform)) + continue; + + if (!ev.MapIds.Contains(listXform.MapID)) continue; // The linked device list is (probably) being saved. Make sure that the configurator is also being saved @@ -83,9 +86,10 @@ private void OnMapSave(BeforeSaveEvent ev) // containing a set of all entities that are about to be saved, which would make checking this much easier. // This is a shitty bandaid, and will force close the UI during auto-saves. // TODO Map serialization refactor + // I'm refactoring it now and I still dont know what to do var xform = Transform(uid); - if (xform.MapUid == ev.Map && IsSaveable(uid)) + if (ev.MapIds.Contains(xform.MapID) && IsSaveable(uid)) continue; _uiSystem.CloseUi(uid, NetworkConfiguratorUiKey.Configure); diff --git a/Content.Server/Dice/DiceSystem.cs b/Content.Server/Dice/DiceSystem.cs index 2d13679bd09..c2cb62a250f 100644 --- a/Content.Server/Dice/DiceSystem.cs +++ b/Content.Server/Dice/DiceSystem.cs @@ -1,28 +1,5 @@ using Content.Shared.Dice; -using Content.Shared.Popups; -using JetBrains.Annotations; -using Robust.Shared.Audio; -using Robust.Shared.Audio.Systems; -using Robust.Shared.Random; namespace Content.Server.Dice; -[UsedImplicitly] -public sealed class DiceSystem : SharedDiceSystem -{ - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SharedPopupSystem _popup = default!; - - public override void Roll(EntityUid uid, DiceComponent? die = null) - { - if (!Resolve(uid, ref die)) - return; - - var roll = _random.Next(1, die.Sides + 1); - SetCurrentSide(uid, roll, die); - - _popup.PopupEntity(Loc.GetString("dice-component-on-roll-land", ("die", uid), ("currentSide", die.CurrentValue)), uid); - _audio.PlayPvs(die.Sound, uid); - } -} +public sealed class DiceSystem : SharedDiceSystem; diff --git a/Content.Server/Discord/WebhookMessages/VoteWebhooks.cs b/Content.Server/Discord/WebhookMessages/VoteWebhooks.cs index 74953d10fa2..9e147fced2e 100644 --- a/Content.Server/Discord/WebhookMessages/VoteWebhooks.cs +++ b/Content.Server/Discord/WebhookMessages/VoteWebhooks.cs @@ -1,9 +1,7 @@ using Content.Server.GameTicking; using Content.Server.Voting; using Robust.Server; -using Robust.Shared.Configuration; using Robust.Shared.Utility; -using System.Diagnostics; using System.Text.Json; using System.Text.Json.Nodes; @@ -11,7 +9,6 @@ namespace Content.Server.Discord.WebhookMessages; public sealed class VoteWebhooks : IPostInjectInit { - [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IEntitySystemManager _entSys = default!; [Dependency] private readonly DiscordWebhook _discord = default!; [Dependency] private readonly IBaseServer _baseServer = default!; diff --git a/Content.Server/Doors/Systems/AirlockSystem.cs b/Content.Server/Doors/Systems/AirlockSystem.cs index 876f06b47ca..65f5de3675d 100644 --- a/Content.Server/Doors/Systems/AirlockSystem.cs +++ b/Content.Server/Doors/Systems/AirlockSystem.cs @@ -18,18 +18,17 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnAirlockInit); SubscribeLocalEvent(OnSignalReceived); SubscribeLocalEvent(OnPowerChanged); SubscribeLocalEvent(OnActivate, before: new[] { typeof(DoorSystem) }); + SubscribeLocalEvent(OnAirlockInit); // ADT-Corvax-Tweak } private void OnAirlockInit(EntityUid uid, AirlockComponent component, ComponentInit args) { if (TryComp(uid, out var receiverComponent)) { - Appearance.SetData(uid, DoorVisuals.Powered, receiverComponent.Powered); Appearance.SetData(uid, DoorVisuals.ClosedLights, true); // Corvax-Resprite-Airlocks } } @@ -48,11 +47,6 @@ private void OnPowerChanged(EntityUid uid, AirlockComponent component, ref Power component.Powered = args.Powered; Dirty(uid, component); - if (TryComp(uid, out var appearanceComponent)) - { - Appearance.SetData(uid, DoorVisuals.Powered, args.Powered, appearanceComponent); - } - if (!TryComp(uid, out DoorComponent? door)) return; diff --git a/Content.Server/Doors/Systems/FirelockSystem.cs b/Content.Server/Doors/Systems/FirelockSystem.cs index 6bb1972b6ec..375e5c745e7 100644 --- a/Content.Server/Doors/Systems/FirelockSystem.cs +++ b/Content.Server/Doors/Systems/FirelockSystem.cs @@ -37,8 +37,6 @@ public override void Initialize() private void PowerChanged(EntityUid uid, FirelockComponent component, ref PowerChangedEvent args) { - // TODO this should REALLLLY not be door specific appearance thing. - _appearance.SetData(uid, DoorVisuals.Powered, args.Powered); component.Powered = args.Powered; Dirty(uid, component); } diff --git a/Content.Server/EntityEffects/Effects/HealthChange.cs b/Content.Server/EntityEffects/Effects/HealthChange.cs index fd2a658745b..71021ce4ac9 100644 --- a/Content.Server/EntityEffects/Effects/HealthChange.cs +++ b/Content.Server/EntityEffects/Effects/HealthChange.cs @@ -44,6 +44,26 @@ protected override string ReagentEffectGuidebookText(IPrototypeManager prototype var damageSpec = new DamageSpecifier(Damage); + var universalReagentDamageModifier = entSys.GetEntitySystem().UniversalReagentDamageModifier; + var universalReagentHealModifier = entSys.GetEntitySystem().UniversalReagentHealModifier; + + if (universalReagentDamageModifier != 1 || universalReagentHealModifier != 1) + { + foreach (var (type, val) in damageSpec.DamageDict) + { + if (val < 0f) + { + damageSpec.DamageDict[type] = val * universalReagentHealModifier; + } + if (val > 0f) + { + damageSpec.DamageDict[type] = val * universalReagentDamageModifier; + } + } + } + + damageSpec = entSys.GetEntitySystem().ApplyUniversalAllModifiers(damageSpec); + foreach (var group in prototype.EnumeratePrototypes()) { if (!damageSpec.TryGetDamageInGroup(group, out var amount)) @@ -114,17 +134,37 @@ protected override string ReagentEffectGuidebookText(IPrototypeManager prototype public override void Effect(EntityEffectBaseArgs args) { var scale = FixedPoint2.New(1); + var damageSpec = new DamageSpecifier(Damage); if (args is EntityEffectReagentArgs reagentArgs) { scale = ScaleByQuantity ? reagentArgs.Quantity * reagentArgs.Scale : reagentArgs.Scale; } - args.EntityManager.System().TryChangeDamage( - args.TargetEntity, - Damage * scale, - IgnoreResistances, - interruptsDoAfters: false); + var universalReagentDamageModifier = args.EntityManager.System().UniversalReagentDamageModifier; + var universalReagentHealModifier = args.EntityManager.System().UniversalReagentHealModifier; + + if (universalReagentDamageModifier != 1 || universalReagentHealModifier != 1) + { + foreach (var (type, val) in damageSpec.DamageDict) + { + if (val < 0f) + { + damageSpec.DamageDict[type] = val * universalReagentHealModifier; + } + if (val > 0f) + { + damageSpec.DamageDict[type] = val * universalReagentDamageModifier; + } + } + } + + args.EntityManager.System() + .TryChangeDamage( + args.TargetEntity, + damageSpec * scale, + IgnoreResistances, + interruptsDoAfters: false); } } } diff --git a/Content.Server/Entry/EntryPoint.cs b/Content.Server/Entry/EntryPoint.cs index 20d4ebfe163..61e54a948b3 100644 --- a/Content.Server/Entry/EntryPoint.cs +++ b/Content.Server/Entry/EntryPoint.cs @@ -175,6 +175,7 @@ public override void PostInit() IoCManager.Resolve().Initialize(); IoCManager.Resolve().PostInit(); IoCManager.Resolve().Initialize(); + IoCManager.Resolve().Initialize(); } } diff --git a/Content.Server/Explosion/EntitySystems/ExplosionGridTileFlood.cs b/Content.Server/Explosion/EntitySystems/ExplosionGridTileFlood.cs index 2ddcc052d85..fd5a8954811 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionGridTileFlood.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionGridTileFlood.cs @@ -69,14 +69,18 @@ public ExplosionGridTileFlood( return; _needToTransform = true; - var transform = IoCManager.Resolve().GetComponent(Grid.Owner); - var size = (float) Grid.TileSize; + var entityManager = IoCManager.Resolve(); + + var transformSystem = entityManager.System(); + var transform = entityManager.GetComponent(Grid.Owner); + var size = (float)Grid.TileSize; _matrix.M31 = size / 2; _matrix.M32 = size / 2; Matrix3x2.Invert(spaceMatrix, out var invSpace); - _matrix *= transform.WorldMatrix * invSpace; - var relativeAngle = transform.WorldRotation - spaceAngle; + var (_, relativeAngle, worldMatrix) = transformSystem.GetWorldPositionRotationMatrix(transform); + relativeAngle -= spaceAngle; + _matrix *= worldMatrix * invSpace; _offset = relativeAngle.RotateVec(new Vector2(size / 4, size / 4)); } diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs index b08b66474b5..3be64e17769 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs @@ -71,8 +71,7 @@ private void OnGridRemoved(GridRemovalEvent ev) { var targetGrid = Comp(referenceGrid.Value); var xform = Transform(referenceGrid.Value); - targetAngle = xform.WorldRotation; - targetMatrix = xform.InvWorldMatrix; + (_, targetAngle, targetMatrix) = _transformSystem.GetWorldPositionRotationInvMatrix(xform); tileSize = targetGrid.TileSize; } diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs index 90b777178d9..8ea2d5dfd99 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs @@ -464,7 +464,7 @@ private void ProcessEntity( } // TODO EXPLOSIONS turn explosions into entities, and pass the the entity in as the damage origin. - _damageableSystem.TryChangeDamage(entity, damage, ignoreResistances: true); + _damageableSystem.TryChangeDamage(entity, damage * _damageableSystem.UniversalExplosionDamageModifier, ignoreResistances: true); } } diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs index 7b73490d946..43cc45beac3 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs @@ -89,8 +89,7 @@ public sealed partial class ExplosionSystem if (referenceGrid != null) { var xform = Transform(Comp(referenceGrid.Value).Owner); - spaceMatrix = xform.WorldMatrix; - spaceAngle = xform.WorldRotation; + (_, spaceAngle, spaceMatrix) = _transformSystem.GetWorldPositionRotationMatrix(xform); } // is the explosion starting on a grid? diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs index 0962674504d..beffbd6d68e 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs @@ -3,10 +3,8 @@ using Content.Server.Administration.Logs; using Content.Server.Atmos.Components; using Content.Server.Chat.Managers; -using Content.Server.Explosion.Components; using Content.Server.NodeContainer.EntitySystems; using Content.Server.NPC.Pathfinding; -using Content.Shared.Armor; using Content.Shared.Camera; using Content.Shared.CCVar; using Content.Shared.Damage; @@ -18,8 +16,6 @@ using Content.Shared.Inventory; using Content.Shared.Projectiles; using Content.Shared.Throwing; -using Content.Shared.Explosion.Components; -using Content.Shared.Explosion.EntitySystems; using Robust.Server.GameStates; using Robust.Server.Player; using Robust.Shared.Audio.Systems; diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.Proximity.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.Proximity.cs index 119b1a3d368..b2f26309cfc 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.Proximity.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.Proximity.cs @@ -36,7 +36,7 @@ private void OnProximityAnchor(EntityUid uid, TriggerOnProximityComponent compon // Re-check for contacts as we cleared them. else if (TryComp(uid, out var body)) { - _broadphase.RegenerateContacts(uid, body); + _broadphase.RegenerateContacts((uid, body)); } } diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs index 57847551aa7..53f6dfacf85 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs @@ -126,7 +126,7 @@ private void OnSoundTrigger(EntityUid uid, SoundOnTriggerComponent component, Tr private void HandleShockTrigger(Entity shockOnTrigger, ref TriggerEvent args) { - if (!_container.TryGetContainingContainer(shockOnTrigger, out var container)) + if (!_container.TryGetContainingContainer(shockOnTrigger.Owner, out var container)) return; var containerEnt = container.Owner; diff --git a/Content.Server/Fax/FaxSystem.cs b/Content.Server/Fax/FaxSystem.cs index b73c101e3fe..180689f8925 100644 --- a/Content.Server/Fax/FaxSystem.cs +++ b/Content.Server/Fax/FaxSystem.cs @@ -451,6 +451,9 @@ public void Copy(EntityUid uid, FaxMachineComponent? component, FaxCopyMessage a if (!Resolve(uid, ref component)) return; + if (component.SendTimeoutRemaining > 0) + return; + var sendEntity = component.PaperSlot.Item; if (sendEntity == null) return; @@ -495,6 +498,9 @@ public void Send(EntityUid uid, FaxMachineComponent? component, FaxSendMessage a if (!Resolve(uid, ref component)) return; + if (component.SendTimeoutRemaining > 0) + return; + var sendEntity = component.PaperSlot.Item; if (sendEntity == null) return; diff --git a/Content.Server/Fluids/EntitySystems/PuddleDebugDebugOverlaySystem.cs b/Content.Server/Fluids/EntitySystems/PuddleDebugDebugOverlaySystem.cs index 859f2d80a67..88acf4b703e 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleDebugDebugOverlaySystem.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleDebugDebugOverlaySystem.cs @@ -84,7 +84,7 @@ public override void Update(float frameTime) data.Add(new PuddleDebugOverlayData(pos, vol)); } - RaiseNetworkEvent(new PuddleOverlayDebugMessage(GetNetEntity(gridUid), data.ToArray())); + RaiseNetworkEvent(new PuddleOverlayDebugMessage(GetNetEntity(gridUid), data.ToArray()), session); } } diff --git a/Content.Server/Fluids/EntitySystems/PuddleSystem.cs b/Content.Server/Fluids/EntitySystems/PuddleSystem.cs index 3889be11743..8267b8e9717 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleSystem.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleSystem.cs @@ -1,4 +1,6 @@ +using System.Linq; using Content.Server.Administration.Logs; +using Content.Server.Chemistry.TileReactions; using Content.Server.DoAfter; using Content.Server.Fluids.Components; using Content.Server.Spreader; @@ -387,23 +389,36 @@ private void UpdateAppearance(EntityUid uid, PuddleComponent? puddleComponent = private void UpdateSlip(EntityUid entityUid, PuddleComponent component, Solution solution) { var isSlippery = false; + var isSuperSlippery = false; // The base sprite is currently at 0.3 so we require at least 2nd tier to be slippery or else it's too hard to see. var amountRequired = FixedPoint2.New(component.OverflowVolume.Float() * LowThreshold); var slipperyAmount = FixedPoint2.Zero; + // Utilize the defaults from their relevant systems... this sucks, and is a bandaid + var launchForwardsMultiplier = SlipperyComponent.DefaultLaunchForwardsMultiplier; + var paralyzeTime = SlipperyComponent.DefaultParalyzeTime; + var requiredSlipSpeed = StepTriggerComponent.DefaultRequiredTriggeredSpeed; + foreach (var (reagent, quantity) in solution.Contents) { var reagentProto = _prototypeManager.Index(reagent.Prototype); - if (reagentProto.Slippery) - { - slipperyAmount += quantity; + if (!reagentProto.Slippery) + continue; + slipperyAmount += quantity; - if (slipperyAmount > amountRequired) - { - isSlippery = true; - break; - } + if (slipperyAmount <= amountRequired) + continue; + isSlippery = true; + + foreach (var tileReaction in reagentProto.TileReactions) + { + if (tileReaction is not SpillTileReaction spillTileReaction) + continue; + isSuperSlippery = spillTileReaction.SuperSlippery; + launchForwardsMultiplier = launchForwardsMultiplier < spillTileReaction.LaunchForwardsMultiplier ? spillTileReaction.LaunchForwardsMultiplier : launchForwardsMultiplier; + requiredSlipSpeed = requiredSlipSpeed > spillTileReaction.RequiredSlipSpeed ? spillTileReaction.RequiredSlipSpeed : requiredSlipSpeed; + paralyzeTime = paralyzeTime < spillTileReaction.ParalyzeTime ? spillTileReaction.ParalyzeTime : paralyzeTime; } } @@ -413,6 +428,14 @@ private void UpdateSlip(EntityUid entityUid, PuddleComponent component, Solution _stepTrigger.SetActive(entityUid, true, comp); var friction = EnsureComp(entityUid); _tile.SetModifier(entityUid, TileFrictionController.DefaultFriction * 0.5f, friction); + + if (!TryComp(entityUid, out var slipperyComponent)) + return; + slipperyComponent.SuperSlippery = isSuperSlippery; + _stepTrigger.SetRequiredTriggerSpeed(entityUid, requiredSlipSpeed); + slipperyComponent.LaunchForwardsMultiplier = launchForwardsMultiplier; + slipperyComponent.ParalyzeTime = paralyzeTime; + } else if (TryComp(entityUid, out var comp)) { diff --git a/Content.Server/Fluids/EntitySystems/SmokeSystem.cs b/Content.Server/Fluids/EntitySystems/SmokeSystem.cs index 342c8b7a1b3..f68bf666ec9 100644 --- a/Content.Server/Fluids/EntitySystems/SmokeSystem.cs +++ b/Content.Server/Fluids/EntitySystems/SmokeSystem.cs @@ -237,7 +237,7 @@ public void StartSmoke(EntityUid uid, Solution solution, float duration, int spr var xform = Transform(uid); _physics.SetBodyType(uid, BodyType.Dynamic, fixtures, body, xform); _physics.SetCanCollide(uid, true, manager: fixtures, body: body); - _broadphase.RegenerateContacts(uid, body, fixtures, xform); + _broadphase.RegenerateContacts((uid, body, fixtures, xform)); } var timer = EnsureComp(uid); diff --git a/Content.Server/Forensics/Systems/ForensicPadSystem.cs b/Content.Server/Forensics/Systems/ForensicPadSystem.cs index a3f5627cdba..71bbcfb44a0 100644 --- a/Content.Server/Forensics/Systems/ForensicPadSystem.cs +++ b/Content.Server/Forensics/Systems/ForensicPadSystem.cs @@ -17,7 +17,6 @@ public sealed class ForensicPadSystem : EntitySystem [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly LabelSystem _label = default!; public override void Initialize() diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index 2dc9ffe92ce..89117ccc297 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -1,4 +1,5 @@ using System.Linq; +using System.Numerics; using Content.Server.Announcements; using Content.Server.Discord; using Content.Server.GameTicking.Events; @@ -13,10 +14,12 @@ using Content.Shared.Preferences; using JetBrains.Annotations; using Prometheus; -using Robust.Server.Maps; using Robust.Shared.Asynchronous; using Robust.Shared.Audio; +using Robust.Shared.EntitySerialization; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map; +using Robust.Shared.Map.Components; using Robust.Shared.Network; using Robust.Shared.Player; using Robust.Shared.Random; @@ -99,9 +102,6 @@ private void LoadMaps() AddGamePresetRules(); - DefaultMap = _mapManager.CreateMap(); - _mapManager.AddUninitializedMap(DefaultMap); - var maps = new List(); // the map might have been force-set by something @@ -139,52 +139,202 @@ private void LoadMaps() // Let game rules dictate what maps we should load. RaiseLocalEvent(new LoadingMapsEvent(maps)); - foreach (var map in maps) + if (maps.Count == 0) { - var toLoad = DefaultMap; - if (maps[0] != map) - { - // Create other maps for the others since we need to. - toLoad = _mapManager.CreateMap(); - _mapManager.AddUninitializedMap(toLoad); - } + _map.CreateMap(out var mapId, runMapInit: false); + DefaultMap = mapId; + return; + } + + for (var i = 0; i < maps.Count; i++) + { + LoadGameMap(maps[i], out var mapId); + DebugTools.Assert(!_map.IsInitialized(mapId)); - LoadGameMap(map, toLoad, null); + if (i == 0) + DefaultMap = mapId; } } + public PreGameMapLoad RaisePreLoad( + GameMapPrototype proto, + DeserializationOptions? opts = null, + Vector2? offset = null, + Angle? rot = null) + { + offset ??= proto.MaxRandomOffset != 0f + ? _robustRandom.NextVector2(proto.MaxRandomOffset) + : Vector2.Zero; + + rot ??= proto.RandomRotation + ? _robustRandom.NextAngle() + : Angle.Zero; + + opts ??= DeserializationOptions.Default; + var ev = new PreGameMapLoad(proto, opts.Value, offset.Value, rot.Value); + RaiseLocalEvent(ev); + return ev; + } /// /// Loads a new map, allowing systems interested in it to handle loading events. /// In the base game, this is required to be used if you want to load a station. + /// This does not initialze maps, unles specified via the . /// - /// Game map prototype to load in. - /// Map to load into. - /// Map loading options, includes offset. + /// + /// This is basically a wrapper around a method that auto generate + /// some using information in a prototype, and raise some events to allow content + /// to modify the options and react to the map creation. + /// + /// Game map prototype to load in. + /// The id of the map that was loaded. + /// Entity loading options, including whether the maps should be initialized. /// Name to assign to the loaded station. /// All loaded entities and grids. - public IReadOnlyList LoadGameMap(GameMapPrototype map, MapId targetMapId, MapLoadOptions? loadOptions, string? stationName = null) + public IReadOnlyList LoadGameMap( + GameMapPrototype proto, + out MapId mapId, + DeserializationOptions? options = null, + string? stationName = null, + Vector2? offset = null, + Angle? rot = null) { - // Okay I specifically didn't set LoadMap here because this is typically called onto a new map. - // whereas the command can also be used on an existing map. - var loadOpts = loadOptions ?? new MapLoadOptions(); + var ev = RaisePreLoad(proto, options, offset, rot); - if (map.MaxRandomOffset != 0f) - loadOpts.Offset = _robustRandom.NextVector2(map.MaxRandomOffset); + if (ev.GameMap.IsGrid) + { + var mapUid = _map.CreateMap(out mapId); + if (!_loader.TryLoadGrid(mapId, + ev.GameMap.MapPath, + out var grid, + ev.Options, + ev.Offset, + ev.Rotation)) + { + throw new Exception($"Failed to load game-map grid {ev.GameMap.ID}"); + } - if (map.RandomRotation) - loadOpts.Rotation = _robustRandom.NextAngle(); + _metaData.SetEntityName(mapUid, proto.MapName); + var g = new List {grid.Value.Owner}; + RaiseLocalEvent(new PostGameMapLoad(proto, mapId, g, stationName)); + return g; + } - var ev = new PreGameMapLoad(targetMapId, map, loadOpts); - RaiseLocalEvent(ev); + if (!_loader.TryLoadMap(ev.GameMap.MapPath, + out var map, + out var grids, + ev.Options, + ev.Offset, + ev.Rotation)) + { + throw new Exception($"Failed to load game map {ev.GameMap.ID}"); + } + + mapId = map.Value.Comp.MapId; + _metaData.SetEntityName(map.Value.Owner, proto.MapName); + var gridUids = grids.Select(x => x.Owner).ToList(); + RaiseLocalEvent(new PostGameMapLoad(proto, mapId, gridUids, stationName)); + return gridUids; + } + + /// + /// Variant of that attempts to assign the provided to the + /// loaded map. + /// + public IReadOnlyList LoadGameMapWithId( + GameMapPrototype proto, + MapId mapId, + DeserializationOptions? opts = null, + string? stationName = null, + Vector2? offset = null, + Angle? rot = null) + { + var ev = RaisePreLoad(proto, opts, offset, rot); + + if (ev.GameMap.IsGrid) + { + var mapUid = _map.CreateMap(mapId); + if (!_loader.TryLoadGrid(mapId, + ev.GameMap.MapPath, + out var grid, + ev.Options, + ev.Offset, + ev.Rotation)) + { + throw new Exception($"Failed to load game-map grid {ev.GameMap.ID}"); + } - var gridIds = _map.LoadMap(targetMapId, ev.GameMap.MapPath.ToString(), ev.Options); + _metaData.SetEntityName(mapUid, proto.MapName); + var g = new List {grid.Value.Owner}; + RaiseLocalEvent(new PostGameMapLoad(proto, mapId, g, stationName)); + return g; + } - _metaData.SetEntityName(_mapManager.GetMapEntityId(targetMapId), map.MapName); + if (!_loader.TryLoadMapWithId( + mapId, + ev.GameMap.MapPath, + out var map, + out var grids, + ev.Options, + ev.Offset, + ev.Rotation)) + { + throw new Exception($"Failed to load map"); + } - var gridUids = gridIds.ToList(); - RaiseLocalEvent(new PostGameMapLoad(map, targetMapId, gridUids, stationName)); + _metaData.SetEntityName(map.Value.Owner, proto.MapName); + var gridUids = grids.Select(x => x.Owner).ToList(); + RaiseLocalEvent(new PostGameMapLoad(proto, mapId, gridUids, stationName)); + return gridUids; + } + /// + /// Variant of that loads and then merges a game map onto an existing map. + /// + public IReadOnlyList MergeGameMap( + GameMapPrototype proto, + MapId targetMap, + DeserializationOptions? opts = null, + string? stationName = null, + Vector2? offset = null, + Angle? rot = null) + { + // TODO MAP LOADING use a new event? + // This is quite different from the other methods, which will actually create a **new** map. + var ev = RaisePreLoad(proto, opts, offset, rot); + + if (ev.GameMap.IsGrid) + { + if (!_loader.TryLoadGrid(targetMap, + ev.GameMap.MapPath, + out var grid, + ev.Options, + ev.Offset, + ev.Rotation)) + { + throw new Exception($"Failed to load game-map grid {ev.GameMap.ID}"); + } + + var g = new List {grid.Value.Owner}; + // TODO MAP LOADING use a new event? + RaiseLocalEvent(new PostGameMapLoad(proto, targetMap, g, stationName)); + return g; + } + + if (!_loader.TryMergeMap(targetMap, + ev.GameMap.MapPath, + out var grids, + ev.Options, + ev.Offset, + ev.Rotation)) + { + throw new Exception($"Failed to load map"); + } + + var gridUids = grids.Select(x => x.Owner).ToList(); + + // TODO MAP LOADING use a new event? + RaiseLocalEvent(new PostGameMapLoad(proto, targetMap, gridUids, stationName)); return gridUids; } @@ -289,7 +439,7 @@ public void StartRound(bool force = false) } // MapInitialize *before* spawning players, our codebase is too shit to do it afterwards... - _mapManager.DoMapInitialize(DefaultMap); + _map.InitializeMap(DefaultMap); SpawnPlayers(readyPlayers, readyPlayerProfiles, force); @@ -842,21 +992,14 @@ public LoadingMapsEvent(List maps) /// You likely want to subscribe to this after StationSystem. /// [PublicAPI] - public sealed class PreGameMapLoad : EntityEventArgs + public sealed class PreGameMapLoad(GameMapPrototype gameMap, DeserializationOptions options, Vector2 offset, Angle rotation) : EntityEventArgs { - public readonly MapId Map; - public GameMapPrototype GameMap; - public MapLoadOptions Options; - - public PreGameMapLoad(MapId map, GameMapPrototype gameMap, MapLoadOptions options) - { - Map = map; - GameMap = gameMap; - Options = options; - } + public readonly GameMapPrototype GameMap = gameMap; + public DeserializationOptions Options = options; + public Vector2 Offset = offset; + public Angle Rotation = rotation; } - /// /// Event raised after the game loads a given map. /// diff --git a/Content.Server/GameTicking/GameTicker.Spawning.cs b/Content.Server/GameTicking/GameTicker.Spawning.cs index a56b44bcd95..25eac1c9086 100644 --- a/Content.Server/GameTicking/GameTicker.Spawning.cs +++ b/Content.Server/GameTicking/GameTicker.Spawning.cs @@ -361,6 +361,7 @@ public void SpawnObserver(ICommonSession player) if (DummyTicker) return; + var makeObserver = false; Entity? mind = player.GetMind(); if (mind == null) { @@ -368,10 +369,13 @@ public void SpawnObserver(ICommonSession player) var (mindId, mindComp) = _mind.CreateMind(player.UserId, name); mind = (mindId, mindComp); _mind.SetUserId(mind.Value, player.UserId); - _roles.MindAddRole(mind.Value, "MindRoleObserver"); + makeObserver = true; } var ghost = _ghost.SpawnGhost(mind.Value); + if (makeObserver) + _roles.MindAddRole(mind.Value, "MindRoleObserver"); + _adminLogger.Add(LogType.LateJoin, LogImpact.Low, $"{player.Name} late joined the round as an Observer with {ToPrettyString(ghost):entity}."); @@ -425,7 +429,7 @@ public EntityCoordinates GetObserverSpawnPoint() { var gridXform = Transform(gridUid); - return new EntityCoordinates(gridUid, Vector2.Transform(toMap.Position, gridXform.InvWorldMatrix)); + return new EntityCoordinates(gridUid, Vector2.Transform(toMap.Position, _transform.GetInvWorldMatrix(gridXform))); } return spawn; diff --git a/Content.Server/GameTicking/GameTicker.cs b/Content.Server/GameTicking/GameTicker.cs index f8ba7e1d7d9..d286fd641eb 100644 --- a/Content.Server/GameTicking/GameTicker.cs +++ b/Content.Server/GameTicking/GameTicker.cs @@ -18,6 +18,7 @@ using Robust.Server.GameStates; using Robust.Shared.Audio.Systems; using Robust.Shared.Console; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map; using Robust.Shared.Prototypes; using Robust.Shared.Random; @@ -48,7 +49,8 @@ public sealed partial class GameTicker : SharedGameTicker [Dependency] private readonly IServerPreferencesManager _prefsManager = default!; [Dependency] private readonly IServerDbManager _db = default!; [Dependency] private readonly ChatSystem _chatSystem = default!; - [Dependency] private readonly MapLoaderSystem _map = default!; + [Dependency] private readonly MapLoaderSystem _loader = default!; + [Dependency] private readonly SharedMapSystem _map = default!; [Dependency] private readonly GhostSystem _ghost = default!; [Dependency] private readonly SharedMindSystem _mind = default!; [Dependency] private readonly PlayTimeTrackingSystem _playTimeTrackings = default!; diff --git a/Content.Server/GameTicking/Rules/Components/LoadMapRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/LoadMapRuleComponent.cs index 1f0505c60fc..f09fff5eafa 100644 --- a/Content.Server/GameTicking/Rules/Components/LoadMapRuleComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/LoadMapRuleComponent.cs @@ -20,11 +20,17 @@ public sealed partial class LoadMapRuleComponent : Component public ProtoId? GameMap; /// - /// A map path to load on a new map. + /// A map to load. /// [DataField] public ResPath? MapPath; + /// + /// A grid to load on a new map. + /// + [DataField] + public ResPath? GridPath; + /// /// A to move to a new map. /// If there are no instances left nothing is done. diff --git a/Content.Server/GameTicking/Rules/LoadMapRuleSystem.cs b/Content.Server/GameTicking/Rules/LoadMapRuleSystem.cs index f18115d3cf6..003a74ef4bf 100644 --- a/Content.Server/GameTicking/Rules/LoadMapRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/LoadMapRuleSystem.cs @@ -1,10 +1,14 @@ +using System.Linq; using Content.Server.GameTicking.Rules.Components; using Content.Server.GridPreloader; using Content.Server.StationEvents.Events; using Content.Shared.GameTicking.Components; using Robust.Server.GameObjects; -using Robust.Server.Maps; +using Robust.Shared.EntitySerialization; +using Robust.Shared.EntitySerialization.Systems; +using Robust.Shared.Map; using Robust.Shared.Prototypes; +using Robust.Shared.Utility; namespace Content.Server.GameTicking.Rules; @@ -26,29 +30,50 @@ protected override void Added(EntityUid uid, LoadMapRuleComponent comp, GameRule return; } - // grid preloading needs map to init after moving it - var mapUid = _map.CreateMap(out var mapId, runMapInit: comp.PreloadedGrid == null); - - Log.Info($"Created map {mapId} for {ToPrettyString(uid):rule}"); - + MapId mapId; IReadOnlyList grids; if (comp.GameMap != null) { + // Component has one of three modes, only one of the three fields should ever be populated. + DebugTools.AssertNull(comp.MapPath); + DebugTools.AssertNull(comp.GridPath); + DebugTools.AssertNull(comp.PreloadedGrid); + var gameMap = _prototypeManager.Index(comp.GameMap.Value); - grids = GameTicker.LoadGameMap(gameMap, mapId, new MapLoadOptions()); + grids = GameTicker.LoadGameMap(gameMap, out mapId, null); + Log.Info($"Created map {mapId} for {ToPrettyString(uid):rule}"); } else if (comp.MapPath is {} path) { - var options = new MapLoadOptions { LoadMap = true }; - if (!_mapLoader.TryLoad(mapId, path.ToString(), out var roots, options)) + DebugTools.AssertNull(comp.GridPath); + DebugTools.AssertNull(comp.PreloadedGrid); + + var opts = DeserializationOptions.Default with {InitializeMaps = true}; + if (!_mapLoader.TryLoadMap(path, out var map, out var gridSet, opts)) { Log.Error($"Failed to load map from {path}!"); - Del(mapUid); ForceEndSelf(uid, rule); return; } - grids = roots; + grids = gridSet.Select( x => x.Owner).ToList(); + mapId = map.Value.Comp.MapId; + } + else if (comp.GridPath is { } gPath) + { + DebugTools.AssertNull(comp.PreloadedGrid); + + // I fucking love it when "map paths" choses to ar + _map.CreateMap(out mapId); + var opts = DeserializationOptions.Default with {InitializeMaps = true}; + if (!_mapLoader.TryLoadGrid(mapId, gPath, out var grid, opts)) + { + Log.Error($"Failed to load grid from {gPath}!"); + ForceEndSelf(uid, rule); + return; + } + + grids = new List {grid.Value.Owner}; } else if (comp.PreloadedGrid is {} preloaded) { @@ -56,11 +81,11 @@ protected override void Added(EntityUid uid, LoadMapRuleComponent comp, GameRule if (!_gridPreloader.TryGetPreloadedGrid(preloaded, out var loadedShuttle)) { Log.Error($"Failed to get a preloaded grid with {preloaded}!"); - Del(mapUid); ForceEndSelf(uid, rule); return; } + var mapUid = _map.CreateMap(out mapId, runMapInit: false); _transform.SetParent(loadedShuttle.Value, mapUid); grids = new List() { loadedShuttle.Value }; _map.InitializeMap(mapUid); @@ -68,7 +93,6 @@ protected override void Added(EntityUid uid, LoadMapRuleComponent comp, GameRule else { Log.Error($"No valid map prototype or map path associated with the rule {ToPrettyString(uid)}"); - Del(mapUid); ForceEndSelf(uid, rule); return; } diff --git a/Content.Server/Ghost/GhostSystem.cs b/Content.Server/Ghost/GhostSystem.cs index bb5555964f1..5ad0cfd1519 100644 --- a/Content.Server/Ghost/GhostSystem.cs +++ b/Content.Server/Ghost/GhostSystem.cs @@ -27,6 +27,7 @@ using Content.Shared.Movement.Systems; using Content.Shared.Popups; using Content.Shared.Storage.Components; +using Content.Shared.Tag; using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Configuration; @@ -44,7 +45,6 @@ using Content.Server.Medical.SuitSensors; using Content.Shared.Inventory; using Content.Shared.Interaction.Components; -using Content.Shared.Humanoid.Prototypes; namespace Content.Server.Ghost { @@ -66,7 +66,6 @@ public sealed class GhostSystem : SharedGhostSystem [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly MobThresholdSystem _mobThresholdSystem = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly IConfigurationManager _configurationManager = default!; [Dependency] private readonly IChatManager _chatManager = default!; [Dependency] private readonly SharedMindSystem _mind = default!; @@ -74,10 +73,10 @@ public sealed class GhostSystem : SharedGhostSystem [Dependency] private readonly DamageableSystem _damageable = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly GameTicker _ticker = default!; //ADT tweak + [Dependency] private readonly TagSystem _tag = default!; [Dependency] private readonly InventorySystem _inventory = default!; //ADT tweak - [ Dependency] private readonly HumanoidAppearanceSystem _humanoidSystem = default!; //ADT tweak + [Dependency] private readonly HumanoidAppearanceSystem _humanoidSystem = default!; //ADT tweak private EntityQuery _ghostQuery; private EntityQuery _physicsQuery; @@ -280,7 +279,7 @@ private void OnPlayerAttached(EntityUid uid, GhostComponent component, PlayerAtt { return; } - var profile = _ticker.GetPlayerProfile(actor.PlayerSession); + var profile = _gameTicker.GetPlayerProfile(actor.PlayerSession); if (profile == null) return; _humanoidSystem.LoadProfile(uid, profile); @@ -452,8 +451,11 @@ private void OnToggleGhostVisibilityToAll(ToggleGhostVisibilityToAllEvent ev) public void MakeVisible(bool visible) { var entityQuery = EntityQueryEnumerator(); - while (entityQuery.MoveNext(out var uid, out _, out var vis)) + while (entityQuery.MoveNext(out var uid, out var _, out var vis)) { + if (!_tag.HasTag(uid, "AllowGhostShownByEvent")) + continue; + if (visible) { _visibilitySystem.AddLayer((uid, vis), (int) VisibilityFlags.Normal, false); @@ -563,7 +565,7 @@ public bool OnGhostAttempt(EntityUid mindId, bool canReturnGlobal, bool viaComma var playerEntity = mind.CurrentEntity; if (playerEntity != null && viaCommand) - _adminLogger.Add(LogType.Mind, $"{EntityManager.ToPrettyString(playerEntity.Value):player} is attempting to ghost via command"); + _adminLog.Add(LogType.Mind, $"{EntityManager.ToPrettyString(playerEntity.Value):player} is attempting to ghost via command"); var handleEv = new GhostAttemptHandleEvent(mind, canReturnGlobal); RaiseLocalEvent(handleEv); @@ -641,7 +643,7 @@ public bool OnGhostAttempt(EntityUid mindId, bool canReturnGlobal, bool viaComma } if (playerEntity != null) - _adminLogger.Add(LogType.Mind, $"{EntityManager.ToPrettyString(playerEntity.Value):player} ghosted{(!canReturn ? " (non-returnable)" : "")}"); + _adminLog.Add(LogType.Mind, $"{EntityManager.ToPrettyString(playerEntity.Value):player} ghosted{(!canReturn ? " (non-returnable)" : "")}"); var ghost = SpawnGhost((mindId, mind), position, canReturn); diff --git a/Content.Server/GridPreloader/GridPreloaderSystem.cs b/Content.Server/GridPreloader/GridPreloaderSystem.cs index e12ce41a31e..d648acbb06c 100644 --- a/Content.Server/GridPreloader/GridPreloaderSystem.cs +++ b/Content.Server/GridPreloader/GridPreloaderSystem.cs @@ -3,7 +3,6 @@ using Content.Shared.GridPreloader.Prototypes; using Content.Shared.GridPreloader.Systems; using Robust.Server.GameObjects; -using Robust.Server.Maps; using Robust.Shared.Configuration; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -13,6 +12,7 @@ using Content.Server.GameTicking; using Content.Shared.GameTicking; using JetBrains.Annotations; +using Robust.Shared.EntitySerialization.Systems; namespace Content.Server.GridPreloader; public sealed class GridPreloaderSystem : SharedGridPreloaderSystem @@ -72,23 +72,13 @@ private void EnsurePreloadedGridMap() { for (var i = 0; i < proto.Copies; i++) { - var options = new MapLoadOptions + if (!_mapLoader.TryLoadGrid(mapId, proto.Path, out var grid)) { - LoadMap = false, - }; - - if (!_mapLoader.TryLoad(mapId, proto.Path.ToString(), out var roots, options)) - continue; - - // only supports loading maps with one grid. - if (roots.Count != 1) + Log.Error($"Failed to preload grid prototype {proto.ID}"); continue; + } - var gridUid = roots[0]; - - // gets grid + also confirms that the root we loaded is actually a grid - if (!TryComp(gridUid, out var mapGrid)) - continue; + var (gridUid, mapGrid) = grid.Value; if (!TryComp(gridUid, out var physics)) continue; diff --git a/Content.Server/Holiday/Christmas/RandomGiftSystem.cs b/Content.Server/Holiday/Christmas/RandomGiftSystem.cs index 528cbe12775..89e3aae88df 100644 --- a/Content.Server/Holiday/Christmas/RandomGiftSystem.cs +++ b/Content.Server/Holiday/Christmas/RandomGiftSystem.cs @@ -6,7 +6,6 @@ using Content.Shared.Item; using Content.Shared.Whitelist; using Robust.Server.Audio; -using Robust.Server.GameObjects; using Robust.Shared.Map.Components; using Robust.Shared.Physics.Components; using Robust.Shared.Prototypes; @@ -26,6 +25,7 @@ public sealed class RandomGiftSystem : EntitySystem [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; private readonly List _possibleGiftsSafe = new(); private readonly List _possibleGiftsUnsafe = new(); @@ -66,11 +66,16 @@ private void OnUseInHand(EntityUid uid, RandomGiftComponent component, UseInHand if (component.Wrapper is not null) Spawn(component.Wrapper, coords); - args.Handled = true; _audio.PlayPvs(component.Sound, args.User); - Del(uid); + + // Don't delete the entity in the event bus, so we queue it for deletion. + // We need the free hand for the new item, so we send it to nullspace. + _transform.DetachEntity(uid, Transform(uid)); + QueueDel(uid); + _hands.PickupOrDrop(args.User, handsEnt); + args.Handled = true; } private void OnGiftMapInit(EntityUid uid, RandomGiftComponent component, MapInitEvent args) diff --git a/Content.Server/Holopad/HolopadSystem.cs b/Content.Server/Holopad/HolopadSystem.cs index c9b5a92e22e..c28f95f063b 100644 --- a/Content.Server/Holopad/HolopadSystem.cs +++ b/Content.Server/Holopad/HolopadSystem.cs @@ -115,13 +115,13 @@ private void OnHolopadAnswerCall(Entity receiver, ref HolopadA if (source != null) { // Close any AI request windows - if (_stationAiSystem.TryGetStationAiCore(args.Actor, out var stationAiCore) && stationAiCore != null) + if (_stationAiSystem.TryGetCore(args.Actor, out var stationAiCore)) _userInterfaceSystem.CloseUi(receiver.Owner, HolopadUiKey.AiRequestWindow, args.Actor); // Try to warn the AI if the source of the call is out of its range if (TryComp(stationAiCore, out var stationAiTelephone) && TryComp(source, out var sourceTelephone) && - !_telephoneSystem.IsSourceInRangeOfReceiver((stationAiCore.Value.Owner, stationAiTelephone), (source.Value.Owner, sourceTelephone))) + !_telephoneSystem.IsSourceInRangeOfReceiver((stationAiCore.Owner, stationAiTelephone), (source.Value.Owner, sourceTelephone))) { _popupSystem.PopupEntity(Loc.GetString("holopad-ai-is-unable-to-reach-holopad"), receiver, args.Actor); return; @@ -150,11 +150,11 @@ private void OnHolopadEndCall(Entity entity, ref HolopadEndCal // If the user is an AI, end all calls originating from its // associated core to ensure that any broadcasts will end if (!TryComp(args.Actor, out var stationAiHeld) || - !_stationAiSystem.TryGetStationAiCore((args.Actor, stationAiHeld), out var stationAiCore)) + !_stationAiSystem.TryGetCore(args.Actor, out var stationAiCore)) return; if (TryComp(stationAiCore, out var telephone)) - _telephoneSystem.EndTelephoneCalls((stationAiCore.Value, telephone)); + _telephoneSystem.EndTelephoneCalls((stationAiCore, telephone)); } private void OnHolopadActivateProjector(Entity entity, ref HolopadActivateProjectorMessage args) @@ -176,17 +176,17 @@ private void OnHolopadStartBroadcast(Entity source, ref Holopa // Link the AI to the holopad they are broadcasting from LinkHolopadToUser(source, args.Actor); - if (!_stationAiSystem.TryGetStationAiCore((args.Actor, stationAiHeld), out var stationAiCore) || - stationAiCore.Value.Comp.RemoteEntity == null || + if (!_stationAiSystem.TryGetCore(args.Actor, out var stationAiCore) || + stationAiCore.Comp?.RemoteEntity == null || !TryComp(stationAiCore, out var stationAiCoreHolopad)) return; // Execute the broadcast, but have it originate from the AI core - ExecuteBroadcast((stationAiCore.Value, stationAiCoreHolopad), args.Actor); + ExecuteBroadcast((stationAiCore, stationAiCoreHolopad), args.Actor); // Switch the AI's perspective from free roaming to the target holopad - _xformSystem.SetCoordinates(stationAiCore.Value.Comp.RemoteEntity.Value, Transform(source).Coordinates); - _stationAiSystem.SwitchRemoteEntityMode(stationAiCore.Value, false); + _xformSystem.SetCoordinates(stationAiCore.Comp.RemoteEntity.Value, Transform(source).Coordinates); + _stationAiSystem.SwitchRemoteEntityMode(stationAiCore, false); return; } @@ -220,10 +220,10 @@ private void OnHolopadStationAiRequest(Entity entity, ref Holo reachableAiCores.Add((receiverUid, receiverTelephone)); - if (!_stationAiSystem.TryGetInsertedAI((receiver, receiverStationAiCore), out var insertedAi)) + if (!_stationAiSystem.TryGetHeld((receiver, receiverStationAiCore), out var insertedAi)) continue; - if (_userInterfaceSystem.TryOpenUi(receiverUid, HolopadUiKey.AiRequestWindow, insertedAi.Value.Owner)) + if (_userInterfaceSystem.TryOpenUi(receiverUid, HolopadUiKey.AiRequestWindow, insertedAi)) LinkHolopadToUser(entity, args.Actor); } @@ -274,8 +274,8 @@ private void OnHoloCallEnded(Entity entity, ref TelephoneCallE return; // Auto-close the AI request window - if (_stationAiSystem.TryGetInsertedAI((entity, stationAiCore), out var insertedAi)) - _userInterfaceSystem.CloseUi(entity.Owner, HolopadUiKey.AiRequestWindow, insertedAi.Value.Owner); + if (_stationAiSystem.TryGetHeld((entity, stationAiCore), out var insertedAi)) + _userInterfaceSystem.CloseUi(entity.Owner, HolopadUiKey.AiRequestWindow, insertedAi); } private void OnTelephoneMessageSent(Entity holopad, ref TelephoneMessageSentEvent args) @@ -381,13 +381,13 @@ private void OnJumpToCore(Entity entity, ref JumpToCoreEve if (!TryComp(entity, out var entityStationAiHeld)) return; - if (!_stationAiSystem.TryGetStationAiCore((entity, entityStationAiHeld), out var stationAiCore)) + if (!_stationAiSystem.TryGetCore(entity, out var stationAiCore)) return; if (!TryComp(stationAiCore, out var stationAiCoreTelephone)) return; - _telephoneSystem.EndTelephoneCalls((stationAiCore.Value, stationAiCoreTelephone)); + _telephoneSystem.EndTelephoneCalls((stationAiCore, stationAiCoreTelephone)); } private void AddToggleProjectorVerb(Entity entity, ref GetVerbsEvent args) @@ -407,8 +407,8 @@ private void AddToggleProjectorVerb(Entity entity, ref GetVerb if (!TryComp(user, out var userAiHeld)) return; - if (!_stationAiSystem.TryGetStationAiCore((user, userAiHeld), out var stationAiCore) || - stationAiCore.Value.Comp.RemoteEntity == null) + if (!_stationAiSystem.TryGetCore(user, out var stationAiCore) || + stationAiCore.Comp?.RemoteEntity == null) return; AlternativeVerb verb = new() @@ -595,17 +595,17 @@ private void ShutDownHolopad(Entity entity) { // Check if the associated holopad user is an AI if (TryComp(entity.Comp.User, out var stationAiHeld) && - _stationAiSystem.TryGetStationAiCore((entity.Comp.User.Value, stationAiHeld), out var stationAiCore)) + _stationAiSystem.TryGetCore(entity.Comp.User.Value, out var stationAiCore)) { // Return the AI eye to free roaming - _stationAiSystem.SwitchRemoteEntityMode(stationAiCore.Value, true); + _stationAiSystem.SwitchRemoteEntityMode(stationAiCore, true); // If the AI core is still broadcasting, end its calls - if (entity.Owner != stationAiCore.Value.Owner && + if (entity.Owner != stationAiCore.Owner && TryComp(stationAiCore, out var stationAiCoreTelephone) && - _telephoneSystem.IsTelephoneEngaged((stationAiCore.Value.Owner, stationAiCoreTelephone))) + _telephoneSystem.IsTelephoneEngaged((stationAiCore.Owner, stationAiCoreTelephone))) { - _telephoneSystem.EndTelephoneCalls((stationAiCore.Value.Owner, stationAiCoreTelephone)); + _telephoneSystem.EndTelephoneCalls((stationAiCore.Owner, stationAiCoreTelephone)); } } @@ -625,8 +625,8 @@ private void ActivateProjector(Entity entity, EntityUid user) if (!TryComp(user, out var userAiHeld)) return; - if (!_stationAiSystem.TryGetStationAiCore((user, userAiHeld), out var stationAiCore) || - stationAiCore.Value.Comp.RemoteEntity == null) + if (!_stationAiSystem.TryGetCore(user, out var stationAiCore) || + stationAiCore.Comp?.RemoteEntity == null) return; if (!TryComp(stationAiCore, out var stationAiTelephone)) @@ -635,7 +635,7 @@ private void ActivateProjector(Entity entity, EntityUid user) if (!TryComp(stationAiCore, out var stationAiHolopad)) return; - var source = new Entity(stationAiCore.Value, stationAiTelephone); + var source = new Entity(stationAiCore, stationAiTelephone); // Check if the AI is unable to activate the projector (unlikely this will ever pass; its just a safeguard) if (!_telephoneSystem.IsSourceInRangeOfReceiver(source, receiver)) @@ -658,11 +658,11 @@ private void ActivateProjector(Entity entity, EntityUid user) if (!_telephoneSystem.IsSourceConnectedToReceiver(source, receiver)) return; - LinkHolopadToUser((stationAiCore.Value, stationAiHolopad), user); + LinkHolopadToUser((stationAiCore, stationAiHolopad), user); // Switch the AI's perspective from free roaming to the target holopad - _xformSystem.SetCoordinates(stationAiCore.Value.Comp.RemoteEntity.Value, Transform(entity).Coordinates); - _stationAiSystem.SwitchRemoteEntityMode(stationAiCore.Value, false); + _xformSystem.SetCoordinates(stationAiCore.Comp.RemoteEntity.Value, Transform(entity).Coordinates); + _stationAiSystem.SwitchRemoteEntityMode(stationAiCore, false); // Open the holopad UI if it hasn't been opened yet if (TryComp(entity, out var entityUserInterfaceComponent)) diff --git a/Content.Server/IoC/ServerContentIoC.cs b/Content.Server/IoC/ServerContentIoC.cs index 62e0e4ca2d4..8ea5741dc6b 100644 --- a/Content.Server/IoC/ServerContentIoC.cs +++ b/Content.Server/IoC/ServerContentIoC.cs @@ -88,6 +88,7 @@ public static void Register() IoCManager.Register(); // ADT Export IoCManager.Register(); IoCManager.Register(); + IoCManager.Register(); } } } diff --git a/Content.Server/Light/Components/SetRoofComponent.cs b/Content.Server/Light/Components/SetRoofComponent.cs new file mode 100644 index 00000000000..6bfe64aa03d --- /dev/null +++ b/Content.Server/Light/Components/SetRoofComponent.cs @@ -0,0 +1,11 @@ +namespace Content.Server.Light.Components; + +/// +/// Applies the roof flag to this tile and deletes the entity. +/// +[RegisterComponent] +public sealed partial class SetRoofComponent : Component +{ + [DataField(required: true)] + public bool Value; +} diff --git a/Content.Server/Light/EntitySystems/LightCycleSystem.cs b/Content.Server/Light/EntitySystems/LightCycleSystem.cs new file mode 100644 index 00000000000..7d2eacc8bbb --- /dev/null +++ b/Content.Server/Light/EntitySystems/LightCycleSystem.cs @@ -0,0 +1,22 @@ +using Content.Shared; +using Content.Shared.Light.Components; +using Robust.Shared.Random; + +namespace Content.Server.Light.EntitySystems; + +/// +public sealed class LightCycleSystem : SharedLightCycleSystem +{ + [Dependency] private readonly IRobustRandom _random = default!; + + protected override void OnCycleMapInit(Entity ent, ref MapInitEvent args) + { + base.OnCycleMapInit(ent, ref args); + + if (ent.Comp.InitialOffset) + { + ent.Comp.Offset = _random.Next(ent.Comp.Duration); + Dirty(ent); + } + } +} diff --git a/Content.Server/Light/EntitySystems/RoofSystem.cs b/Content.Server/Light/EntitySystems/RoofSystem.cs new file mode 100644 index 00000000000..a3b8cb18361 --- /dev/null +++ b/Content.Server/Light/EntitySystems/RoofSystem.cs @@ -0,0 +1,33 @@ +using Content.Server.Light.Components; +using Content.Shared.Light.EntitySystems; +using Robust.Shared.Map.Components; + +namespace Content.Server.Light.EntitySystems; + +/// +public sealed class RoofSystem : SharedRoofSystem +{ + [Dependency] private readonly SharedMapSystem _maps = default!; + + private EntityQuery _gridQuery; + + public override void Initialize() + { + base.Initialize(); + _gridQuery = GetEntityQuery(); + SubscribeLocalEvent(OnFlagStartup); + } + + private void OnFlagStartup(Entity ent, ref ComponentStartup args) + { + var xform = Transform(ent.Owner); + + if (_gridQuery.TryComp(xform.GridUid, out var grid)) + { + var index = _maps.LocalToTile(xform.GridUid.Value, grid, xform.Coordinates); + SetRoof((xform.GridUid.Value, grid, null), index, ent.Comp.Value); + } + + QueueDel(ent.Owner); + } +} diff --git a/Content.Server/Mapping/MappingCommand.cs b/Content.Server/Mapping/MappingCommand.cs index 70647d32814..12a7af44846 100644 --- a/Content.Server/Mapping/MappingCommand.cs +++ b/Content.Server/Mapping/MappingCommand.cs @@ -3,12 +3,14 @@ using Content.Server.GameTicking; using Content.Shared.Administration; using Content.Shared.CCVar; -using Robust.Server.GameObjects; -using Robust.Server.Maps; using Robust.Shared.Configuration; using Robust.Shared.Console; using Robust.Shared.ContentPack; +using Robust.Shared.EntitySerialization; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map; +using Robust.Shared.Map.Components; +using Robust.Shared.Utility; namespace Content.Server.Mapping { @@ -34,6 +36,8 @@ public CompletionResult GetCompletion(IConsoleShell shell, string[] args) var opts = CompletionHelper.UserFilePath(args[1], res.UserData) .Concat(CompletionHelper.ContentFilePath(args[1], res)); return CompletionResult.FromHintOptions(opts, Loc.GetString("cmd-hint-mapping-path")); + case 3: + return CompletionResult.FromHintOptions(["false", "true"], Loc.GetString("cmd-mapping-hint-grid")); } return CompletionResult.Empty; } @@ -46,7 +50,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (args.Length > 2) + if (args.Length > 3) { shell.WriteLine(Help); return; @@ -56,12 +60,20 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) shell.WriteLine(Loc.GetString("cmd-mapping-warning")); #endif + // For backwards compatibility, isGrid is optional and we allow mappers to try load grids without explicitly + // specifying that they are loading a grid. Currently content is not allowed to override a map's MapId, so + // without engine changes this needs to be done by brute force by just trying to load it as a map first. + // This can result in errors being logged if the file is actually a grid, but the command should still work. + // yipeeee + bool? isGrid = args.Length < 3 ? null : bool.Parse(args[2]); + MapId mapId; string? toLoad = null; var mapSys = _entities.System(); + Entity? grid = null; // Get the map ID to use - if (args.Length is 1 or 2) + if (args.Length > 0) { if (!int.TryParse(args[0], out var intMapId)) { @@ -78,7 +90,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (_map.MapExists(mapId)) + if (mapSys.MapExists(mapId)) { shell.WriteError(Loc.GetString("cmd-mapping-exists", ("mapId", mapId))); return; @@ -91,12 +103,44 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } else { - var loadOptions = new MapLoadOptions {StoreMapUids = true}; - _entities.System().TryLoad(mapId, args[1], out _, loadOptions); + var path = new ResPath(args[1]); + toLoad = path.FilenameWithoutExtension; + var opts = new DeserializationOptions {StoreYamlUids = true}; + var loader = _entities.System(); + + if (isGrid == true) + { + mapSys.CreateMap(mapId, runMapInit: false); + if (!loader.TryLoadGrid(mapId, path, out grid, opts)) + { + shell.WriteError(Loc.GetString("cmd-mapping-error")); + mapSys.DeleteMap(mapId); + return; + } + } + else if (!loader.TryLoadMapWithId(mapId, path, out _, out _, opts)) + { + if (isGrid == false) + { + shell.WriteError(Loc.GetString("cmd-mapping-error")); + return; + } + + // isGrid was not specified and loading it as a map failed, so we fall back to trying to load + // the file as a grid + shell.WriteLine(Loc.GetString("cmd-mapping-try-grid")); + mapSys.CreateMap(mapId, runMapInit: false); + if (!loader.TryLoadGrid(mapId, path, out grid, opts)) + { + shell.WriteError(Loc.GetString("cmd-mapping-error")); + mapSys.DeleteMap(mapId); + return; + } + } } // was the map actually created or did it fail somehow? - if (!_map.MapExists(mapId)) + if (!mapSys.MapExists(mapId)) { shell.WriteError(Loc.GetString("cmd-mapping-error")); return; @@ -115,19 +159,25 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } // don't interrupt mapping with events or auto-shuttle - shell.ExecuteCommand("sudo cvar events.enabled false"); - shell.ExecuteCommand("sudo cvar shuttle.auto_call_time 0"); + shell.ExecuteCommand("changecvar events.enabled false"); + shell.ExecuteCommand("changecvar shuttle.auto_call_time 0"); + + var auto = _entities.System(); + if (grid != null) + auto.ToggleAutosave(grid.Value.Owner, toLoad ?? "NEWGRID"); + else + auto.ToggleAutosave(mapId, toLoad ?? "NEWMAP"); - if (_cfg.GetCVar(CCVars.AutosaveEnabled)) - shell.ExecuteCommand($"toggleautosave {mapId} {toLoad ?? "NEWMAP"}"); shell.ExecuteCommand($"tp 0 0 {mapId}"); shell.RemoteExecuteCommand("mappingclientsidesetup"); - _map.SetMapPaused(mapId, true); + DebugTools.Assert(mapSys.IsPaused(mapId)); - if (args.Length == 2) - shell.WriteLine(Loc.GetString("cmd-mapping-success-load",("mapId",mapId),("path", args[1]))); - else + if (args.Length != 2) shell.WriteLine(Loc.GetString("cmd-mapping-success", ("mapId", mapId))); + else if (grid == null) + shell.WriteLine(Loc.GetString("cmd-mapping-success-load", ("mapId", mapId), ("path", args[1]))); + else + shell.WriteLine(Loc.GetString("cmd-mapping-success-load-grid", ("mapId", mapId), ("path", args[1]))); } } } diff --git a/Content.Server/Mapping/MappingManager.cs b/Content.Server/Mapping/MappingManager.cs index e8c6eca204c..0097df2e553 100644 --- a/Content.Server/Mapping/MappingManager.cs +++ b/Content.Server/Mapping/MappingManager.cs @@ -4,6 +4,8 @@ using Content.Shared.Mapping; using Robust.Server.GameObjects; using Robust.Server.Player; +using Robust.Shared.EntitySerialization; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Serialization; @@ -21,6 +23,7 @@ public sealed class MappingManager : IPostInjectInit [Dependency] private readonly IServerNetManager _net = default!; [Dependency] private readonly IPlayerManager _players = default!; [Dependency] private readonly IEntitySystemManager _systems = default!; + [Dependency] private readonly IEntityManager _ent = default!; private ISawmill _sawmill = default!; private ZStdCompressionContext _zstd = default!; @@ -45,14 +48,14 @@ private void OnMappingSaveMap(MappingSaveMapMessage message) if (!_players.TryGetSessionByChannel(message.MsgChannel, out var session) || !_admin.IsAdmin(session, true) || !_admin.HasAdminFlag(session, AdminFlags.Host) || - session.AttachedEntity is not { } player) + !_ent.TryGetComponent(session.AttachedEntity, out TransformComponent? xform) || + xform.MapUid is not {} mapUid) { return; } - var mapId = _systems.GetEntitySystem().GetMapCoordinates(player).MapId; - var mapEntity = _map.GetMapEntityIdOrThrow(mapId); - var data = _systems.GetEntitySystem().GetSaveData(mapEntity); + var sys = _systems.GetEntitySystem(); + var data = sys.SerializeEntitiesRecursive([mapUid]).Node; var document = new YamlDocument(data.ToYaml()); var stream = new YamlStream { document }; var writer = new StringWriter(); diff --git a/Content.Server/Mapping/MappingSystem.cs b/Content.Server/Mapping/MappingSystem.cs index 28bb3afbe10..b79387b3e5a 100644 --- a/Content.Server/Mapping/MappingSystem.cs +++ b/Content.Server/Mapping/MappingSystem.cs @@ -2,12 +2,12 @@ using Content.Server.Administration; using Content.Shared.Administration; using Content.Shared.CCVar; -using Robust.Server.GameObjects; -using Robust.Server.Maps; using Robust.Shared.Configuration; using Robust.Shared.Console; using Robust.Shared.ContentPack; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map; +using Robust.Shared.Map.Components; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -21,16 +21,16 @@ public sealed class MappingSystem : EntitySystem [Dependency] private readonly IConsoleHost _conHost = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; - [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly SharedMapSystem _map = default!; [Dependency] private readonly IResourceManager _resMan = default!; - [Dependency] private readonly MapLoaderSystem _map = default!; + [Dependency] private readonly MapLoaderSystem _loader = default!; // Not a comp because I don't want to deal with this getting saved onto maps ever /// /// map id -> next autosave timespan & original filename. /// /// - private Dictionary _currentlyAutosaving = new(); + private Dictionary _currentlyAutosaving = new(); private bool _autosaveEnabled; @@ -60,25 +60,29 @@ public override void Update(float frameTime) if (!_autosaveEnabled) return; - foreach (var (map, (time, name))in _currentlyAutosaving.ToArray()) + foreach (var (uid, (time, name))in _currentlyAutosaving) { if (_timing.RealTime <= time) continue; - if (!_mapManager.MapExists(map) || _mapManager.IsMapInitialized(map)) + if (LifeStage(uid) >= EntityLifeStage.MapInitialized) { - Log.Warning($"Can't autosave map {map}; it doesn't exist, or is initialized. Removing from autosave."); - _currentlyAutosaving.Remove(map); - return; + Log.Warning($"Can't autosave entity {uid}; it doesn't exist, or is initialized. Removing from autosave."); + _currentlyAutosaving.Remove(uid); + continue; } + _currentlyAutosaving[uid] = (CalculateNextTime(), name); var saveDir = Path.Combine(_cfg.GetCVar(CCVars.AutosaveDirectory), name); _resMan.UserData.CreateDir(new ResPath(saveDir).ToRootedPath()); - var path = Path.Combine(saveDir, $"{DateTime.Now.ToString("yyyy-M-dd_HH.mm.ss")}-AUTO.yml"); - _currentlyAutosaving[map] = (CalculateNextTime(), name); - Log.Info($"Autosaving map {name} ({map}) to {path}. Next save in {ReadableTimeLeft(map)} seconds."); - _map.SaveMap(map, path); + var path = new ResPath(Path.Combine(saveDir, $"{DateTime.Now:yyyy-M-dd_HH.mm.ss}-AUTO.yml")); + Log.Info($"Autosaving map {name} ({uid}) to {path}. Next save in {ReadableTimeLeft(uid)} seconds."); + + if (HasComp(uid)) + _loader.TrySaveMap(uid, path); + else + _loader.TrySaveGrid(uid, path); } } @@ -87,34 +91,41 @@ private TimeSpan CalculateNextTime() return _timing.RealTime + TimeSpan.FromSeconds(_cfg.GetCVar(CCVars.AutosaveInterval)); } - private double ReadableTimeLeft(MapId map) + private double ReadableTimeLeft(EntityUid uid) { - return Math.Round(_currentlyAutosaving[map].next.TotalSeconds - _timing.RealTime.TotalSeconds); + return Math.Round(_currentlyAutosaving[uid].next.TotalSeconds - _timing.RealTime.TotalSeconds); } #region Public API - public void ToggleAutosave(MapId map, string? path=null) + public void ToggleAutosave(MapId map, string? path = null) + { + if (_map.TryGetMap(map, out var uid)) + ToggleAutosave(uid.Value, path); + } + + public void ToggleAutosave(EntityUid uid, string? path=null) { if (!_autosaveEnabled) return; - if (path != null && _currentlyAutosaving.TryAdd(map, (CalculateNextTime(), Path.GetFileName(path)))) - { - if (!_mapManager.MapExists(map) || _mapManager.IsMapInitialized(map)) - { - Log.Warning("Tried to enable autosaving on non-existant or already initialized map!"); - _currentlyAutosaving.Remove(map); - return; - } + if (_currentlyAutosaving.Remove(uid) || path == null) + return; - Log.Info($"Started autosaving map {path} ({map}). Next save in {ReadableTimeLeft(map)} seconds."); + if (LifeStage(uid) >= EntityLifeStage.MapInitialized) + { + Log.Error("Tried to enable autosaving on a post map-init entity."); + return; } - else + + if (!HasComp(uid) && !HasComp(uid)) { - _currentlyAutosaving.Remove(map); - Log.Info($"Stopped autosaving on map {map}"); + Log.Error($"{ToPrettyString(uid)} is neither a grid or map"); + return; } + + _currentlyAutosaving[uid] = (CalculateNextTime(), Path.GetFileName(path)); + Log.Info($"Started autosaving map {path} ({uid}). Next save in {ReadableTimeLeft(uid)} seconds."); } #endregion diff --git a/Content.Server/Maps/GameMapPrototype.cs b/Content.Server/Maps/GameMapPrototype.cs index 5942a9930eb..c39ca348da0 100644 --- a/Content.Server/Maps/GameMapPrototype.cs +++ b/Content.Server/Maps/GameMapPrototype.cs @@ -25,6 +25,11 @@ public sealed partial class GameMapPrototype : IPrototype [DataField] public float MaxRandomOffset = 1000f; + /// + /// Turns out some of the map files are actually secretly grids. Excellent. I love map loading code. + /// + [DataField] public bool IsGrid; + [DataField] public bool RandomRotation = true; diff --git a/Content.Server/Maps/MapMigrationSystem.cs b/Content.Server/Maps/MapMigrationSystem.cs index 83c2abc5e38..3341034a356 100644 --- a/Content.Server/Maps/MapMigrationSystem.cs +++ b/Content.Server/Maps/MapMigrationSystem.cs @@ -2,8 +2,8 @@ using System.IO; using System.Linq; using Robust.Server.GameObjects; -using Robust.Server.Maps; using Robust.Shared.ContentPack; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map.Events; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.Markdown; diff --git a/Content.Server/Maps/ResaveCommand.cs b/Content.Server/Maps/ResaveCommand.cs index cc4d13ddedf..c48c02c1f73 100644 --- a/Content.Server/Maps/ResaveCommand.cs +++ b/Content.Server/Maps/ResaveCommand.cs @@ -1,11 +1,11 @@ using System.Linq; using Content.Server.Administration; using Content.Shared.Administration; -using Robust.Server.GameObjects; -using Robust.Server.Maps; using Robust.Shared.Console; using Robust.Shared.ContentPack; -using Robust.Shared.Map; +using Robust.Shared.EntitySerialization; +using Robust.Shared.EntitySerialization.Components; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Utility; namespace Content.Server.Maps; @@ -17,8 +17,8 @@ namespace Content.Server.Maps; public sealed class ResaveCommand : LocalizedCommands { [Dependency] private readonly IEntityManager _entManager = default!; - [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IResourceManager _res = default!; + [Dependency] private readonly ILogManager _log = default!; public override string Command => "resave"; @@ -26,32 +26,56 @@ public override void Execute(IConsoleShell shell, string argStr, string[] args) { var loader = _entManager.System(); - foreach (var fn in _res.ContentFindFiles(new ResPath("/Maps/"))) + var opts = MapLoadOptions.Default with { - var mapId = _mapManager.CreateMap(); - _mapManager.AddUninitializedMap(mapId); - loader.Load(mapId, fn.ToString(), new MapLoadOptions() + + DeserializationOptions = DeserializationOptions.Default with + { + StoreYamlUids = true, + LogOrphanedGrids = false + } + }; + + var log = _log.GetSawmill(Command); + var files = _res.ContentFindFiles(new ResPath("/Maps/")).ToList(); + + for (var i = 0; i < files.Count; i++) + { + var fn = files[i]; + log.Info($"Re-saving file {i}/{files.Count} : {fn}"); + + if (!loader.TryLoadGeneric(fn, out var result, opts)) + continue; + + if (result.Maps.Count != 1) { - StoreMapUids = true, - LoadMap = true, - }); + shell.WriteError( + $"Multi-map or multi-grid files like {fn} are not yet supported by the {Command} command"); + loader.Delete(result); + continue; + } + + var map = result.Maps.First(); // Process deferred component removals. _entManager.CullRemovedComponents(); - var mapUid = _mapManager.GetMapEntityId(mapId); - var mapXform = _entManager.GetComponent(mapUid); - - if (_entManager.HasComponent(mapUid) || mapXform.ChildCount != 1) + if (_entManager.HasComponent(map)) { - loader.SaveMap(mapId, fn.ToString()); + loader.TrySaveMap(map.Comp.MapId, fn); } - else if (mapXform.ChildEnumerator.MoveNext(out var child)) + else if (result.Grids.Count == 1) { - loader.Save(child, fn.ToString()); + loader.TrySaveGrid(result.Grids.First(), fn); + } + else + { + shell.WriteError($"Failed to resave {fn}"); } - _mapManager.DeleteMap(mapId); + loader.Delete(result); } + + shell.WriteLine($"Resaved all maps"); } } diff --git a/Content.Server/Medical/HealingSystem.cs b/Content.Server/Medical/HealingSystem.cs index 6c1a7f2c851..b3318b8c2a9 100644 --- a/Content.Server/Medical/HealingSystem.cs +++ b/Content.Server/Medical/HealingSystem.cs @@ -83,7 +83,7 @@ entity.Comp.DamageContainerID is not null && if (healing.ModifyBloodLevel != 0) _bloodstreamSystem.TryModifyBloodLevel(entity.Owner, healing.ModifyBloodLevel); - var healed = _damageable.TryChangeDamage(entity.Owner, healing.Damage, true, origin: args.Args.User); + var healed = _damageable.TryChangeDamage(entity.Owner, healing.Damage * _damageable.UniversalTopicalsHealModifier, true, origin: args.Args.User); if (healed == null && healing.BloodlossModifier != 0) return; diff --git a/Content.Server/Mousetrap/MousetrapSystem.cs b/Content.Server/Mousetrap/MousetrapSystem.cs index e3aaab364dd..3afe858ce02 100644 --- a/Content.Server/Mousetrap/MousetrapSystem.cs +++ b/Content.Server/Mousetrap/MousetrapSystem.cs @@ -27,6 +27,9 @@ public override void Initialize() private void OnUseInHand(EntityUid uid, MousetrapComponent component, UseInHandEvent args) { + if (args.Handled) + return; + component.IsActive = !component.IsActive; _popupSystem.PopupEntity(component.IsActive ? Loc.GetString("mousetrap-on-activate") @@ -35,6 +38,8 @@ private void OnUseInHand(EntityUid uid, MousetrapComponent component, UseInHandE args.User); UpdateVisuals(uid); + + args.Handled = true; } private void OnStepTriggerAttempt(EntityUid uid, MousetrapComponent component, ref StepTriggerAttemptEvent args) diff --git a/Content.Server/NPC/Pathfinding/PathfindingSystem.Distance.cs b/Content.Server/NPC/Pathfinding/PathfindingSystem.Distance.cs index b986ed5259e..2348b25cbfa 100644 --- a/Content.Server/NPC/Pathfinding/PathfindingSystem.Distance.cs +++ b/Content.Server/NPC/Pathfinding/PathfindingSystem.Distance.cs @@ -36,7 +36,7 @@ private Vector2 GetDiff(PathPoly start, PathPoly end) return Vector2.Zero; } - endPos = Vector2.Transform(Vector2.Transform(endPos, endXform.WorldMatrix), startXform.InvWorldMatrix); + endPos = Vector2.Transform(Vector2.Transform(endPos, _transform.GetWorldMatrix(endXform)), _transform.GetInvWorldMatrix(startXform)); } // TODO: Numerics when we changeover. diff --git a/Content.Server/NPC/Pathfinding/PathfindingSystem.cs b/Content.Server/NPC/Pathfinding/PathfindingSystem.cs index b2958f0ccb5..525f2417ce1 100644 --- a/Content.Server/NPC/Pathfinding/PathfindingSystem.cs +++ b/Content.Server/NPC/Pathfinding/PathfindingSystem.cs @@ -405,7 +405,7 @@ public async void GetPathEvent( return null; } - var localPos = Vector2.Transform(coordinates.ToMapPos(EntityManager, _transform), xform.InvWorldMatrix); + var localPos = Vector2.Transform(coordinates.ToMapPos(EntityManager, _transform), _transform.GetInvWorldMatrix(xform)); var origin = GetOrigin(localPos); if (!TryGetChunk(origin, comp, out var chunk)) diff --git a/Content.Server/NameIdentifier/NameIdentifierSystem.cs b/Content.Server/NameIdentifier/NameIdentifierSystem.cs index 6db6e0ff565..273e9407fd5 100644 --- a/Content.Server/NameIdentifier/NameIdentifierSystem.cs +++ b/Content.Server/NameIdentifier/NameIdentifierSystem.cs @@ -14,7 +14,6 @@ public sealed class NameIdentifierSystem : EntitySystem [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IRobustRandom _robustRandom = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; - [Dependency] private readonly ILogManager _logManager = default!; /// /// Free IDs available per . diff --git a/Content.Server/Nutrition/EntitySystems/FoodSequenceSystem.cs b/Content.Server/Nutrition/EntitySystems/FoodSequenceSystem.cs index ae8215ac6ae..d5b4a0e2b36 100644 --- a/Content.Server/Nutrition/EntitySystems/FoodSequenceSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FoodSequenceSystem.cs @@ -39,7 +39,7 @@ public override void Initialize() private void OnInteractUsing(Entity ent, ref InteractUsingEvent args) { if (TryComp(args.Used, out var sequenceElement)) - TryAddFoodElement(ent, (args.Used, sequenceElement), args.User); + args.Handled = TryAddFoodElement(ent, (args.Used, sequenceElement), args.User); } private void OnIngredientAdded(Entity ent, ref FoodSequenceIngredientAddedEvent args) diff --git a/Content.Server/PAI/PAISystem.cs b/Content.Server/PAI/PAISystem.cs index 0cdb0bc29a2..b0f4f2476d8 100644 --- a/Content.Server/PAI/PAISystem.cs +++ b/Content.Server/PAI/PAISystem.cs @@ -37,6 +37,8 @@ public override void Initialize() private void OnUseInHand(EntityUid uid, PAIComponent component, UseInHandEvent args) { + // Not checking for Handled because ToggleableGhostRoleSystem already marks it as such. + if (!TryComp(uid, out var mind) || !mind.HasMind) component.LastUser = args.User; } diff --git a/Content.Server/Parallax/BiomeSystem.cs b/Content.Server/Parallax/BiomeSystem.cs index 109aa0f6e47..e419e90fd38 100644 --- a/Content.Server/Parallax/BiomeSystem.cs +++ b/Content.Server/Parallax/BiomeSystem.cs @@ -12,6 +12,7 @@ using Content.Shared.Decals; using Content.Shared.Ghost; using Content.Shared.Gravity; +using Content.Shared.Light.Components; using Content.Shared.Parallax.Biomes; using Content.Shared.Parallax.Biomes.Layers; using Content.Shared.Parallax.Biomes.Markers; @@ -330,6 +331,9 @@ public override void Update(float frameTime) while (biomes.MoveNext(out var biome)) { + if (biome.LifeStage < ComponentLifeStage.Running) + continue; + _activeChunks.Add(biome, _tilePool.Get()); _markerChunks.GetOrNew(biome); } @@ -379,6 +383,10 @@ public override void Update(float frameTime) while (loadBiomes.MoveNext(out var gridUid, out var biome, out var grid)) { + // If not MapInit don't run it. + if (biome.LifeStage < ComponentLifeStage.Running) + continue; + if (!biome.Enabled) continue; @@ -745,7 +753,10 @@ private void LoadChunkMarkers( } if (modified.Count == 0) + { + component.ModifiedTiles.Remove(chunk); _tilePool.Return(modified); + } component.PendingMarkers.Remove(chunk); } @@ -1014,11 +1025,14 @@ public void EnsurePlanet(EntityUid mapUid, BiomeTemplatePrototype biomeTemplate, // Midday: #E6CB8B // Moonlight: #2b3143 // Lava: #A34931 - var light = EnsureComp(mapUid); light.AmbientLightColor = mapLight ?? Color.FromHex("#D8B059"); Dirty(mapUid, light, metadata); + EnsureComp(mapUid); + + EnsureComp(mapUid); + var moles = new float[Atmospherics.AdjustedNumberOfGases]; moles[(int) Gas.Oxygen] = 21.824779f; moles[(int) Gas.Nitrogen] = 82.10312f; diff --git a/Content.Server/Physics/Controllers/ConveyorController.cs b/Content.Server/Physics/Controllers/ConveyorController.cs index 3c0db7f85a3..bf6abff1580 100644 --- a/Content.Server/Physics/Controllers/ConveyorController.cs +++ b/Content.Server/Physics/Controllers/ConveyorController.cs @@ -109,7 +109,7 @@ private void SetState(EntityUid uid, ConveyorState state, ConveyorComponent? com component.State = state; if (TryComp(uid, out var physics)) - _broadphase.RegenerateContacts(uid, physics); + _broadphase.RegenerateContacts((uid, physics)); UpdateAppearance(uid, component); Dirty(uid, component); diff --git a/Content.Server/Polymorph/Systems/PolymorphSystem.cs b/Content.Server/Polymorph/Systems/PolymorphSystem.cs index 8b95a2e18d7..72ed4b40746 100644 --- a/Content.Server/Polymorph/Systems/PolymorphSystem.cs +++ b/Content.Server/Polymorph/Systems/PolymorphSystem.cs @@ -315,6 +315,10 @@ private void OnDestruction(Entity ent, ref Destructi if (PausedMap != null) _transform.SetParent(uid, targetTransformComp, PausedMap.Value); + // Raise an event to inform anything that wants to know about the entity swap + var ev = new PolymorphedEvent(uid, child, false); + RaiseLocalEvent(uid, ref ev); + // goob edit if (TryComp(uid, out var followed)) foreach (var f in followed.Following) @@ -429,6 +433,10 @@ private void RetrievePausedEntity(EntityUid user, EntityUid target) // if an item polymorph was picked up, put it back down after reverting _transform.AttachToGridOrMap(parent, parentXform); + // Raise an event to inform anything that wants to know about the entity swap + var ev = new PolymorphedEvent(uid, parent, true); + RaiseLocalEvent(uid, ref ev); + _popup.PopupEntity(Loc.GetString("polymorph-revert-popup-generic", ("parent", Identity.Entity(uid, EntityManager)), ("child", Identity.Entity(parent, EntityManager))), diff --git a/Content.Server/Popups/PopupSystem.cs b/Content.Server/Popups/PopupSystem.cs index 4aa3d39224c..22e4ae483ae 100644 --- a/Content.Server/Popups/PopupSystem.cs +++ b/Content.Server/Popups/PopupSystem.cs @@ -11,7 +11,7 @@ public sealed class PopupSystem : SharedPopupSystem { [Dependency] private readonly IPlayerManager _player = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; - [Dependency] private readonly TransformSystem _xform = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; public override void PopupCursor(string? message, PopupType type = PopupType.Small) { @@ -47,8 +47,7 @@ public override void PopupCoordinates(string? message, EntityCoordinates coordin { if (message == null) return; - - var mapPos = coordinates.ToMap(EntityManager, _xform); + var mapPos = _transform.ToMapCoordinates(coordinates); var filter = Filter.Empty().AddPlayersByPvs(mapPos, entManager: EntityManager, playerMan: _player, cfgMan: _cfg); RaiseNetworkEvent(new PopupCoordinatesEvent(message, type, GetNetCoordinates(coordinates)), filter); } @@ -70,6 +69,21 @@ public override void PopupCoordinates(string? message, EntityCoordinates coordin RaiseNetworkEvent(new PopupCoordinatesEvent(message, type, GetNetCoordinates(coordinates)), actor.PlayerSession); } + public override void PopupPredictedCoordinates(string? message, EntityCoordinates coordinates, EntityUid? recipient, PopupType type = PopupType.Small) + { + if (message == null) + return; + + var mapPos = _transform.ToMapCoordinates(coordinates); + var filter = Filter.Empty().AddPlayersByPvs(mapPos, entManager: EntityManager, playerMan: _player, cfgMan: _cfg); + if (recipient != null) + { + // Don't send to recipient, since they predicted it locally + filter = filter.RemovePlayerByAttachedEntity(recipient.Value); + } + RaiseNetworkEvent(new PopupCoordinatesEvent(message, type, GetNetCoordinates(coordinates)), filter); + } + public override void PopupEntity(string? message, EntityUid uid, PopupType type = PopupType.Small) { if (message == null) diff --git a/Content.Server/Procedural/DungeonSystem.Rooms.cs b/Content.Server/Procedural/DungeonSystem.Rooms.cs index 83c243e71c7..49ba92bd4f8 100644 --- a/Content.Server/Procedural/DungeonSystem.Rooms.cs +++ b/Content.Server/Procedural/DungeonSystem.Rooms.cs @@ -17,9 +17,20 @@ public sealed partial class DungeonSystem private readonly List _availableRooms = new(); /// - /// Gets a random dungeon room matching the specified area and whitelist. + /// Gets a random dungeon room matching the specified area, whitelist and size. /// public DungeonRoomPrototype? GetRoomPrototype(Vector2i size, Random random, EntityWhitelist? whitelist = null) + { + return GetRoomPrototype(random, whitelist, minSize: size, maxSize: size); + } + + /// + /// Gets a random dungeon room matching the specified area and whitelist and size range + /// + public DungeonRoomPrototype? GetRoomPrototype(Random random, + EntityWhitelist? whitelist = null, + Vector2i? minSize = null, + Vector2i? maxSize = null) { // Can never be true. if (whitelist is { Tags: null }) @@ -31,8 +42,11 @@ public sealed partial class DungeonSystem foreach (var proto in _prototype.EnumeratePrototypes()) { - // if (proto.Size != size) #ADT tweak - // continue; + if (minSize is not null && (proto.Size.X < minSize.Value.X || proto.Size.Y < minSize.Value.Y)) + continue; + + if (maxSize is not null && (proto.Size.X > maxSize.Value.X || proto.Size.Y > maxSize.Value.Y)) + continue; if (whitelist == null) { @@ -115,29 +129,6 @@ public void SpawnRoom( var finalRoomRotation = roomTransform.Rotation(); - // go BRRNNTTT on existing stuff - if (clearExisting) - { - var gridBounds = new Box2(Vector2.Transform(-room.Size/2, roomTransform), Vector2.Transform(room.Size/2, roomTransform)); - _entitySet.Clear(); - // Polygon skin moment - gridBounds = gridBounds.Enlarged(-0.05f); - _lookup.GetLocalEntitiesIntersecting(gridUid, gridBounds, _entitySet, LookupFlags.Uncontained); - - foreach (var templateEnt in _entitySet) - { - Del(templateEnt); - } - - if (TryComp(gridUid, out DecalGridComponent? decalGrid)) - { - foreach (var decal in _decals.GetDecalsIntersecting(gridUid, gridBounds, decalGrid)) - { - _decals.RemoveDecal(gridUid, decal.Index, decalGrid); - } - } - } - var roomCenter = (room.Offset + room.Size / 2f) * grid.TileSize; var tileOffset = -roomCenter + grid.TileSizeHalfVector; _tiles.Clear(); @@ -156,7 +147,22 @@ public void SpawnRoom( if (!clearExisting && reservedTiles?.Contains(rounded) == true) continue; + if (room.IgnoreTile is not null) + { + if (_maps.TryGetTileDef(templateGrid, indices, out var tileDef) && room.IgnoreTile == tileDef.ID) + continue; + } + _tiles.Add((rounded, tileRef.Tile)); + + if (clearExisting) + { + var anchored = _maps.GetAnchoredEntities((gridUid, grid), rounded); + foreach (var ent in anchored) + { + QueueDel(ent); + } + } } } diff --git a/Content.Server/Procedural/DungeonSystem.cs b/Content.Server/Procedural/DungeonSystem.cs index 706f63ffd7d..521ebed7ec7 100644 --- a/Content.Server/Procedural/DungeonSystem.cs +++ b/Content.Server/Procedural/DungeonSystem.cs @@ -15,10 +15,13 @@ using Robust.Shared.Collections; using Robust.Shared.Configuration; using Robust.Shared.Console; +using Robust.Shared.EntitySerialization; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Prototypes; using Robust.Shared.Random; +using Robust.Shared.Utility; namespace Content.Server.Procedural; @@ -173,14 +176,18 @@ public MapId GetOrCreateTemplate(DungeonRoomPrototype proto) return Transform(uid).MapID; } - var mapId = _mapManager.CreateMap(); - _mapManager.AddUninitializedMap(mapId); - _loader.Load(mapId, proto.AtlasPath.ToString()); - var mapUid = _mapManager.GetMapEntityId(mapId); - _mapManager.SetMapPaused(mapId, true); - comp = AddComp(mapUid); + var opts = new MapLoadOptions + { + DeserializationOptions = DeserializationOptions.Default with {PauseMaps = true}, + ExpectedCategory = FileCategory.Map + }; + + if (!_loader.TryLoadGeneric(proto.AtlasPath, out var res, opts) || !res.Maps.TryFirstOrNull(out var map)) + throw new Exception($"Failed to load dungeon template."); + + comp = AddComp(map.Value.Owner); comp.Path = proto.AtlasPath; - return mapId; + return map.Value.Comp.MapId; } /// diff --git a/Content.Server/Procedural/RoomFillComponent.cs b/Content.Server/Procedural/RoomFillComponent.cs index 50d0fa7c0ad..d4f4078d93c 100644 --- a/Content.Server/Procedural/RoomFillComponent.cs +++ b/Content.Server/Procedural/RoomFillComponent.cs @@ -1,6 +1,4 @@ -using Content.Shared.Procedural; using Content.Shared.Whitelist; -using Robust.Shared.Prototypes; namespace Content.Server.Procedural; @@ -18,20 +16,26 @@ public sealed partial class RoomFillComponent : Component public bool Rotation = true; /// - /// Size of the room to fill. + /// Min size of the possible selected room. /// - [DataField(required: true)] - public Vector2i Size; + [DataField] + public Vector2i MinSize = new (3, 3); + + /// + /// Max size of the possible selected room. + /// + [DataField] + public Vector2i MaxSize = new (10, 10); /// /// Rooms allowed for the marker. /// [DataField] public EntityWhitelist? RoomWhitelist; - + /// /// Should any existing entities / decals be bulldozed first. /// [DataField] - public bool ClearExisting; + public bool ClearExisting = true; } diff --git a/Content.Server/Procedural/RoomFillSystem.cs b/Content.Server/Procedural/RoomFillSystem.cs index b539cc9780e..f4ccab23673 100644 --- a/Content.Server/Procedural/RoomFillSystem.cs +++ b/Content.Server/Procedural/RoomFillSystem.cs @@ -15,16 +15,12 @@ public override void Initialize() private void OnRoomFillMapInit(EntityUid uid, RoomFillComponent component, MapInitEvent args) { - // Just test things. - if (component.Size == Vector2i.Zero) - return; - var xform = Transform(uid); if (xform.GridUid != null) { var random = new Random(); - var room = _dungeon.GetRoomPrototype(component.Size, random, component.RoomWhitelist); + var room = _dungeon.GetRoomPrototype(random, component.RoomWhitelist, component.MinSize, component.MaxSize); if (room != null) { @@ -32,7 +28,7 @@ private void OnRoomFillMapInit(EntityUid uid, RoomFillComponent component, MapIn _dungeon.SpawnRoom( xform.GridUid.Value, mapGrid, - _maps.LocalToTile(xform.GridUid.Value, mapGrid, xform.Coordinates), + _maps.LocalToTile(xform.GridUid.Value, mapGrid, xform.Coordinates) - new Vector2i(room.Size.X/2,room.Size.Y/2), room, random, null, diff --git a/Content.Server/Projectiles/ProjectileSystem.cs b/Content.Server/Projectiles/ProjectileSystem.cs index 3bccfcf7274..bc641dd15f5 100644 --- a/Content.Server/Projectiles/ProjectileSystem.cs +++ b/Content.Server/Projectiles/ProjectileSystem.cs @@ -51,7 +51,7 @@ private void OnStartCollide(EntityUid uid, ProjectileComponent component, ref St return; // ADT TornadoTech Tweak End - var ev = new ProjectileHitEvent(component.Damage, target, component.Shooter); + var ev = new ProjectileHitEvent(component.Damage * _damageableSystem.UniversalProjectileDamageModifier, target, component.Shooter); RaiseLocalEvent(uid, ref ev); var otherName = ToPrettyString(target); diff --git a/Content.Server/Research/Systems/ResearchSystem.Console.cs b/Content.Server/Research/Systems/ResearchSystem.Console.cs index c227aee7f07..baaf06ea714 100644 --- a/Content.Server/Research/Systems/ResearchSystem.Console.cs +++ b/Content.Server/Research/Systems/ResearchSystem.Console.cs @@ -21,6 +21,7 @@ private void InitializeConsole() SubscribeLocalEvent(OnPointsChanged); SubscribeLocalEvent(OnConsoleRegistrationChanged); SubscribeLocalEvent(OnConsoleDatabaseModified); + SubscribeLocalEvent(OnConsoleDatabaseSynchronized); SubscribeLocalEvent(OnEmagged); } @@ -100,6 +101,12 @@ private void OnConsoleRegistrationChanged(EntityUid uid, ResearchConsoleComponen } private void OnConsoleDatabaseModified(EntityUid uid, ResearchConsoleComponent component, ref TechnologyDatabaseModifiedEvent args) + { + SyncClientWithServer(uid); + UpdateConsoleInterface(uid, component); + } + + private void OnConsoleDatabaseSynchronized(EntityUid uid, ResearchConsoleComponent component, ref TechnologyDatabaseSynchronizedEvent args) { UpdateConsoleInterface(uid, component); } @@ -114,5 +121,4 @@ private void OnEmagged(Entity ent, ref GotEmaggedEvent args.Handled = true; } - } diff --git a/Content.Server/Research/Systems/ResearchSystem.Technology.cs b/Content.Server/Research/Systems/ResearchSystem.Technology.cs index 7578d316c5e..360985b4b63 100644 --- a/Content.Server/Research/Systems/ResearchSystem.Technology.cs +++ b/Content.Server/Research/Systems/ResearchSystem.Technology.cs @@ -23,7 +23,7 @@ public void Sync(EntityUid primaryUid, EntityUid otherUid, TechnologyDatabaseCom Dirty(primaryUid, primaryDb); - var ev = new TechnologyDatabaseModifiedEvent(); + var ev = new TechnologyDatabaseSynchronizedEvent(); RaiseLocalEvent(primaryUid, ref ev); } diff --git a/Content.Server/Salvage/SalvageSystem.Magnet.cs b/Content.Server/Salvage/SalvageSystem.Magnet.cs index 81db78fb201..523ac06e0b5 100644 --- a/Content.Server/Salvage/SalvageSystem.Magnet.cs +++ b/Content.Server/Salvage/SalvageSystem.Magnet.cs @@ -2,19 +2,19 @@ using System.Numerics; using System.Threading.Tasks; using Content.Server.Salvage.Magnet; -using Content.Shared.Humanoid; using Content.Shared.Mobs.Components; using Content.Shared.Procedural; using Content.Shared.Radio; using Content.Shared.Salvage.Magnet; -using Robust.Server.Maps; +using Robust.Shared.Exceptions; using Robust.Shared.Map; -using Robust.Shared.Map.Components; namespace Content.Server.Salvage; public sealed partial class SalvageSystem { + [Dependency] private readonly IRuntimeLog _runtimeLog = default!; + [ValidatePrototypeId] private const string MagnetChannel = "Supply"; @@ -45,7 +45,19 @@ private void OnMagnetClaim(EntityUid uid, SalvageMagnetComponent component, ref return; } - TakeMagnetOffer((station.Value, dataComp), args.Index, (uid, component)); + var index = args.Index; + async void TryTakeMagnetOffer() + { + try + { + await TakeMagnetOffer((station.Value, dataComp), index, (uid, component)); + } + catch (Exception e) + { + _runtimeLog.LogException(e, $"{nameof(SalvageSystem)}.{nameof(TakeMagnetOffer)}"); + } + } + TryTakeMagnetOffer(); } private void OnMagnetStartup(EntityUid uid, SalvageMagnetComponent component, ComponentStartup args) @@ -278,15 +290,10 @@ private async Task TakeMagnetOffer(Entity data, int case SalvageOffering wreck: var salvageProto = wreck.SalvageMap; - var opts = new MapLoadOptions - { - Offset = new Vector2(0, 0) - }; - - if (!_map.TryLoad(salvMapXform.MapID, salvageProto.MapPath.ToString(), out _, opts)) + if (!_loader.TryLoadGrid(salvMapXform.MapID, salvageProto.MapPath, out _)) { Report(magnet, MagnetChannel, "salvage-system-announcement-spawn-debris-disintegrated"); - _mapManager.DeleteMap(salvMapXform.MapID); + _mapSystem.DeleteMap(salvMapXform.MapID); return; } diff --git a/Content.Server/Salvage/SalvageSystem.cs b/Content.Server/Salvage/SalvageSystem.cs index eb5719c892f..9115c605366 100644 --- a/Content.Server/Salvage/SalvageSystem.cs +++ b/Content.Server/Salvage/SalvageSystem.cs @@ -1,38 +1,23 @@ -using System.Linq; -using System.Numerics; -using Content.Server.Cargo.Systems; -using Content.Server.Construction; -using Content.Server.GameTicking; using Content.Server.Radio.EntitySystems; -using Content.Shared.Examine; -using Content.Shared.Interaction; -using Content.Shared.Popups; using Content.Shared.Radio; using Content.Shared.Salvage; using Robust.Server.GameObjects; using Robust.Shared.Configuration; using Robust.Shared.Map; -using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; -using Robust.Shared.Utility; using Content.Server.Chat.Managers; using Content.Server.Gravity; using Content.Server.Parallax; using Content.Server.Procedural; using Content.Server.Shuttles.Systems; using Content.Server.Station.Systems; -using Content.Shared.CCVar; using Content.Shared.Construction.EntitySystems; -using Content.Shared.Random; -using Content.Shared.Random.Helpers; -using Content.Shared.Tools.Components; -using Robust.Server.Maps; -using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Map.Components; using Robust.Shared.Timing; using Content.Server.Labels; +using Robust.Shared.EntitySerialization.Systems; namespace Content.Server.Salvage { @@ -50,7 +35,7 @@ public sealed partial class SalvageSystem : SharedSalvageSystem [Dependency] private readonly DungeonSystem _dungeon = default!; [Dependency] private readonly GravitySystem _gravity = default!; [Dependency] private readonly LabelSystem _labelSystem = default!; - [Dependency] private readonly MapLoaderSystem _map = default!; + [Dependency] private readonly MapLoaderSystem _loader = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly RadioSystem _radioSystem = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; diff --git a/Content.Server/Sandbox/Commands/ColorNetworkCommand.cs b/Content.Server/Sandbox/Commands/ColorNetworkCommand.cs index 1fc207058d8..0a778f58803 100644 --- a/Content.Server/Sandbox/Commands/ColorNetworkCommand.cs +++ b/Content.Server/Sandbox/Commands/ColorNetworkCommand.cs @@ -19,7 +19,7 @@ public override void Execute(IConsoleShell shell, string argStr, string[] args) { var sandboxManager = _entManager.System(); var adminManager = IoCManager.Resolve(); - if (shell.IsClient && (!sandboxManager.IsSandboxEnabled && !adminManager.HasAdminFlag(shell.Player!, AdminFlags.Mapping))) + if (shell.IsClient || (!sandboxManager.IsSandboxEnabled && !adminManager.HasAdminFlag(shell.Player!, AdminFlags.Mapping))) { shell.WriteError(Loc.GetString("cmd-colornetwork-no-access")); } diff --git a/Content.Server/Shuttles/Components/ThrusterComponent.cs b/Content.Server/Shuttles/Components/ThrusterComponent.cs index 3bba9b5a7f0..20f020743d1 100644 --- a/Content.Server/Shuttles/Components/ThrusterComponent.cs +++ b/Content.Server/Shuttles/Components/ThrusterComponent.cs @@ -6,7 +6,7 @@ namespace Content.Server.Shuttles.Components { - [RegisterComponent, NetworkedComponent] + [RegisterComponent, NetworkedComponent, AutoGenerateComponentPause] [Access(typeof(ThrusterSystem))] public sealed partial class ThrusterComponent : Component { @@ -50,11 +50,17 @@ public sealed partial class ThrusterComponent : Component public bool Firing = false; + /// + /// How often thruster deals damage. + /// + [DataField] + public TimeSpan FireCooldown = TimeSpan.FromSeconds(2); + /// /// Next time we tick damage for anyone colliding. /// - [ViewVariables(VVAccess.ReadWrite), DataField("nextFire", customTypeSerializer:typeof(TimeOffsetSerializer))] - public TimeSpan NextFire; + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoPausedField] + public TimeSpan NextFire = TimeSpan.Zero; } public enum ThrusterType diff --git a/Content.Server/Shuttles/Systems/ArrivalsSystem.cs b/Content.Server/Shuttles/Systems/ArrivalsSystem.cs index 3869fc686b8..63e682adac0 100644 --- a/Content.Server/Shuttles/Systems/ArrivalsSystem.cs +++ b/Content.Server/Shuttles/Systems/ArrivalsSystem.cs @@ -30,11 +30,13 @@ using Robust.Shared.Collections; using Robust.Shared.Configuration; using Robust.Shared.Console; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; +using Robust.Shared.Utility; using TimedDespawnComponent = Robust.Shared.Spawners.TimedDespawnComponent; namespace Content.Server.Shuttles.Systems; @@ -523,15 +525,13 @@ private void OnRoundStarting(RoundStartingEvent ev) private void SetupArrivalsStation() { - var mapUid = _mapSystem.CreateMap(out var mapId, false); - _metaData.SetEntityName(mapUid, Loc.GetString("map-name-terminal")); - - if (!_loader.TryLoad(mapId, _cfgManager.GetCVar(CCVars.ArrivalsMap), out var uids)) - { + var path = new ResPath(_cfgManager.GetCVar(CCVars.ArrivalsMap)); + if (!_loader.TryLoadMap(path, out var map, out var grids)) return; - } - foreach (var id in uids) + _metaData.SetEntityName(map.Value, Loc.GetString("map-name-terminal")); + + foreach (var id in grids) { EnsureComp(id); EnsureComp(id); @@ -542,15 +542,15 @@ private void SetupArrivalsStation() if (_cfgManager.GetCVar(CCVars.ArrivalsPlanet)) { var template = _random.Pick(_arrivalsBiomeOptions); - _biomes.EnsurePlanet(mapUid, _protoManager.Index(template)); + _biomes.EnsurePlanet(map.Value, _protoManager.Index(template)); var restricted = new RestrictedRangeComponent { Range = 32f }; - AddComp(mapUid, restricted); + AddComp(map.Value, restricted); } - _mapSystem.InitializeMap(mapId); + _mapSystem.InitializeMap(map.Value.Comp.MapId); // Handle roundstart stations. var query = AllEntityQuery(); @@ -611,9 +611,9 @@ private void SetupShuttle(EntityUid uid, StationArrivalsComponent component) var dummpMapEntity = _mapSystem.CreateMap(out var dummyMapId); if (TryGetArrivals(out var arrivals) && - _loader.TryLoad(dummyMapId, component.ShuttlePath.ToString(), out var shuttleUids)) + _loader.TryLoadGrid(dummyMapId, component.ShuttlePath, out var shuttle)) { - component.Shuttle = shuttleUids[0]; + component.Shuttle = shuttle.Value; var shuttleComp = Comp(component.Shuttle); var arrivalsComp = EnsureComp(component.Shuttle); arrivalsComp.Station = uid; diff --git a/Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs b/Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs index aabfaa31dd8..8435075a692 100644 --- a/Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs +++ b/Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs @@ -323,7 +323,9 @@ private bool ValidSpawn(Entity gridEntity, Matrix3x2 matty, An // If it's a map check no hard collidable anchored entities overlap if (isMap) { - foreach (var tile in _mapSystem.GetLocalTilesIntersecting(gridEntity.Owner, gridEntity.Comp, aabb)) + var localTiles = _mapSystem.GetLocalTilesEnumerator(gridEntity.Owner, gridEntity.Comp, aabb); + + while (localTiles.MoveNext(out var tile)) { var anchoredEnumerator = _mapSystem.GetAnchoredEntitiesEnumerator(gridEntity.Owner, gridEntity.Comp, tile.GridIndices); diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs index 6c4bdc08148..afa77421bd7 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs @@ -29,10 +29,9 @@ using Content.Shared.Tag; using Content.Shared.Tiles; using Robust.Server.GameObjects; -using Robust.Server.Maps; using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; -using Robust.Shared.Map; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map.Components; using Robust.Shared.Player; using Robust.Shared.Random; @@ -60,7 +59,7 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem [Dependency] private readonly DockingSystem _dock = default!; [Dependency] private readonly IdCardSystem _idSystem = default!; [Dependency] private readonly NavMapSystem _navMap = default!; - [Dependency] private readonly MapLoaderSystem _map = default!; + [Dependency] private readonly MapLoaderSystem _loader = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly RoundEndSystem _roundEnd = default!; @@ -531,10 +530,11 @@ private void AddCentcomm(EntityUid station, StationCentcommComponent component) } var map = _mapSystem.CreateMap(out var mapId); - var grid = _map.LoadGrid(mapId, component.Map.ToString(), new MapLoadOptions() + if (!_loader.TryLoadGrid(mapId, component.Map, out var grid)) { - LoadMap = false, - }); + Log.Error($"Failed to set up centcomm grid!"); + return; + } if (!Exists(map)) { @@ -608,15 +608,11 @@ private void AddEmergencyShuttle(Entity 0) + if (_loader.TryLoadGrid(mapId, component.Path, out var ent)) { - if (HasComp(ent[0])) - { - TryFTLProximity(ent[0], targetGrid.Value); - } + if (HasComp(ent)) + TryFTLProximity(ent.Value, targetGrid.Value); - _station.AddGridToStation(uid, ent[0]); + _station.AddGridToStation(uid, ent.Value); } - _mapManager.DeleteMap(mapId); + _mapSystem.DeleteMap(mapId); } private bool TryDungeonSpawn(Entity targetGrid, DungeonSpawnGroup group, out EntityUid spawned) @@ -143,20 +141,18 @@ private bool TryGridSpawn(EntityUid targetGrid, EntityUid stationUid, MapId mapI var path = paths[^1]; paths.RemoveAt(paths.Count - 1); - if (_loader.TryLoad(mapId, path.ToString(), out var ent) && ent.Count == 1) + if (_loader.TryLoadGrid(mapId, path, out var grid)) { - if (HasComp(ent[0])) - { - TryFTLProximity(ent[0], targetGrid); - } + if (HasComp(grid)) + TryFTLProximity(grid.Value, targetGrid); if (group.NameGrid) { var name = path.FilenameWithoutExtension; - _metadata.SetEntityName(ent[0], name); + _metadata.SetEntityName(grid.Value, name); } - spawned = ent[0]; + spawned = grid.Value; return true; } @@ -227,7 +223,7 @@ private void GridSpawns(EntityUid uid, GridSpawnComponent component) } } - _mapManager.DeleteMap(mapId); + _mapSystem.DeleteMap(mapId); } private void OnGridFillMapInit(EntityUid uid, GridFillComponent component, MapInitEvent args) @@ -246,23 +242,22 @@ private void OnGridFillMapInit(EntityUid uid, GridFillComponent component, MapIn _mapSystem.CreateMap(out var mapId); var valid = false; - if (_loader.TryLoad(mapId, component.Path.ToString(), out var ent) && - ent.Count == 1 && - TryComp(ent[0], out TransformComponent? shuttleXform)) + if (_loader.TryLoadGrid(mapId, component.Path, out var grid)) { - var escape = GetSingleDock(ent[0]); + var escape = GetSingleDock(grid.Value); if (escape != null) { - var config = _dockSystem.GetDockingConfig(ent[0], xform.GridUid.Value, escape.Value.Entity, escape.Value.Component, uid, dock); + var config = _dockSystem.GetDockingConfig(grid.Value, xform.GridUid.Value, escape.Value.Entity, escape.Value.Component, uid, dock); if (config != null) { - FTLDock((ent[0], shuttleXform), config); + var shuttleXform = Transform(grid.Value); + FTLDock((grid.Value, shuttleXform), config); if (TryComp(xform.GridUid, out var stationMember)) { - _station.AddGridToStation(stationMember.Station, ent[0]); + _station.AddGridToStation(stationMember.Station, grid.Value); } valid = true; @@ -273,11 +268,11 @@ private void OnGridFillMapInit(EntityUid uid, GridFillComponent component, MapIn { var compType = compReg.Component.GetType(); - if (HasComp(ent[0], compType)) + if (HasComp(grid.Value, compType)) continue; var comp = _factory.GetComponent(compType); - AddComp(ent[0], comp, true); + AddComp(grid.Value, comp, true); } } @@ -286,7 +281,7 @@ private void OnGridFillMapInit(EntityUid uid, GridFillComponent component, MapIn Log.Error($"Error loading gridfill dock for {ToPrettyString(uid)} / {component.Path}"); } - _mapManager.DeleteMap(mapId); + _mapSystem.DeleteMap(mapId); } private (EntityUid Entity, DockingComponent Component)? GetSingleDock(EntityUid uid) diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.cs index 6e8c1a9e204..f2c58d103c9 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.cs @@ -17,6 +17,7 @@ using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; +using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Physics; diff --git a/Content.Server/Shuttles/Systems/ThrusterSystem.cs b/Content.Server/Shuttles/Systems/ThrusterSystem.cs index f5e8f7823e7..74008a6af7f 100644 --- a/Content.Server/Shuttles/Systems/ThrusterSystem.cs +++ b/Content.Server/Shuttles/Systems/ThrusterSystem.cs @@ -44,6 +44,7 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnActivateThruster); SubscribeLocalEvent(OnThrusterInit); + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnThrusterShutdown); SubscribeLocalEvent(OnPowerChange); SubscribeLocalEvent(OnAnchorChange); @@ -245,6 +246,11 @@ private void OnThrusterInit(EntityUid uid, ThrusterComponent component, Componen } } + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + ent.Comp.NextFire = _timing.CurTime + ent.Comp.FireCooldown; + } + private void OnThrusterShutdown(EntityUid uid, ThrusterComponent component, ComponentShutdown args) { DisableThruster(uid, component); @@ -461,10 +467,13 @@ public override void Update(float frameTime) while (query.MoveNext(out var comp)) { - if (!comp.Firing || comp.Colliding.Count == 0 || comp.Damage == null || comp.NextFire < curTime) + if (comp.NextFire > curTime) continue; - comp.NextFire += TimeSpan.FromSeconds(1); + comp.NextFire += comp.FireCooldown; + + if (!comp.Firing || comp.Colliding.Count == 0 || comp.Damage == null) + continue; foreach (var uid in comp.Colliding.ToArray()) { diff --git a/Content.Server/Silicons/StationAi/StationAiSystem.cs b/Content.Server/Silicons/StationAi/StationAiSystem.cs index 054712059e4..baec24bf73b 100644 --- a/Content.Server/Silicons/StationAi/StationAiSystem.cs +++ b/Content.Server/Silicons/StationAi/StationAiSystem.cs @@ -40,12 +40,12 @@ private void OnExpandICChatRecipients(ExpandICChatRecipientsEvent ev) var query = EntityManager.EntityQueryEnumerator(); while (query.MoveNext(out var ent, out var entStationAiCore, out var entXform)) { - var stationAiCore = new Entity(ent, entStationAiCore); + var stationAiCore = new Entity(ent, entStationAiCore); - if (!TryGetInsertedAI(stationAiCore, out var insertedAi) || !TryComp(insertedAi, out ActorComponent? actor)) + if (!TryGetHeld(stationAiCore, out var insertedAi) || !TryComp(insertedAi, out ActorComponent? actor)) continue; - if (stationAiCore.Comp.RemoteEntity == null || stationAiCore.Comp.Remote) + if (stationAiCore.Comp?.RemoteEntity == null || stationAiCore.Comp.Remote) continue; var xform = Transform(stationAiCore.Comp.RemoteEntity.Value); diff --git a/Content.Server/Solar/Components/SolarPanelComponent.cs b/Content.Server/Solar/Components/SolarPanelComponent.cs index db8aa638a8f..157c52ad73d 100644 --- a/Content.Server/Solar/Components/SolarPanelComponent.cs +++ b/Content.Server/Solar/Components/SolarPanelComponent.cs @@ -1,4 +1,5 @@ using Content.Server.Solar.EntitySystems; +using Content.Shared.Guidebook; namespace Content.Server.Solar.Components { @@ -15,6 +16,7 @@ public sealed partial class SolarPanelComponent : Component /// Maximum supply output by this panel (coverage = 1) /// [DataField("maxSupply")] + [GuidebookData] public int MaxSupply = 1875; ///ADT_Tweak /// diff --git a/Content.Server/Speech/Components/AddAccentClothingComponent.cs b/Content.Server/Speech/Components/AddAccentClothingComponent.cs index 9d93b55368c..335b436f7c3 100644 --- a/Content.Server/Speech/Components/AddAccentClothingComponent.cs +++ b/Content.Server/Speech/Components/AddAccentClothingComponent.cs @@ -1,4 +1,5 @@ -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Content.Server.Speech.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Speech.Components; diff --git a/Content.Server/Speech/Components/ReplacementAccentComponent.cs b/Content.Server/Speech/Components/ReplacementAccentComponent.cs index 037da720290..2a5a700a5e1 100644 --- a/Content.Server/Speech/Components/ReplacementAccentComponent.cs +++ b/Content.Server/Speech/Components/ReplacementAccentComponent.cs @@ -1,43 +1,15 @@ -using Robust.Shared.Prototypes; +using Content.Server.Speech.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -namespace Content.Server.Speech.Components -{ - [Prototype("accent")] - public sealed partial class ReplacementAccentPrototype : IPrototype - { - [ViewVariables] - [IdDataField] - public string ID { get; private set; } = default!; - - /// - /// If this array is non-null, the full text of anything said will be randomly replaced with one of these words. - /// - [DataField("fullReplacements")] - public string[]? FullReplacements; - - /// - /// If this dictionary is non-null and is null, any keys surrounded by spaces - /// (words) will be replaced by the value, attempting to intelligently keep capitalization. - /// - [DataField("wordReplacements")] - public Dictionary? WordReplacements; +namespace Content.Server.Speech.Components; - /// - /// Allows you to substitute words, not always, but with some chance - /// - [DataField] - public float ReplacementChance = 1f; - } - - /// - /// Replaces full sentences or words within sentences with new strings. - /// - [RegisterComponent] - public sealed partial class ReplacementAccentComponent : Component - { - [DataField("accent", customTypeSerializer: typeof(PrototypeIdSerializer), required: true)] - public string Accent = default!; +/// +/// Replaces full sentences or words within sentences with new strings. +/// +[RegisterComponent] +public sealed partial class ReplacementAccentComponent : Component +{ + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer), required: true)] + public string Accent = default!; - } } diff --git a/Content.Server/Speech/EntitySystems/ReplacementAccentSystem.cs b/Content.Server/Speech/EntitySystems/ReplacementAccentSystem.cs index d81d913a365..656a72b3f97 100644 --- a/Content.Server/Speech/EntitySystems/ReplacementAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/ReplacementAccentSystem.cs @@ -1,6 +1,7 @@ using System.Linq; using System.Text.RegularExpressions; using Content.Server.Speech.Components; +using Content.Server.Speech.Prototypes; using JetBrains.Annotations; using Robust.Shared.Prototypes; using Robust.Shared.Random; diff --git a/Content.Server/Speech/Prototypes/ReplacementAccentPrototype.cs b/Content.Server/Speech/Prototypes/ReplacementAccentPrototype.cs new file mode 100644 index 00000000000..cde4baeb2fd --- /dev/null +++ b/Content.Server/Speech/Prototypes/ReplacementAccentPrototype.cs @@ -0,0 +1,31 @@ +using Robust.Shared.Prototypes; + +namespace Content.Server.Speech.Prototypes; + +[Prototype("accent")] +public sealed partial class ReplacementAccentPrototype : IPrototype +{ + /// + [ViewVariables] + [IdDataField] + public string ID { get; private set; } = default!; + + /// + /// If this array is non-null, the full text of anything said will be randomly replaced with one of these words. + /// + [DataField] + public string[]? FullReplacements; + + /// + /// If this dictionary is non-null and is null, any keys surrounded by spaces + /// (words) will be replaced by the value, attempting to intelligently keep capitalization. + /// + [DataField] + public Dictionary? WordReplacements; + + /// + /// Allows you to substitute words, not always, but with some chance + /// + [DataField] + public float ReplacementChance = 1f; +} diff --git a/Content.Server/Standing/StandingStateSystem.cs b/Content.Server/Standing/StandingStateSystem.cs index e2b64958446..bf9a4e4beae 100644 --- a/Content.Server/Standing/StandingStateSystem.cs +++ b/Content.Server/Standing/StandingStateSystem.cs @@ -13,6 +13,7 @@ public sealed class StandingStateSystem : EntitySystem [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] private readonly ThrowingSystem _throwingSystem = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; private void FallOver(EntityUid uid, StandingStateComponent component, DropHandItemsEvent args) { @@ -25,7 +26,7 @@ private void FallOver(EntityUid uid, StandingStateComponent component, DropHandI if (!TryComp(uid, out HandsComponent? handsComp)) return; - var worldRotation = EntityManager.GetComponent(uid).WorldRotation.ToVec(); + var worldRotation = _transformSystem.GetWorldRotation(uid).ToVec(); foreach (var hand in handsComp.Hands.Values) { if (hand.HeldEntity is not EntityUid held) diff --git a/Content.Server/Station/Systems/StationSpawningSystem.cs b/Content.Server/Station/Systems/StationSpawningSystem.cs index b81dd3186ed..e9a256a59ae 100644 --- a/Content.Server/Station/Systems/StationSpawningSystem.cs +++ b/Content.Server/Station/Systems/StationSpawningSystem.cs @@ -4,8 +4,6 @@ using Content.Server.IdentityManagement; using Content.Server.Mind.Commands; using Content.Server.PDA; -using Content.Server.Shuttles.Systems; -using Content.Server.Spawners.EntitySystems; using Content.Server.Station.Components; using Content.Shared.Access.Components; using Content.Shared.Access.Systems; @@ -39,10 +37,8 @@ public sealed class StationSpawningSystem : SharedStationSpawningSystem { [Dependency] private readonly SharedAccessSystem _accessSystem = default!; [Dependency] private readonly ActorSystem _actors = default!; - [Dependency] private readonly ArrivalsSystem _arrivalsSystem = default!; [Dependency] private readonly IdCardSystem _cardSystem = default!; [Dependency] private readonly IConfigurationManager _configurationManager = default!; - [Dependency] private readonly ContainerSpawnPointSystem _containerSpawnPointSystem = default!; [Dependency] private readonly HumanoidAppearanceSystem _humanoidSystem = default!; [Dependency] private readonly IdentitySystem _identity = default!; [Dependency] private readonly MetaDataSystem _metaSystem = default!; diff --git a/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs b/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs index 4c533ede3ad..1fd617c539f 100644 --- a/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs +++ b/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs @@ -4,10 +4,8 @@ using Content.Shared.Database; using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction.Events; -using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Map; -using Robust.Shared.Player; using Robust.Shared.Random; using static Content.Shared.Storage.EntitySpawnCollection; @@ -20,6 +18,7 @@ public sealed class SpawnItemsOnUseSystem : EntitySystem [Dependency] private readonly SharedHandsSystem _hands = default!; [Dependency] private readonly PricingSystem _pricing = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; public override void Initialize() { @@ -80,26 +79,25 @@ private void OnUseInHand(EntityUid uid, SpawnItemsOnUseComponent component, UseI _adminLogger.Add(LogType.EntitySpawn, LogImpact.Low, $"{ToPrettyString(args.User)} used {ToPrettyString(uid)} which spawned {ToPrettyString(entityToPlaceInHands.Value)}"); } + // The entity is often deleted, so play the sound at its position rather than parenting if (component.Sound != null) - { - // The entity is often deleted, so play the sound at its position rather than parenting - var coordinates = Transform(uid).Coordinates; - _audio.PlayPvs(component.Sound, coordinates); - } + _audio.PlayPvs(component.Sound, coords); component.Uses--; // Delete entity only if component was successfully used if (component.Uses <= 0) { - args.Handled = true; - EntityManager.DeleteEntity(uid); + // Don't delete the entity in the event bus, so we queue it for deletion. + // We need the free hand for the new item, so we send it to nullspace. + _transform.DetachEntity(uid, Transform(uid)); + QueueDel(uid); } if (entityToPlaceInHands != null) - { _hands.PickupOrDrop(args.User, entityToPlaceInHands.Value); - } + + args.Handled = true; } } } diff --git a/Content.Server/Storage/EntitySystems/SpawnTableOnUseSystem.cs b/Content.Server/Storage/EntitySystems/SpawnTableOnUseSystem.cs index 96556ed7b25..1f96b39a4e9 100644 --- a/Content.Server/Storage/EntitySystems/SpawnTableOnUseSystem.cs +++ b/Content.Server/Storage/EntitySystems/SpawnTableOnUseSystem.cs @@ -12,6 +12,7 @@ public sealed class SpawnTableOnUseSystem : EntitySystem [Dependency] private readonly EntityTableSystem _entityTable = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; public override void Initialize() { @@ -25,17 +26,21 @@ private void OnUseInHand(Entity ent, ref UseInHandEven if (args.Handled) return; - args.Handled = true; - var coords = Transform(ent).Coordinates; var spawns = _entityTable.GetSpawns(ent.Comp.Table); + + // Don't delete the entity in the event bus, so we queue it for deletion. + // We need the free hand for the new item, so we send it to nullspace. + _transform.DetachEntity(ent, Transform(ent)); + QueueDel(ent); + foreach (var id in spawns) { var spawned = Spawn(id, coords); _adminLogger.Add(LogType.EntitySpawn, LogImpact.Low, $"{ToPrettyString(args.User):user} used {ToPrettyString(ent):spawner} which spawned {ToPrettyString(spawned)}"); - _hands.TryPickupAnyHand(args.User, spawned); + _hands.PickupOrDrop(args.User, spawned); } - Del(ent); + args.Handled = true; } } diff --git a/Content.Server/Store/StoreRefundComponent.cs b/Content.Server/Store/StoreRefundComponent.cs index 1a6b17c5ead..df35afdf53f 100644 --- a/Content.Server/Store/StoreRefundComponent.cs +++ b/Content.Server/Store/StoreRefundComponent.cs @@ -2,12 +2,31 @@ namespace Content.Server.Store.Components; +// TODO: Refund on a per-item/action level. +// Requires a refund button next to each purchase (disabled/invis by default) +// Interactions with ActionUpgrades would need to be modified to reset all upgrade progress and return the original action purchase to the store. + /// /// Keeps track of entities bought from stores for refunds, especially useful if entities get deleted before they can be refunded. /// [RegisterComponent, Access(typeof(StoreSystem))] public sealed partial class StoreRefundComponent : Component { - [ViewVariables, DataField] + /// + /// The store this entity was bought from + /// + [DataField] public EntityUid? StoreEntity; + + /// + /// The time this entity was bought + /// + [DataField] + public TimeSpan? BoughtTime; + + /// + /// How long until this entity disables refund purchase? + /// + [DataField] + public TimeSpan DisableTime = TimeSpan.FromSeconds(300); } diff --git a/Content.Server/Store/Systems/StoreSystem.Refund.cs b/Content.Server/Store/Systems/StoreSystem.Refund.cs index 04bd585ffcf..cb92a42c10a 100644 --- a/Content.Server/Store/Systems/StoreSystem.Refund.cs +++ b/Content.Server/Store/Systems/StoreSystem.Refund.cs @@ -1,5 +1,8 @@ using Content.Server.Store.Components; +using Content.Shared.Actions.Events; +using Content.Shared.Interaction.Events; using Content.Shared.Store.Components; +using Content.Shared.Weapons.Ranged.Systems; using Robust.Shared.Containers; namespace Content.Server.Store.Systems; @@ -12,22 +15,38 @@ private void InitializeRefund() SubscribeLocalEvent(OnRefundTerminating); SubscribeLocalEvent(OnEntityRemoved); SubscribeLocalEvent(OnEntityInserted); + SubscribeLocalEvent(OnActionPerformed); + SubscribeLocalEvent(OnUseInHand); + SubscribeLocalEvent(OnShootAttempt); + // TODO: Handle guardian refund disabling when guardians support refunds. } - private void OnEntityRemoved(EntityUid uid, StoreRefundComponent component, EntRemovedFromContainerMessage args) + private void OnEntityRemoved(Entity ent, ref EntRemovedFromContainerMessage args) { - if (component.StoreEntity == null || _actions.TryGetActionData(uid, out _, false) || !TryComp(component.StoreEntity.Value, out var storeComp)) - return; + CheckDisableRefund(ent); + } - DisableRefund(component.StoreEntity.Value, storeComp); + private void OnEntityInserted(Entity ent, ref EntInsertedIntoContainerMessage args) + { + CheckDisableRefund(ent); } - private void OnEntityInserted(EntityUid uid, StoreRefundComponent component, EntInsertedIntoContainerMessage args) + private void OnActionPerformed(Entity ent, ref ActionPerformedEvent args) { - if (component.StoreEntity == null || _actions.TryGetActionData(uid, out _) || !TryComp(component.StoreEntity.Value, out var storeComp)) + CheckDisableRefund(ent); + } + + private void OnUseInHand(Entity ent, ref UseInHandEvent args) + { + CheckDisableRefund(ent); + } + + private void OnShootAttempt(Entity ent, ref AttemptShootEvent args) + { + if (args.Cancelled) return; - DisableRefund(component.StoreEntity.Value, storeComp); + CheckDisableRefund(ent); } private void OnStoreTerminating(Entity ent, ref EntityTerminatingEvent args) @@ -52,4 +71,19 @@ private void OnRefundTerminating(Entity ent, ref EntityTer var ev = new RefundEntityDeletedEvent(ent); RaiseLocalEvent(ent.Comp.StoreEntity.Value, ref ev); } + + private void CheckDisableRefund(Entity ent) + { + var component = ent.Comp; + + if (component.StoreEntity == null || !TryComp(component.StoreEntity.Value, out var storeComp) || !storeComp.RefundAllowed) + return; + + var endTime = component.BoughtTime + component.DisableTime; + + if (IsOnStartingMap(component.StoreEntity.Value, storeComp) && _timing.CurTime < endTime) + return; + + DisableRefund(component.StoreEntity.Value, storeComp); + } } diff --git a/Content.Server/Store/Systems/StoreSystem.Ui.cs b/Content.Server/Store/Systems/StoreSystem.Ui.cs index 8411923663b..f5eabac2332 100644 --- a/Content.Server/Store/Systems/StoreSystem.Ui.cs +++ b/Content.Server/Store/Systems/StoreSystem.Ui.cs @@ -172,7 +172,7 @@ private void OnBuyRequest(EntityUid uid, StoreComponent component, StoreBuyListi } if (!IsOnStartingMap(uid, component)) - component.RefundAllowed = false; + DisableRefund(uid, component); //subtract the cash foreach (var (currency, amount) in cost) @@ -355,7 +355,7 @@ private void OnRequestRefund(EntityUid uid, StoreComponent component, StoreReque if (!IsOnStartingMap(uid, component)) { - component.RefundAllowed = false; + DisableRefund(uid, component); UpdateUserInterface(buyer, uid, component); } @@ -399,6 +399,7 @@ private void HandleRefundComp(EntityUid uid, StoreComponent component, EntityUid component.BoughtEntities.Add(purchase); var refundComp = EnsureComp(purchase); refundComp.StoreEntity = uid; + refundComp.BoughtTime = _timing.CurTime; } private bool IsOnStartingMap(EntityUid store, StoreComponent component) diff --git a/Content.Server/Store/Systems/StoreSystem.cs b/Content.Server/Store/Systems/StoreSystem.cs index 7f582c06789..edc405d6157 100644 --- a/Content.Server/Store/Systems/StoreSystem.cs +++ b/Content.Server/Store/Systems/StoreSystem.cs @@ -10,6 +10,7 @@ using Robust.Shared.Prototypes; using Robust.Shared.Utility; using System.Linq; +using Robust.Shared.Timing; using Content.Shared.Mind; using Content.Shared.Store; // ADT-Changeling-Tweak @@ -23,6 +24,7 @@ public sealed partial class StoreSystem : EntitySystem { [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly IGameTiming _timing = default!; public override void Initialize() { diff --git a/Content.Server/Teleportation/HandTeleporterSystem.cs b/Content.Server/Teleportation/HandTeleporterSystem.cs index 1cd2e1d8c25..78e881d76a0 100644 --- a/Content.Server/Teleportation/HandTeleporterSystem.cs +++ b/Content.Server/Teleportation/HandTeleporterSystem.cs @@ -41,6 +41,9 @@ private void OnDoAfter(EntityUid uid, HandTeleporterComponent component, DoAfter private void OnUseInHand(EntityUid uid, HandTeleporterComponent component, UseInHandEvent args) { + if (args.Handled) + return; + if (Deleted(component.FirstPortal)) component.FirstPortal = null; @@ -67,6 +70,8 @@ private void OnUseInHand(EntityUid uid, HandTeleporterComponent component, UseIn _doafter.TryStartDoAfter(doafterArgs); } + + args.Handled = true; } diff --git a/Content.Server/Toolshed/Commands/VisualizeCommand.cs b/Content.Server/Toolshed/Commands/VisualizeCommand.cs index 41613cab86b..9b0892befa1 100644 --- a/Content.Server/Toolshed/Commands/VisualizeCommand.cs +++ b/Content.Server/Toolshed/Commands/VisualizeCommand.cs @@ -9,7 +9,7 @@ namespace Content.Server.Toolshed.Commands; -[ToolshedCommand, AdminCommand(AdminFlags.Admin)] +[ToolshedCommand, AdminCommand(AdminFlags.VarEdit)] public sealed class VisualizeCommand : ToolshedCommand { [Dependency] private readonly EuiManager _euiManager = default!; diff --git a/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs b/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs index fb99b3cfad8..468bfdc0f8c 100644 --- a/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs +++ b/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs @@ -1,7 +1,8 @@ using System.Linq; +using System.Net; +using System.Net.Sockets; using Content.Server.Administration; using Content.Server.Administration.Managers; -using Content.Server.Database; using Content.Server.Discord.WebhookMessages; using Content.Server.GameTicking; using Content.Server.GameTicking.Presets; @@ -11,7 +12,6 @@ using Content.Shared.CCVar; using Content.Shared.Chat; using Content.Shared.Database; -using Content.Shared.Ghost; using Content.Shared.Players; using Content.Shared.Players.PlayTimeTracking; using Content.Shared.Voting; @@ -27,14 +27,13 @@ public sealed partial class VoteManager [Dependency] private readonly IPlayerLocator _locator = default!; [Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly IBanManager _bans = default!; - [Dependency] private readonly IServerDbManager _dbManager = default!; [Dependency] private readonly VoteWebhooks _voteWebhooks = default!; private VotingSystem? _votingSystem; private RoleSystem? _roleSystem; private GameTicker? _gameTicker; - private static readonly Dictionary> _voteTypesToEnableCVars = new() + private static readonly Dictionary> VoteTypesToEnableCVars = new() { {StandardVoteType.Restart, CCVars.VoteRestartEnabled}, {StandardVoteType.Preset, CCVars.VotePresetEnabled}, @@ -51,6 +50,8 @@ public void CreateStandardVote(ICommonSession? initiator, StandardVoteType voteT else _adminLogger.Add(LogType.Vote, LogImpact.Medium, $"Initiated a {voteType.ToString()} vote"); + _gameTicker = _entityManager.EntitySysManager.GetEntitySystem(); + bool timeoutVote = true; switch (voteType) @@ -71,7 +72,6 @@ public void CreateStandardVote(ICommonSession? initiator, StandardVoteType voteT default: throw new ArgumentOutOfRangeException(nameof(voteType), voteType, null); } - _gameTicker = _entityManager.EntitySysManager.GetEntitySystem(); _gameTicker.UpdateInfoText(); if (timeoutVote) TimeoutStandardVote(voteType); @@ -371,6 +371,15 @@ private async void CreateVotekickVote(ICommonSession? initiator, string[]? args) } var targetUid = located.UserId; var targetHWid = located.LastHWId; + (IPAddress, int)? targetIP = null; + + if (located.LastAddress is not null) + { + targetIP = located.LastAddress.AddressFamily is AddressFamily.InterNetwork + ? (located.LastAddress, 32) // People with ipv4 addresses get a /32 address so we ban that + : (located.LastAddress, 64); // This can only be an ipv6 address. People with ipv6 address should get /64 addresses so we ban that. + } + if (!_playerManager.TryGetSessionById(located.UserId, out ICommonSession? targetSession)) { _logManager.GetSawmill("admin.votekick") @@ -535,7 +544,7 @@ private async void CreateVotekickVote(ICommonSession? initiator, string[]? args) uint minutes = (uint)_cfg.GetCVar(CCVars.VotekickBanDuration); - _bans.CreateServerBan(targetUid, target, null, null, targetHWid, minutes, severity, reason); + _bans.CreateServerBan(targetUid, target, null, targetIP, targetHWid, minutes, severity, Loc.GetString("votekick-ban-reason", ("reason", reason))); } } else diff --git a/Content.Server/Voting/Managers/VoteManager.cs b/Content.Server/Voting/Managers/VoteManager.cs index 10b975fdcac..94e637638ee 100644 --- a/Content.Server/Voting/Managers/VoteManager.cs +++ b/Content.Server/Voting/Managers/VoteManager.cs @@ -65,7 +65,7 @@ public void Initialize() DirtyCanCallVoteAll(); }); - foreach (var kvp in _voteTypesToEnableCVars) + foreach (var kvp in VoteTypesToEnableCVars) { _cfg.OnValueChanged(kvp.Value, _ => { @@ -346,7 +346,7 @@ private bool CanCallVote( if (!_cfg.GetCVar(CCVars.VoteEnabled)) return false; // Specific standard vote types can be disabled with cvars. - if (voteType != null && _voteTypesToEnableCVars.TryGetValue(voteType.Value, out var cvar) && !_cfg.GetCVar(cvar)) + if (voteType != null && VoteTypesToEnableCVars.TryGetValue(voteType.Value, out var cvar) && !_cfg.GetCVar(cvar)) return false; // Cannot start vote if vote is already active (as non-admin). diff --git a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs index d3c65047ba7..a19ab42c99b 100644 --- a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs +++ b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs @@ -53,7 +53,7 @@ private void OnMeleeExamineDamage(EntityUid uid, MeleeWeaponComponent component, if (damageSpec.Empty) return; - _damageExamine.AddDamageExamine(args.Message, damageSpec, Loc.GetString("damage-melee")); + _damageExamine.AddDamageExamine(args.Message, Damageable.ApplyUniversalAllModifiers(damageSpec), Loc.GetString("damage-melee")); } protected override bool ArcRaySuccessful(EntityUid targetUid, diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.Battery.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.Battery.cs index 0dcd92f9417..ad4bb714d93 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.Battery.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.Battery.cs @@ -73,7 +73,7 @@ private void OnBatteryDamageExamine(EntityUid uid, BatteryAmmoProviderComponent _ => throw new ArgumentOutOfRangeException(), }; - _damageExamine.AddDamageExamine(args.Message, damageSpec, damageType); + _damageExamine.AddDamageExamine(args.Message, Damageable.ApplyUniversalAllModifiers(damageSpec), damageType); } private DamageSpecifier? GetDamage(BatteryAmmoProviderComponent component) @@ -87,7 +87,7 @@ private void OnBatteryDamageExamine(EntityUid uid, BatteryAmmoProviderComponent if (!p.Damage.Empty) { - return p.Damage; + return p.Damage * Damageable.UniversalProjectileDamageModifier; } } @@ -96,7 +96,8 @@ private void OnBatteryDamageExamine(EntityUid uid, BatteryAmmoProviderComponent if (component is HitscanBatteryAmmoProviderComponent hitscan) { - return ProtoManager.Index(hitscan.Prototype).Damage; + var dmg = ProtoManager.Index(hitscan.Prototype).Damage; + return dmg == null ? dmg : dmg * Damageable.UniversalHitscanDamageModifier; } return null; diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.Cartridges.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.Cartridges.cs index e7bd3683d38..c1df560cb7d 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.Cartridges.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.Cartridges.cs @@ -24,7 +24,7 @@ private void OnCartridgeDamageExamine(EntityUid uid, CartridgeAmmoComponent comp if (damageSpec == null) return; - _damageExamine.AddDamageExamine(args.Message, damageSpec, Loc.GetString("damage-projectile")); + _damageExamine.AddDamageExamine(args.Message, Damageable.ApplyUniversalAllModifiers(damageSpec), Loc.GetString("damage-projectile")); } private DamageSpecifier? GetProjectileDamage(string proto) @@ -39,7 +39,7 @@ private void OnCartridgeDamageExamine(EntityUid uid, CartridgeAmmoComponent comp if (!p.Damage.Empty) { - return p.Damage; + return p.Damage * Damageable.UniversalProjectileDamageModifier; } } diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs index 746be1c5f34..5f39e982490 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs @@ -258,7 +258,7 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid? var hitName = ToPrettyString(hitEntity); if (dmg != null) - dmg = Damageable.TryChangeDamage(hitEntity, dmg, origin: user); + dmg = Damageable.TryChangeDamage(hitEntity, dmg * Damageable.UniversalHitscanDamageModifier, origin: user); // ADT hitscan bloodloss modifiers start if (hitscan.BloodlossModifier.HasValue) @@ -451,29 +451,29 @@ public void PlayImpactSound(EntityUid otherEntity, DamageSpecifier? modifiedDama // TODO: Pseudo RNG so the client can predict these. #region Hitscan effects - private void FireEffects(EntityCoordinates fromCoordinates, float distance, Angle mapDirection, HitscanPrototype hitscan, EntityUid? hitEntity = null) + private void FireEffects(EntityCoordinates fromCoordinates, float distance, Angle angle, HitscanPrototype hitscan, EntityUid? hitEntity = null) { // Lord // Forgive me for the shitcode I am about to do // Effects tempt me not var sprites = new List<(NetCoordinates coordinates, Angle angle, SpriteSpecifier sprite, float scale)>(); - var gridUid = fromCoordinates.GetGridUid(EntityManager); - var angle = mapDirection; + var fromXform = Transform(fromCoordinates.EntityId); // We'll get the effects relative to the grid / map of the firer // Look you could probably optimise this a bit with redundant transforms at this point. - var xformQuery = GetEntityQuery(); - if (xformQuery.TryGetComponent(gridUid, out var gridXform)) + var gridUid = fromXform.GridUid; + if (gridUid != fromCoordinates.EntityId && TryComp(gridUid, out TransformComponent? gridXform)) { - var (_, gridRot, gridInvMatrix) = TransformSystem.GetWorldPositionRotationInvMatrix(gridXform, xformQuery); - - fromCoordinates = new EntityCoordinates(gridUid.Value, - Vector2.Transform(fromCoordinates.ToMapPos(EntityManager, TransformSystem), gridInvMatrix)); - - // Use the fallback angle I guess? + var (_, gridRot, gridInvMatrix) = TransformSystem.GetWorldPositionRotationInvMatrix(gridXform); + var map = _transform.ToMapCoordinates(fromCoordinates); + fromCoordinates = new EntityCoordinates(gridUid.Value, Vector2.Transform(map.Position, gridInvMatrix)); angle -= gridRot; } + else + { + angle -= _transform.GetWorldRotation(fromXform); + } if (distance >= 1f) { diff --git a/Content.Shared.Database/LogType.cs b/Content.Shared.Database/LogType.cs index 56efeef1163..37913c88e5a 100644 --- a/Content.Shared.Database/LogType.cs +++ b/Content.Shared.Database/LogType.cs @@ -448,10 +448,14 @@ public enum LogType /// An atmos networked device (such as a vent or pump) has had its settings changed, usually through an air alarm /// AtmosDeviceSetting = 97, + /// + /// Commands related to admemes. Stuff like config changes, etc. + /// + AdminCommands = 98, // ADT Start /// /// A player grabbed another player /// - Grab = 98, + Grab = 99, /// ADT End } diff --git a/Content.Shared/ActionBlocker/ActionBlockerSystem.cs b/Content.Shared/ActionBlocker/ActionBlockerSystem.cs index 8a4b5baffd3..6152699ccb1 100644 --- a/Content.Shared/ActionBlocker/ActionBlockerSystem.cs +++ b/Content.Shared/ActionBlocker/ActionBlockerSystem.cs @@ -199,7 +199,8 @@ public bool CanAttack(EntityUid uid, EntityUid? target = null, EntityNo whitelist check when null. [DataField("whitelist")] public EntityWhitelist? Whitelist; + /// + /// Determines which entities are NOT valid targets for this action. + /// + /// No blacklist check when null. + [DataField] public EntityWhitelist? Blacklist; + /// /// Whether this action considers the user as a valid target entity when using this action. /// @@ -35,11 +41,13 @@ public sealed partial class EntityTargetActionComponent : BaseTargetActionCompon public sealed class EntityTargetActionComponentState : BaseActionComponentState { public EntityWhitelist? Whitelist; + public EntityWhitelist? Blacklist; public bool CanTargetSelf; public EntityTargetActionComponentState(EntityTargetActionComponent component, IEntityManager entManager) : base(component, entManager) { Whitelist = component.Whitelist; + Blacklist = component.Blacklist; CanTargetSelf = component.CanTargetSelf; } } diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index 8079885a5ac..30f1af84656 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -538,6 +538,7 @@ public bool ValidateEntityTarget(EntityUid user, EntityUid target, Entity(OnMapInit); SubscribeLocalEvent>(AddMilkVerb); SubscribeLocalEvent(OnDoAfter); - SubscribeLocalEvent(OnExamine); } private void OnMapInit(EntityUid uid, UdderComponent component, MapInitEvent args) @@ -140,50 +138,4 @@ private void AddMilkVerb(Entity entity, ref GetVerbsEvent - /// Defines the text provided on examine. - /// Changes depending on the amount of hunger the target has. - /// - private void OnExamine(Entity entity, ref ExaminedEvent args) - { - - var entityIdentity = Identity.Entity(args.Examined, EntityManager); - - string message; - - // Check if the target has hunger, otherwise return not hungry. - if (!TryComp(entity, out var hunger)) - { - message = Loc.GetString("udder-system-examine-none", ("entity", entityIdentity)); - args.PushMarkup(message); - return; - } - - // Choose the correct examine string based on HungerThreshold. - switch (_hunger.GetHungerThreshold(hunger)) - { - case >= HungerThreshold.Overfed: - message = Loc.GetString("udder-system-examine-overfed", ("entity", entityIdentity)); - break; - - case HungerThreshold.Okay: - message = Loc.GetString("udder-system-examine-okay", ("entity", entityIdentity)); - break; - - case HungerThreshold.Peckish: - message = Loc.GetString("udder-system-examine-hungry", ("entity", entityIdentity)); - break; - - // There's a final hunger threshold called "dead" but animals don't actually die so we'll re-use this. - case <= HungerThreshold.Starving: - message = Loc.GetString("udder-system-examine-starved", ("entity", entityIdentity)); - break; - - default: - return; - } - - args.PushMarkup(message); - } } diff --git a/Content.Shared/Armor/ArmorComponent.cs b/Content.Shared/Armor/ArmorComponent.cs index 9b620f6d86d..105e872a627 100644 --- a/Content.Shared/Armor/ArmorComponent.cs +++ b/Content.Shared/Armor/ArmorComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Damage; +using Content.Shared.Inventory; using Robust.Shared.GameStates; using Robust.Shared.Utility; @@ -38,3 +39,24 @@ public sealed partial class ArmorComponent : Component /// [ByRefEvent] public record struct ArmorExamineEvent(FormattedMessage Msg); + +/// +/// A Relayed inventory event, gets the total Armor for all Inventory slots defined by the Slotflags in TargetSlots +/// +public sealed class CoefficientQueryEvent : EntityEventArgs, IInventoryRelayEvent +{ + /// + /// All slots to relay to + /// + public SlotFlags TargetSlots { get; set; } + + /// + /// The Total of all Coefficients. + /// + public DamageModifierSet DamageModifiers { get; set; } = new DamageModifierSet(); + + public CoefficientQueryEvent(SlotFlags slots) + { + TargetSlots = slots; + } +} diff --git a/Content.Shared/Armor/SharedArmorSystem.cs b/Content.Shared/Armor/SharedArmorSystem.cs index e96cfc2394c..947095516ac 100644 --- a/Content.Shared/Armor/SharedArmorSystem.cs +++ b/Content.Shared/Armor/SharedArmorSystem.cs @@ -20,12 +20,26 @@ public override void Initialize() { base.Initialize(); + SubscribeLocalEvent>(OnCoefficientQuery); SubscribeLocalEvent>(OnDamageModify); SubscribeLocalEvent>(OnBorgDamageModify); SubscribeLocalEvent>(OnArmorVerbExamine); SubscribeLocalEvent>(OnStaminaDamageModify); // ADT Stunmeta fix } + /// + /// Get the total Damage reduction value of all equipment caught by the relay. + /// + /// The item that's being relayed to + /// The event, contains the running count of armor percentage as a coefficient + private void OnCoefficientQuery(Entity ent, ref InventoryRelayedEvent args) + { + foreach (var armorCoefficient in ent.Comp.Modifiers.Coefficients) + { + args.Args.DamageModifiers.Coefficients[armorCoefficient.Key] = args.Args.DamageModifiers.Coefficients.TryGetValue(armorCoefficient.Key, out var coefficient) ? coefficient * armorCoefficient.Value : armorCoefficient.Value; + } + } + private void OnDamageModify(EntityUid uid, ArmorComponent component, InventoryRelayedEvent args) { args.Args.Damage = DamageSpecifier.ApplyModifierSet(args.Args.Damage, component.Modifiers); diff --git a/Content.Shared/Atmos/Atmospherics.cs b/Content.Shared/Atmos/Atmospherics.cs index da65c4ced51..f1b5eec589f 100644 --- a/Content.Shared/Atmos/Atmospherics.cs +++ b/Content.Shared/Atmos/Atmospherics.cs @@ -40,6 +40,12 @@ public static class Atmospherics /// public const float T20C = 293.15f; + /// + /// -38.15ºC in K. + /// This is used to initialize roundstart freezer rooms. + /// + public const float FreezerTemp = 235f; + /// /// Do not allow any gas mixture temperatures to exceed this number. It is occasionally possible /// to have very small heat capacity (e.g. room that was just unspaced) and for large amounts of @@ -65,6 +71,12 @@ public static class Atmospherics /// public const float MolesCellStandard = (OneAtmosphere * CellVolume / (T20C * R)); + /// + /// Moles in a 2.5 m^3 cell at 101.325 kPa and -38.15ºC. + /// This is used in fix atmos freezer markers to ensure the air is at the correct atmospheric pressure while still being cold. + /// + public const float MolesCellFreezer = (OneAtmosphere * CellVolume / (FreezerTemp * R)); + /// /// Moles in a 2.5 m^3 cell at GasMinerDefaultMaxExternalPressure kPa and 20ºC /// @@ -81,6 +93,9 @@ public static class Atmospherics public const float OxygenMolesStandard = MolesCellStandard * OxygenStandard; public const float NitrogenMolesStandard = MolesCellStandard * NitrogenStandard; + public const float OxygenMolesFreezer = MolesCellFreezer * OxygenStandard; + public const float NitrogenMolesFreezer = MolesCellFreezer * NitrogenStandard; + #endregion /// diff --git a/Content.Shared/CCVar/CCVars.Events.cs b/Content.Shared/CCVar/CCVars.Events.cs index 48797b8438c..c1be29a023c 100644 --- a/Content.Shared/CCVar/CCVars.Events.cs +++ b/Content.Shared/CCVar/CCVars.Events.cs @@ -1,4 +1,6 @@ -using Robust.Shared.Configuration; +using Content.Shared.Administration; +using Content.Shared.CCVar.CVarAccess; +using Robust.Shared.Configuration; namespace Content.Shared.CCVar; @@ -7,6 +9,7 @@ public sealed partial class CCVars /// /// Controls if the game should run station events /// + [CVarControl(AdminFlags.Server | AdminFlags.Mapping)] public static readonly CVarDef EventsEnabled = CVarDef.Create("events.enabled", true, CVar.ARCHIVE | CVar.SERVERONLY); } diff --git a/Content.Shared/CCVar/CCVars.Playtest.cs b/Content.Shared/CCVar/CCVars.Playtest.cs new file mode 100644 index 00000000000..5b5bea7d947 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Playtest.cs @@ -0,0 +1,80 @@ +using Content.Shared.Administration; +using Content.Shared.CCVar.CVarAccess; +using Content.Shared.Roles; +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Scales all damage dealt in the game. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef PlaytestAllDamageModifier = + CVarDef.Create("playtest.all_damage_modifier", 1f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Scales all healing done in the game. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef PlaytestAllHealModifier = + CVarDef.Create("playtest.all_heal_modifier", 1f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Scales the damage dealt by all melee attacks in the game. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef PlaytestMeleeDamageModifier = + CVarDef.Create("playtest.melee_damage_modifier", 1f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Scales the damage dealt by all projectiles in the game. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef PlaytestProjectileDamageModifier = + CVarDef.Create("playtest.projectile_damage_modifier", 1f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Scales the damage dealt by all hitscan attacks in the game. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef PlaytestHitscanDamageModifier = + CVarDef.Create("playtest.hitscan_damage_modifier", 1f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Scales the damage dealt by all thrown weapons in the game. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef PlaytestThrownDamageModifier = + CVarDef.Create("playtest.thrown_damage_modifier", 1f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Scales the healing given by all topicals in the game. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef PlaytestTopicalsHealModifier = + CVarDef.Create("playtest.topicals_heal_modifier", 1f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Scales the damage dealt by all reagents in the game. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef PlaytestReagentDamageModifier = + CVarDef.Create("playtest.reagent_damage_modifier", 1f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Scales the healing given by all reagents in the game. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef PlaytestReagentHealModifier = + CVarDef.Create("playtest.reagent_heal_modifier", 1f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Scales the explosion damage dealt in the game. + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef PlaytestExplosionDamageModifier = + CVarDef.Create("playtest.explosion_damage_modifier", 1f, CVar.SERVER | CVar.REPLICATED); + +} diff --git a/Content.Shared/CCVar/CCVars.Shuttle.cs b/Content.Shared/CCVar/CCVars.Shuttle.cs index 8561229886d..8f563445541 100644 --- a/Content.Shared/CCVar/CCVars.Shuttle.cs +++ b/Content.Shared/CCVar/CCVars.Shuttle.cs @@ -1,4 +1,6 @@ -using Robust.Shared.Configuration; +using Content.Shared.Administration; +using Content.Shared.CCVar.CVarAccess; +using Robust.Shared.Configuration; namespace Content.Shared.CCVar; @@ -170,6 +172,7 @@ public sealed partial class CCVars /// /// Time in minutes after round start to auto-call the shuttle. Set to zero to disable. /// + [CVarControl(AdminFlags.Server | AdminFlags.Mapping, min: 0, max: int.MaxValue)] public static readonly CVarDef EmergencyShuttleAutoCallTime = CVarDef.Create("shuttle.auto_call_time", 270, CVar.SERVERONLY); //ADT-Tweak - автоматический эвак вызывается после 3 часов diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index 316d9b8690a..d68ab168743 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -1,3 +1,5 @@ +using Content.Shared.Administration; +using Content.Shared.CCVar.CVarAccess; using Robust.Shared; using Robust.Shared.Configuration; @@ -14,6 +16,16 @@ public sealed partial class CCVars : CVars { // Only debug stuff lives here. +#if DEBUG + [CVarControl(AdminFlags.Debug)] + public static readonly CVarDef DebugTestCVar = + CVarDef.Create("debug.test_cvar", "default", CVar.SERVER); + + [CVarControl(AdminFlags.Debug)] + public static readonly CVarDef DebugTestCVar2 = + CVarDef.Create("debug.test_cvar2", 123.42069f, CVar.SERVER); +#endif + /// /// A simple toggle to test OptionsVisualizerComponent. /// diff --git a/Content.Shared/CCVar/CVarAccess/CVarControl.cs b/Content.Shared/CCVar/CVarAccess/CVarControl.cs new file mode 100644 index 00000000000..799738cf3d8 --- /dev/null +++ b/Content.Shared/CCVar/CVarAccess/CVarControl.cs @@ -0,0 +1,38 @@ +using Content.Shared.Administration; +using Robust.Shared.Reflection; + +namespace Content.Shared.CCVar.CVarAccess; + +/// +/// Manages what admin flags can change the cvar value. With optional mins and maxes. +/// +[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)] +[Reflect(discoverable: true)] +public sealed class CVarControl : Attribute +{ + public AdminFlags AdminFlags { get; } + public object? Min { get; } + public object? Max { get; } + + public CVarControl(AdminFlags adminFlags, object? min = null, object? max = null, string? helpText = null) + { + AdminFlags = adminFlags; + Min = min; + Max = max; + + // Not actually sure if its a good idea to throw exceptions in attributes. + + if (min != null && max != null) + { + if (min.GetType() != max.GetType()) + { + throw new ArgumentException("Min and max must be of the same type."); + } + } + + if (min == null && max != null || min != null && max == null) + { + throw new ArgumentException("Min and max must both be null or both be set."); + } + } +} diff --git a/Content.Shared/Chemistry/EntitySystems/ScoopableSolutionSystem.cs b/Content.Shared/Chemistry/EntitySystems/ScoopableSolutionSystem.cs index 84f1e456160..86f9ffa3909 100644 --- a/Content.Shared/Chemistry/EntitySystems/ScoopableSolutionSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/ScoopableSolutionSystem.cs @@ -24,7 +24,10 @@ public override void Initialize() private void OnInteractUsing(Entity ent, ref InteractUsingEvent args) { - TryScoop(ent, args.Used, args.User); + if (args.Handled) + return; + + args.Handled = TryScoop(ent, args.Used, args.User); } public bool TryScoop(Entity ent, EntityUid beaker, EntityUid user) diff --git a/Content.Shared/Chemistry/SharedChemistryGuideDataSystem.cs b/Content.Shared/Chemistry/SharedChemistryGuideDataSystem.cs index 391134bcf05..7d36641ccf3 100644 --- a/Content.Shared/Chemistry/SharedChemistryGuideDataSystem.cs +++ b/Content.Shared/Chemistry/SharedChemistryGuideDataSystem.cs @@ -14,6 +14,9 @@ public abstract class SharedChemistryGuideDataSystem : EntitySystem protected readonly Dictionary Registry = new(); public IReadOnlyDictionary ReagentGuideRegistry => Registry; + + // Only ran on the server + public abstract void ReloadAllReagentPrototypes(); } [Serializable, NetSerializable] diff --git a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs index 488b7a5b641..725b0347661 100644 --- a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs @@ -5,8 +5,9 @@ using Content.Shared.Inventory.Events; using Content.Shared.Item; using Content.Shared.Tag; +using Content.Shared.Verbs; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.Manager; +using Robust.Shared.Utility; namespace Content.Shared.Clothing.EntitySystems; @@ -14,19 +15,20 @@ public abstract class SharedChameleonClothingSystem : EntitySystem { [Dependency] private readonly IComponentFactory _factory = default!; [Dependency] private readonly IPrototypeManager _proto = default!; - [Dependency] private readonly ISerializationManager _serialization = default!; [Dependency] private readonly ClothingSystem _clothingSystem = default!; [Dependency] private readonly ContrabandSystem _contraband = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly SharedItemSystem _itemSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly TagSystem _tag = default!; + [Dependency] protected readonly SharedUserInterfaceSystem UI = default!; public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnGotEquipped); SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent>(OnVerb); } private void OnGotEquipped(EntityUid uid, ChameleonClothingComponent component, GotEquippedEvent args) @@ -94,6 +96,22 @@ protected void UpdateVisuals(EntityUid uid, ChameleonClothingComponent component } } + private void OnVerb(Entity ent, ref GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || ent.Comp.User != args.User) + return; + + // Can't pass args from a ref event inside of lambdas + var user = args.User; + + args.Verbs.Add(new InteractionVerb() + { + Text = Loc.GetString("chameleon-component-verb-text"), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/settings.svg.192dpi.png")), + Act = () => UI.TryToggleUi(ent.Owner, ChameleonUiKey.Key, user) + }); + } + protected virtual void UpdateSprite(EntityUid uid, EntityPrototype proto) { } /// diff --git a/Content.Shared/Contraband/ContrabandSystem.cs b/Content.Shared/Contraband/ContrabandSystem.cs index ff18a08cef1..bfd71002892 100644 --- a/Content.Shared/Contraband/ContrabandSystem.cs +++ b/Content.Shared/Contraband/ContrabandSystem.cs @@ -4,8 +4,10 @@ using Content.Shared.Examine; using Content.Shared.Localizations; using Content.Shared.Roles; +using Content.Shared.Verbs; using Robust.Shared.Configuration; using Robust.Shared.Prototypes; +using Robust.Shared.Utility; namespace Content.Shared.Contraband; @@ -17,22 +19,18 @@ public sealed class ContrabandSystem : EntitySystem [Dependency] private readonly IConfigurationManager _configuration = default!; [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly SharedIdCardSystem _id = default!; + [Dependency] private readonly ExamineSystemShared _examine = default!; private bool _contrabandExamineEnabled; /// public override void Initialize() { - SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent>(OnDetailedExamine); Subs.CVar(_configuration, CCVars.ContrabandExamine, SetContrabandExamine, true); } - private void SetContrabandExamine(bool val) - { - _contrabandExamineEnabled = val; - } - public void CopyDetails(EntityUid uid, ContrabandComponent other, ContrabandComponent? contraband = null) { if (!Resolve(uid, ref contraband)) @@ -44,59 +42,81 @@ public void CopyDetails(EntityUid uid, ContrabandComponent other, ContrabandComp Dirty(uid, contraband); } - private void OnExamined(Entity ent, ref ExaminedEvent args) + private void OnDetailedExamine(EntityUid ent,ContrabandComponent component, ref GetVerbsEvent args) { + if (!_contrabandExamineEnabled) return; + // CanAccess is not used here, because we want people to be able to examine legality in strip menu. + if (!args.CanInteract) + return; + // two strings: // one, the actual informative 'this is restricted' // then, the 'you can/shouldn't carry this around' based on the ID the user is wearing - - using (args.PushGroup(nameof(ContrabandComponent))) + var localizedDepartments = component.AllowedDepartments.Select(p => Loc.GetString("contraband-department-plural", ("department", Loc.GetString(_proto.Index(p).Name)))); + var jobs = component.AllowedJobs.Select(p => _proto.Index(p).LocalizedName).ToArray(); + var localizedJobs = jobs.Select(p => Loc.GetString("contraband-job-plural", ("job", p))); + var severity = _proto.Index(component.Severity); + String departmentExamineMessage; + if (severity.ShowDepartmentsAndJobs) { - var localizedDepartments = ent.Comp.AllowedDepartments.Select(p => Loc.GetString("contraband-department-plural", ("department", Loc.GetString(_proto.Index(p).Name)))); - var localizedJobs = ent.Comp.AllowedJobs.Select(p => Loc.GetString("contraband-job-plural", ("job", _proto.Index(p).LocalizedName))); - - var severity = _proto.Index(ent.Comp.Severity); - if (severity.ShowDepartmentsAndJobs) - { - //creating a combined list of jobs and departments for the restricted text - var list = ContentLocalizationManager.FormatList(localizedDepartments.Concat(localizedJobs).ToList()); + //creating a combined list of jobs and departments for the restricted text + var list = ContentLocalizationManager.FormatList(localizedDepartments.Concat(localizedJobs).ToList()); + // department restricted text + departmentExamineMessage = Loc.GetString("contraband-examine-text-Restricted-department", ("departments", list)); + } + else + { + departmentExamineMessage = Loc.GetString(severity.ExamineText); + } - // department restricted text - args.PushMarkup(Loc.GetString("contraband-examine-text-Restricted-department", ("departments", list))); - } - else + // text based on ID card + List> departments = new(); + var jobId = ""; + if (_id.TryFindIdCard(args.User, out var id)) + { + departments = id.Comp.JobDepartments; + if (id.Comp.LocalizedJobTitle is not null) { - args.PushMarkup(Loc.GetString(severity.ExamineText)); + jobId = id.Comp.LocalizedJobTitle; } + } - // text based on ID card - List> departments = new(); - var jobId = ""; + String carryingMessage; + // either its fully restricted, you have no departments, or your departments dont intersect with the restricted departments + if (departments.Intersect(component.AllowedDepartments).Any() + || jobs.Contains(jobId)) + { + carryingMessage = Loc.GetString("contraband-examine-text-in-the-clear"); + } + else + { + // otherwise fine to use :tm: + carryingMessage = Loc.GetString("contraband-examine-text-avoid-carrying-around"); + } - if (_id.TryFindIdCard(args.Examiner, out var id)) - { - departments = id.Comp.JobDepartments; - if (id.Comp.LocalizedJobTitle is not null) - { - jobId = id.Comp.LocalizedJobTitle; - } - } + var examineMarkup = GetContrabandExamine(departmentExamineMessage, carryingMessage); + _examine.AddDetailedExamineVerb(args, + component, + examineMarkup, + Loc.GetString("contraband-examinable-verb-text"), + "/Textures/Interface/VerbIcons/lock.svg.192dpi.png", + Loc.GetString("contraband-examinable-verb-message")); + } - // for the jobs we compare the localized string in case you use an agent ID or custom job name that is not a prototype - if (departments.Intersect(ent.Comp.AllowedDepartments).Any() - || localizedJobs.Contains(jobId)) - { - // you are allowed to use this! - args.PushMarkup(Loc.GetString("contraband-examine-text-in-the-clear")); - } - else - { - // straight to jail! - args.PushMarkup(Loc.GetString("contraband-examine-text-avoid-carrying-around")); - } - } + private FormattedMessage GetContrabandExamine(String deptMessage, String carryMessage) + { + var msg = new FormattedMessage(); + msg.AddMarkupOrThrow(deptMessage); + msg.PushNewline(); + msg.AddMarkupOrThrow(carryMessage); + return msg; + } + + private void SetContrabandExamine(bool val) + { + _contrabandExamineEnabled = val; } } diff --git a/Content.Shared/Damage/Components/DamageableComponent.cs b/Content.Shared/Damage/Components/DamageableComponent.cs index a99840e1ae6..8ea3567b055 100644 --- a/Content.Shared/Damage/Components/DamageableComponent.cs +++ b/Content.Shared/Damage/Components/DamageableComponent.cs @@ -84,15 +84,18 @@ public sealed partial class DamageableComponent : Component public sealed class DamageableComponentState : ComponentState { public readonly Dictionary DamageDict; + public readonly string? DamageContainerId; public readonly string? ModifierSetId; public readonly FixedPoint2? HealthBarThreshold; public DamageableComponentState( Dictionary damageDict, + string? damageContainerId, string? modifierSetId, FixedPoint2? healthBarThreshold) { DamageDict = damageDict; + DamageContainerId = damageContainerId; ModifierSetId = modifierSetId; HealthBarThreshold = healthBarThreshold; } diff --git a/Content.Shared/Damage/Systems/DamageableSystem.cs b/Content.Shared/Damage/Systems/DamageableSystem.cs index f02d2b1021a..f9e2e11bceb 100644 --- a/Content.Shared/Damage/Systems/DamageableSystem.cs +++ b/Content.Shared/Damage/Systems/DamageableSystem.cs @@ -1,4 +1,6 @@ using System.Linq; +using Content.Shared.CCVar; +using Content.Shared.Chemistry; using Content.Shared.Damage.Prototypes; using Content.Shared.FixedPoint; using Content.Shared.Inventory; @@ -7,6 +9,7 @@ using Content.Shared.Mobs.Systems; using Content.Shared.Radiation.Events; using Content.Shared.Rejuvenate; +using Robust.Shared.Configuration; using Robust.Shared.GameStates; using Robust.Shared.Network; using Robust.Shared.Prototypes; @@ -20,11 +23,24 @@ public sealed class DamageableSystem : EntitySystem [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly INetManager _netMan = default!; [Dependency] private readonly MobThresholdSystem _mobThreshold = default!; + [Dependency] private readonly IConfigurationManager _config = default!; + [Dependency] private readonly SharedChemistryGuideDataSystem _chemistryGuideData = default!; private EntityQuery _appearanceQuery; private EntityQuery _damageableQuery; private EntityQuery _mindContainerQuery; + public float UniversalAllDamageModifier { get; private set; } = 1f; + public float UniversalAllHealModifier { get; private set; } = 1f; + public float UniversalMeleeDamageModifier { get; private set; } = 1f; + public float UniversalProjectileDamageModifier { get; private set; } = 1f; + public float UniversalHitscanDamageModifier { get; private set; } = 1f; + public float UniversalReagentDamageModifier { get; private set; } = 1f; + public float UniversalReagentHealModifier { get; private set; } = 1f; + public float UniversalExplosionDamageModifier { get; private set; } = 1f; + public float UniversalThrownDamageModifier { get; private set; } = 1f; + public float UniversalTopicalsHealModifier { get; private set; } = 1f; + public override void Initialize() { SubscribeLocalEvent(DamageableInit); @@ -36,6 +52,36 @@ public override void Initialize() _appearanceQuery = GetEntityQuery(); _damageableQuery = GetEntityQuery(); _mindContainerQuery = GetEntityQuery(); + + // Damage modifier CVars are updated and stored here to be queried in other systems. + // Note that certain modifiers requires reloading the guidebook. + Subs.CVar(_config, CCVars.PlaytestAllDamageModifier, value => + { + UniversalAllDamageModifier = value; + _chemistryGuideData.ReloadAllReagentPrototypes(); + }, true); + Subs.CVar(_config, CCVars.PlaytestAllHealModifier, value => + { + UniversalAllHealModifier = value; + _chemistryGuideData.ReloadAllReagentPrototypes(); + }, true); + Subs.CVar(_config, CCVars.PlaytestProjectileDamageModifier, value => UniversalProjectileDamageModifier = value, true); + Subs.CVar(_config, CCVars.PlaytestMeleeDamageModifier, value => UniversalMeleeDamageModifier = value, true); + Subs.CVar(_config, CCVars.PlaytestProjectileDamageModifier, value => UniversalProjectileDamageModifier = value, true); + Subs.CVar(_config, CCVars.PlaytestHitscanDamageModifier, value => UniversalHitscanDamageModifier = value, true); + Subs.CVar(_config, CCVars.PlaytestReagentDamageModifier, value => + { + UniversalReagentDamageModifier = value; + _chemistryGuideData.ReloadAllReagentPrototypes(); + }, true); + Subs.CVar(_config, CCVars.PlaytestReagentHealModifier, value => + { + UniversalReagentHealModifier = value; + _chemistryGuideData.ReloadAllReagentPrototypes(); + }, true); + Subs.CVar(_config, CCVars.PlaytestExplosionDamageModifier, value => UniversalExplosionDamageModifier = value, true); + Subs.CVar(_config, CCVars.PlaytestThrownDamageModifier, value => UniversalThrownDamageModifier = value, true); + Subs.CVar(_config, CCVars.PlaytestTopicalsHealModifier, value => UniversalTopicalsHealModifier = value, true); } /// @@ -164,6 +210,8 @@ public void DamageChanged(EntityUid uid, DamageableComponent component, DamageSp } } + damage = ApplyUniversalAllModifiers(damage); + // TODO DAMAGE PERFORMANCE // Consider using a local private field instead of creating a new dictionary here. // Would need to check that nothing ever tries to cache the delta. @@ -191,6 +239,37 @@ public void DamageChanged(EntityUid uid, DamageableComponent component, DamageSp return delta; } + /// + /// Applies the two univeral "All" modifiers, if set. + /// Individual damage source modifiers are set in their respective code. + /// + /// The damage to be changed. + public DamageSpecifier ApplyUniversalAllModifiers(DamageSpecifier damage) + { + // Checks for changes first since they're unlikely in normal play. + if (UniversalAllDamageModifier == 1f && UniversalAllHealModifier == 1f) + return damage; + + foreach (var (key, value) in damage.DamageDict) + { + if (value == 0) + continue; + + if (value > 0) + { + damage.DamageDict[key] *= UniversalAllDamageModifier; + continue; + } + + if (value < 0) + { + damage.DamageDict[key] *= UniversalAllHealModifier; + } + } + + return damage; + } + /// /// Sets all damage types supported by a to the specified value. /// @@ -228,12 +307,12 @@ private void DamageableGetState(EntityUid uid, DamageableComponent component, re { if (_netMan.IsServer) { - args.State = new DamageableComponentState(component.Damage.DamageDict, component.DamageModifierSetId, component.HealthBarThreshold); + args.State = new DamageableComponentState(component.Damage.DamageDict, component.DamageContainerID, component.DamageModifierSetId, component.HealthBarThreshold); } else { // avoid mispredicting damage on newly spawned entities. - args.State = new DamageableComponentState(component.Damage.DamageDict.ShallowClone(), component.DamageModifierSetId, component.HealthBarThreshold); + args.State = new DamageableComponentState(component.Damage.DamageDict.ShallowClone(), component.DamageContainerID, component.DamageModifierSetId, component.HealthBarThreshold); } } @@ -266,6 +345,7 @@ private void DamageableHandleState(EntityUid uid, DamageableComponent component, return; } + component.DamageContainerID = state.DamageContainerId; component.DamageModifierSetId = state.ModifierSetId; component.HealthBarThreshold = state.HealthBarThreshold; diff --git a/Content.Shared/Dice/DiceComponent.cs b/Content.Shared/Dice/DiceComponent.cs index c01ad3c4518..27f7bd70e06 100644 --- a/Content.Shared/Dice/DiceComponent.cs +++ b/Content.Shared/Dice/DiceComponent.cs @@ -1,6 +1,5 @@ using Robust.Shared.Audio; using Robust.Shared.GameStates; -using Robust.Shared.Serialization; namespace Content.Shared.Dice; diff --git a/Content.Shared/Dice/SharedDiceSystem.cs b/Content.Shared/Dice/SharedDiceSystem.cs index 8e2868e791d..71a51584d36 100644 --- a/Content.Shared/Dice/SharedDiceSystem.cs +++ b/Content.Shared/Dice/SharedDiceSystem.cs @@ -1,12 +1,18 @@ using Content.Shared.Examine; using Content.Shared.Interaction.Events; +using Content.Shared.Popups; using Content.Shared.Throwing; -using Robust.Shared.GameStates; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Timing; namespace Content.Shared.Dice; public abstract class SharedDiceSystem : EntitySystem { + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + public override void Initialize() { base.Initialize(); @@ -14,76 +20,67 @@ public override void Initialize() SubscribeLocalEvent(OnUseInHand); SubscribeLocalEvent(OnLand); SubscribeLocalEvent(OnExamined); - SubscribeLocalEvent(OnDiceAfterHandleState); - } - - private void OnDiceAfterHandleState(EntityUid uid, DiceComponent component, ref AfterAutoHandleStateEvent args) - { - UpdateVisuals(uid, component); } - private void OnUseInHand(EntityUid uid, DiceComponent component, UseInHandEvent args) + private void OnUseInHand(Entity entity, ref UseInHandEvent args) { if (args.Handled) return; + Roll(entity, args.User); args.Handled = true; - Roll(uid, component); } - private void OnLand(EntityUid uid, DiceComponent component, ref LandEvent args) + private void OnLand(Entity entity, ref LandEvent args) { - Roll(uid, component); + Roll(entity); } - private void OnExamined(EntityUid uid, DiceComponent dice, ExaminedEvent args) + private void OnExamined(Entity entity, ref ExaminedEvent args) { //No details check, since the sprite updates to show the side. using (args.PushGroup(nameof(DiceComponent))) { - args.PushMarkup(Loc.GetString("dice-component-on-examine-message-part-1", ("sidesAmount", dice.Sides))); + args.PushMarkup(Loc.GetString("dice-component-on-examine-message-part-1", ("sidesAmount", entity.Comp.Sides))); args.PushMarkup(Loc.GetString("dice-component-on-examine-message-part-2", - ("currentSide", dice.CurrentValue))); + ("currentSide", entity.Comp.CurrentValue))); } } - public void SetCurrentSide(EntityUid uid, int side, DiceComponent? die = null) + private void SetCurrentSide(Entity entity, int side) { - if (!Resolve(uid, ref die)) - return; - - if (side < 1 || side > die.Sides) + if (side < 1 || side > entity.Comp.Sides) { - Log.Error($"Attempted to set die {ToPrettyString(uid)} to an invalid side ({side})."); + Log.Error($"Attempted to set die {ToPrettyString(entity)} to an invalid side ({side})."); return; } - die.CurrentValue = (side - die.Offset) * die.Multiplier; - Dirty(uid, die); - UpdateVisuals(uid, die); + entity.Comp.CurrentValue = (side - entity.Comp.Offset) * entity.Comp.Multiplier; + Dirty(entity); } - public void SetCurrentValue(EntityUid uid, int value, DiceComponent? die = null) + public void SetCurrentValue(Entity entity, int value) { - if (!Resolve(uid, ref die)) - return; - - if (value % die.Multiplier != 0 || value/ die.Multiplier + die.Offset < 1) + if (value % entity.Comp.Multiplier != 0 || value / entity.Comp.Multiplier + entity.Comp.Offset < 1) { - Log.Error($"Attempted to set die {ToPrettyString(uid)} to an invalid value ({value})."); + Log.Error($"Attempted to set die {ToPrettyString(entity)} to an invalid value ({value})."); return; } - SetCurrentSide(uid, value / die.Multiplier + die.Offset, die); + SetCurrentSide(entity, value / entity.Comp.Multiplier + entity.Comp.Offset); } - protected virtual void UpdateVisuals(EntityUid uid, DiceComponent? die = null) + private void Roll(Entity entity, EntityUid? user = null) { - // See client system. - } + var rand = new System.Random((int)_timing.CurTick.Value); - public virtual void Roll(EntityUid uid, DiceComponent? die = null) - { - // See the server system, client cannot predict rolling. + var roll = rand.Next(1, entity.Comp.Sides + 1); + SetCurrentSide(entity, roll); + + var popupString = Loc.GetString("dice-component-on-roll-land", + ("die", entity), + ("currentSide", entity.Comp.CurrentValue)); + _popup.PopupPredicted(popupString, entity, user); + _audio.PlayPredicted(entity.Comp.Sound, entity, user); } } diff --git a/Content.Shared/DoAfter/SharedDoAfterSystem.cs b/Content.Shared/DoAfter/SharedDoAfterSystem.cs index 86f29fd49c8..c246c2844a4 100644 --- a/Content.Shared/DoAfter/SharedDoAfterSystem.cs +++ b/Content.Shared/DoAfter/SharedDoAfterSystem.cs @@ -3,7 +3,6 @@ using Content.Shared.ActionBlocker; using Content.Shared.Damage; using Content.Shared.Hands.Components; -using Content.Shared.Mobs; using Content.Shared.Tag; using Robust.Shared.GameStates; using Robust.Shared.Serialization; @@ -29,7 +28,6 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnDamage); SubscribeLocalEvent(OnUnpaused); - SubscribeLocalEvent(OnStateChanged); SubscribeLocalEvent(OnDoAfterGetState); SubscribeLocalEvent(OnDoAfterHandleState); } @@ -46,18 +44,6 @@ private void OnUnpaused(EntityUid uid, DoAfterComponent component, ref EntityUnp Dirty(uid, component); } - private void OnStateChanged(EntityUid uid, DoAfterComponent component, MobStateChangedEvent args) - { - if (args.NewMobState != MobState.Dead || args.NewMobState != MobState.Critical) - return; - - foreach (var doAfter in component.DoAfters.Values) - { - InternalCancel(doAfter, component); - } - Dirty(uid, component); - } - /// /// Cancels DoAfter if it breaks on damage and it meets the threshold /// diff --git a/Content.Shared/Doors/Components/DoorComponent.cs b/Content.Shared/Doors/Components/DoorComponent.cs index 5e35045b109..a8cb25782ed 100644 --- a/Content.Shared/Doors/Components/DoorComponent.cs +++ b/Content.Shared/Doors/Components/DoorComponent.cs @@ -314,7 +314,6 @@ public enum DoorState : byte public enum DoorVisuals : byte { State, - Powered, BoltLights, EmergencyLights, ClosedLights, diff --git a/Content.Shared/Doors/Systems/SharedDoorSystem.cs b/Content.Shared/Doors/Systems/SharedDoorSystem.cs index f2dcd443e91..23bea0cdf14 100644 --- a/Content.Shared/Doors/Systems/SharedDoorSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorSystem.cs @@ -23,7 +23,6 @@ using Robust.Shared.Audio.Systems; using Robust.Shared.Network; using Robust.Shared.Map.Components; -using Robust.Shared.Physics; namespace Content.Shared.Doors.Systems; diff --git a/Content.Shared/Explosion/Components/ScatteringGrenadeComponent.cs b/Content.Shared/Explosion/Components/ScatteringGrenadeComponent.cs index be27c49ffa4..059ad189d11 100644 --- a/Content.Shared/Explosion/Components/ScatteringGrenadeComponent.cs +++ b/Content.Shared/Explosion/Components/ScatteringGrenadeComponent.cs @@ -27,7 +27,7 @@ public sealed partial class ScatteringGrenadeComponent : Component /// /// If we have a pre-fill how many more can we spawn. /// - [AutoNetworkedField] + [ViewVariables(VVAccess.ReadOnly), AutoNetworkedField] public int UnspawnedCount; /// @@ -36,6 +36,12 @@ public sealed partial class ScatteringGrenadeComponent : Component [DataField] public int Capacity = 3; + /// + /// Number of grenades currently contained in the cluster (both spawned and unspawned) + /// + [ViewVariables(VVAccess.ReadOnly)] + public int Count => UnspawnedCount + Container.ContainedEntities.Count; + /// /// Decides if contained entities trigger after getting launched /// diff --git a/Content.Shared/Explosion/EntitySystems/SharedScatteringGrenadeSystem.cs b/Content.Shared/Explosion/EntitySystems/SharedScatteringGrenadeSystem.cs index b704fbf86f3..7b54b0f7d5f 100644 --- a/Content.Shared/Explosion/EntitySystems/SharedScatteringGrenadeSystem.cs +++ b/Content.Shared/Explosion/EntitySystems/SharedScatteringGrenadeSystem.cs @@ -49,6 +49,10 @@ private void OnScatteringInteractUsing(Entity entity if (entity.Comp.Whitelist == null) return; + // Make sure there's room for another grenade to be added + if (entity.Comp.Count >= entity.Comp.Capacity) + return; + if (args.Handled || !_whitelistSystem.IsValid(entity.Comp.Whitelist, args.Used)) return; @@ -65,6 +69,6 @@ private void UpdateAppearance(Entity entity) if (!TryComp(entity, out var appearanceComponent)) return; - _appearance.SetData(entity, ClusterGrenadeVisuals.GrenadesCounter, entity.Comp.UnspawnedCount + entity.Comp.Container.ContainedEntities.Count, appearanceComponent); + _appearance.SetData(entity, ClusterGrenadeVisuals.GrenadesCounter, entity.Comp.Count, appearanceComponent); } } diff --git a/Content.Shared/Follower/Components/FollowerComponent.cs b/Content.Shared/Follower/Components/FollowerComponent.cs index 15d23a7037d..ede810293ff 100644 --- a/Content.Shared/Follower/Components/FollowerComponent.cs +++ b/Content.Shared/Follower/Components/FollowerComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Follower.Components; [RegisterComponent] [Access(typeof(FollowerSystem))] -[NetworkedComponent, AutoGenerateComponentState] +[NetworkedComponent, AutoGenerateComponentState(RaiseAfterAutoHandleState = true)] public sealed partial class FollowerComponent : Component { [AutoNetworkedField, DataField("following")] diff --git a/Content.Shared/Follower/FollowerSystem.cs b/Content.Shared/Follower/FollowerSystem.cs index 7ba417b2d36..adb96312c23 100644 --- a/Content.Shared/Follower/FollowerSystem.cs +++ b/Content.Shared/Follower/FollowerSystem.cs @@ -1,3 +1,4 @@ +using System.Linq; using System.Numerics; using Content.Shared.Administration.Managers; using Content.Shared.Database; @@ -6,6 +7,7 @@ using Content.Shared.Hands; using Content.Shared.Movement.Events; using Content.Shared.Movement.Pulling.Events; +using Content.Shared.Polymorph; using Content.Shared.Tag; using Content.Shared.Verbs; using Robust.Shared.Containers; @@ -40,11 +42,13 @@ public override void Initialize() SubscribeLocalEvent(OnFollowerMove); SubscribeLocalEvent(OnPullStarted); SubscribeLocalEvent(OnFollowerTerminating); + SubscribeLocalEvent(OnAfterHandleState); SubscribeLocalEvent(OnFollowedAttempt); SubscribeLocalEvent(OnGotEquippedHand); SubscribeLocalEvent(OnFollowedTerminating); - SubscribeLocalEvent(OnBeforeSave); + SubscribeLocalEvent(OnBeforeSave); + SubscribeLocalEvent(OnFollowedPolymorphed); } private void OnFollowedAttempt(Entity ent, ref ComponentGetStateAttemptEvent args) @@ -62,10 +66,16 @@ private void OnFollowedAttempt(Entity ent, ref ComponentGetSt } } - private void OnBeforeSave(BeforeSaveEvent ev) + private void OnBeforeSave(BeforeSerializationEvent ev) { - // Some followers will not be map savable. This ensures that maps don't get saved with empty/invalid - // followers, but just stopping any following on the map being saved. + // Some followers will not be map savable. This ensures that maps don't get saved with some entities that have + // empty/invalid followers, by just stopping any following happening on the map being saved. + // I hate this so much. + // TODO WeakEntityReference + // We need some way to store entity references in a way that doesn't imply that the entity still exists. + // Then we wouldn't have to deal with this shit. + + var maps = ev.Entities.Select(x => Transform(x).MapUid).ToHashSet(); var query = AllEntityQuery(); while (query.MoveNext(out var uid, out var follower, out var xform, out var meta)) @@ -73,7 +83,7 @@ private void OnBeforeSave(BeforeSaveEvent ev) if (meta.EntityPrototype == null || meta.EntityPrototype.MapSavable) continue; - if (xform.MapUid != ev.Map) + if (!maps.Contains(xform.MapUid)) continue; StopFollowingEntity(uid, follower.Following); @@ -137,6 +147,11 @@ private void OnFollowerTerminating(EntityUid uid, FollowerComponent component, r StopFollowingEntity(uid, component.Following, deparent: false); } + private void OnAfterHandleState(Entity entity, ref AfterAutoHandleStateEvent args) + { + StartFollowingEntity(entity, entity.Comp.Following); + } + // Since we parent our observer to the followed entity, we need to detach // before they get deleted so that we don't get recursively deleted too. private void OnFollowedTerminating(EntityUid uid, FollowedComponent component, ref EntityTerminatingEvent args) @@ -144,6 +159,15 @@ private void OnFollowedTerminating(EntityUid uid, FollowedComponent component, r StopAllFollowers(uid, component); } + private void OnFollowedPolymorphed(Entity entity, ref PolymorphedEvent args) + { + foreach (var follower in entity.Comp.Following) + { + // Stop following the target's old entity and start following the new one + StartFollowingEntity(follower, args.NewEntity); + } + } + /// /// Makes an entity follow another entity, by parenting to it. /// @@ -212,6 +236,7 @@ public void StartFollowingEntity(EntityUid follower, EntityUid entity) RaiseLocalEvent(follower, followerEv); RaiseLocalEvent(entity, entityEv); Dirty(entity, followedComp); + Dirty(follower, followerComp); } /// @@ -223,7 +248,7 @@ public void StopFollowingEntity(EntityUid uid, EntityUid target, FollowedCompone if (!Resolve(target, ref followed, false)) return; - if (!HasComp(uid)) + if (!TryComp(uid, out var followerComp) || followerComp.Following != target) return; followed.Following.Remove(uid); diff --git a/Content.Shared/GameTicking/SharedGameTicker.cs b/Content.Shared/GameTicking/SharedGameTicker.cs index 5126a6bdc49..015889b1523 100644 --- a/Content.Shared/GameTicking/SharedGameTicker.cs +++ b/Content.Shared/GameTicking/SharedGameTicker.cs @@ -41,7 +41,10 @@ public override void Shutdown() private void OnRecordingStart(MappingDataNode metadata, List events) { - metadata["roundId"] = new ValueDataNode(RoundId.ToString()); + if (RoundId != 0) + { + metadata["roundId"] = new ValueDataNode(RoundId.ToString()); + } } public TimeSpan RoundDuration() diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs index fc5adfaf15a..3b22917fe8e 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs @@ -188,11 +188,13 @@ private void OnGetUsedEntity(EntityUid uid, HandsComponent component, ref GetUse if (args.Handled) return; - // TODO: this pattern is super uncommon, but it might be worth changing GetUsedEntityEvent to be recursive. - if (TryComp(component.ActiveHandEntity, out var virtualItem)) - args.Used = virtualItem.BlockingEntity; - else - args.Used = component.ActiveHandEntity; + if (component.ActiveHandEntity.HasValue) + { + // allow for the item to return a different entity, e.g. virtual items + RaiseLocalEvent(component.ActiveHandEntity.Value, ref args); + } + + args.Used ??= component.ActiveHandEntity; } //TODO: Actually shows all items/clothing/etc. diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index 9fcaff3f937..d3015b2e36c 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -28,7 +28,6 @@ using Content.Shared.Verbs; using Content.Shared.Wall; using JetBrains.Annotations; -using Robust.Shared.Configuration; using Robust.Shared.Containers; using Robust.Shared.Input; using Robust.Shared.Input.Binding; @@ -38,7 +37,6 @@ using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; using Robust.Shared.Player; -using Robust.Shared.Random; using Robust.Shared.Serialization; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -65,12 +63,10 @@ public abstract partial class SharedInteractionSystem : EntitySystem [Dependency] private readonly UseDelaySystem _useDelay = default!; [Dependency] private readonly PullingSystem _pullSystem = default!; [Dependency] private readonly InventorySystem _inventory = default!; - [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly TagSystem _tagSystem = default!; [Dependency] private readonly SharedUserInterfaceSystem _ui = default!; [Dependency] private readonly SharedStrippableSystem _strippable = default!; [Dependency] private readonly SharedPlayerRateLimitManager _rateLimit = default!; - [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly ISharedChatManager _chat = default!; private EntityQuery _ignoreUiRangeQuery; @@ -753,7 +749,7 @@ public bool InRangeUnobstructed( fixtureB.FixtureCount > 0 && Resolve(origin, ref origin.Comp)) { - var (worldPosA, worldRotA) = origin.Comp.GetWorldPositionRotation(); + var (worldPosA, worldRotA) = _transform.GetWorldPositionRotation(origin.Comp); var xfA = new Transform(worldPosA, worldRotA); var parentRotB = _transform.GetWorldRotation(otherCoordinates.EntityId); var xfB = new Transform(targetPos.Position, parentRotB + otherAngle); @@ -826,7 +822,7 @@ public bool InRangeUnobstructed( Ignored? predicate = null) { var transform = Transform(target); - var (position, rotation) = transform.GetWorldPositionRotation(); + var (position, rotation) = _transform.GetWorldPositionRotation(transform); var mapPos = new MapCoordinates(position, transform.MapID); var combinedPredicate = GetPredicate(origin, target, mapPos, rotation, collisionMask, predicate); @@ -1414,7 +1410,7 @@ private void HandleUserInterfaceRangeCheck(ref BoundUserInterfaceCheckRangeEvent /// If there is an entity being used. public bool TryGetUsedEntity(EntityUid user, [NotNullWhen(true)] out EntityUid? used, bool checkCanUse = true) { - var ev = new GetUsedEntityEvent(); + var ev = new GetUsedEntityEvent(user); RaiseLocalEvent(user, ref ev); used = ev.Used; @@ -1465,8 +1461,9 @@ public InteractInventorySlotEvent(NetEntity itemUid, bool altInteract = false) /// Raised directed by-ref on an entity to determine what item will be used in interactions. /// [ByRefEvent] - public record struct GetUsedEntityEvent() + public record struct GetUsedEntityEvent(EntityUid User) { + public EntityUid User = User; public EntityUid? Used = null; public bool Handled => Used != null; diff --git a/Content.Shared/Inventory/InventorySystem.Helpers.cs b/Content.Shared/Inventory/InventorySystem.Helpers.cs index 7e325abe216..746342e2f15 100644 --- a/Content.Shared/Inventory/InventorySystem.Helpers.cs +++ b/Content.Shared/Inventory/InventorySystem.Helpers.cs @@ -40,7 +40,7 @@ public IEnumerable GetHandOrInventoryEntities(Entity public bool TryGetContainingSlot(Entity entity, [NotNullWhen(true)] out SlotDefinition? slot) { - if (!_containerSystem.TryGetContainingContainer(entity.Owner, out var container, entity.Comp2, entity.Comp1)) + if (!_containerSystem.TryGetContainingContainer(entity, out var container)) { slot = null; return false; diff --git a/Content.Shared/Inventory/InventorySystem.Relay.cs b/Content.Shared/Inventory/InventorySystem.Relay.cs index 3fca94f2d07..b314e2329fe 100644 --- a/Content.Shared/Inventory/InventorySystem.Relay.cs +++ b/Content.Shared/Inventory/InventorySystem.Relay.cs @@ -1,3 +1,4 @@ +using Content.Shared.Armor; using Content.Shared.Chat; using Content.Shared.Chemistry; using Content.Shared.Chemistry.Hypospray.Events; @@ -46,6 +47,7 @@ public void InitializeRelay() SubscribeLocalEvent(RelayInventoryEvent); SubscribeLocalEvent(RelayInventoryEvent); SubscribeLocalEvent(RelayInventoryEvent); + SubscribeLocalEvent(RelayInventoryEvent); SubscribeLocalEvent(RelayInventoryEvent); // goob edit SubscribeLocalEvent(RelayInventoryEvent); // ADT Stunmeta fix SubscribeLocalEvent(RelayInventoryEvent); // ADT Injector blocking diff --git a/Content.Shared/Inventory/VirtualItem/SharedVirtualItemSystem.cs b/Content.Shared/Inventory/VirtualItem/SharedVirtualItemSystem.cs index 3fdd5683658..bfc3eab1a40 100644 --- a/Content.Shared/Inventory/VirtualItem/SharedVirtualItemSystem.cs +++ b/Content.Shared/Inventory/VirtualItem/SharedVirtualItemSystem.cs @@ -47,6 +47,8 @@ public override void Initialize() SubscribeLocalEvent(OnBeforeRangedInteract); SubscribeLocalEvent(OnGettingInteractedWithAttemptEvent); + + SubscribeLocalEvent(OnGetUsedEntity); } /// @@ -82,6 +84,23 @@ private void OnGettingInteractedWithAttemptEvent(Entity en args.Cancelled = true; } + private void OnGetUsedEntity(Entity ent, ref GetUsedEntityEvent args) + { + if (args.Handled) + return; + + // if the user is holding the real item the virtual item points to, + // we allow them to use it in the interaction + foreach (var hand in _handsSystem.EnumerateHands(args.User)) + { + if (hand.HeldEntity == ent.Comp.BlockingEntity) + { + args.Used = ent.Comp.BlockingEntity; + return; + } + } + } + #region Hands /// diff --git a/Content.Shared/ItemRecall/SharedItemRecallSystem.cs b/Content.Shared/ItemRecall/SharedItemRecallSystem.cs index 63d38203c65..aaedfb6c618 100644 --- a/Content.Shared/ItemRecall/SharedItemRecallSystem.cs +++ b/Content.Shared/ItemRecall/SharedItemRecallSystem.cs @@ -1,6 +1,7 @@ using Content.Shared.Actions; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; +using Content.Shared.IdentityManagement; using Content.Shared.Popups; using Content.Shared.Projectiles; using Robust.Shared.GameStates; @@ -81,9 +82,12 @@ private void RecallItem(Entity ent) return; if (TryComp(ent, out var projectile)) - _proj.UnEmbed(ent, projectile, actionOwner.Value); + _proj.EmbedDetach(ent, projectile, actionOwner.Value); - _popups.PopupPredicted(Loc.GetString("item-recall-item-summon", ("item", ent)), actionOwner.Value, actionOwner.Value); + _popups.PopupPredicted(Loc.GetString("item-recall-item-summon-self", ("item", ent)), + Loc.GetString("item-recall-item-summon-others", ("item", ent), ("name", Identity.Entity(actionOwner.Value, EntityManager))), + actionOwner.Value, actionOwner.Value); + _popups.PopupPredictedCoordinates(Loc.GetString("item-recall-item-disappear", ("item", ent)), Transform(ent).Coordinates, actionOwner.Value); _hands.TryForcePickupAnyHand(actionOwner.Value, ent); } diff --git a/Content.Shared/Light/Components/LightCycleComponent.cs b/Content.Shared/Light/Components/LightCycleComponent.cs new file mode 100644 index 00000000000..a6ce63bdbc2 --- /dev/null +++ b/Content.Shared/Light/Components/LightCycleComponent.cs @@ -0,0 +1,56 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Map.Components; + +namespace Content.Shared.Light.Components; + +/// +/// Cycles through colors AKA "Day / Night cycle" on +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class LightCycleComponent : Component +{ + [DataField, AutoNetworkedField] + public Color OriginalColor = Color.Transparent; + + /// + /// How long an entire cycle lasts + /// + [DataField, AutoNetworkedField] + public TimeSpan Duration = TimeSpan.FromMinutes(30); + + [DataField, AutoNetworkedField] + public TimeSpan Offset; + + [DataField, AutoNetworkedField] + public bool Enabled = true; + + /// + /// Should the offset be randomised upon MapInit. + /// + [DataField, AutoNetworkedField] + public bool InitialOffset = true; + + /// + /// Trench of the oscillation. + /// + [DataField, AutoNetworkedField] + public float MinLightLevel = 0f; + + /// + /// Peak of the oscillation + /// + [DataField, AutoNetworkedField] + public float MaxLightLevel = 3f; + + [DataField, AutoNetworkedField] + public float ClipLight = 1.25f; + + [DataField, AutoNetworkedField] + public Color ClipLevel = new Color(1f, 1f, 1.25f); + + [DataField, AutoNetworkedField] + public Color MinLevel = new Color(0.1f, 0.15f, 0.50f); + + [DataField, AutoNetworkedField] + public Color MaxLevel = new Color(2f, 2f, 5f); +} diff --git a/Content.Shared/Light/Components/RoofComponent.cs b/Content.Shared/Light/Components/RoofComponent.cs new file mode 100644 index 00000000000..0e2adf527cd --- /dev/null +++ b/Content.Shared/Light/Components/RoofComponent.cs @@ -0,0 +1,13 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Light.Components; + +/// +/// Will draw shadows over tiles flagged as roof tiles on the attached map. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class RoofComponent : Component +{ + [DataField, AutoNetworkedField] + public Color Color = Color.Black; +} diff --git a/Content.Shared/Light/Components/TileEmissionComponent.cs b/Content.Shared/Light/Components/TileEmissionComponent.cs new file mode 100644 index 00000000000..0eec19702d8 --- /dev/null +++ b/Content.Shared/Light/Components/TileEmissionComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Light.Components; + +/// +/// Will draw lighting in a range around the tile. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TileEmissionComponent : Component +{ + [DataField, AutoNetworkedField] + public float Range = 0.25f; + + [DataField(required: true), AutoNetworkedField] + public Color Color = Color.Transparent; +} diff --git a/Content.Shared/Light/EntitySystems/SharedRoofSystem.cs b/Content.Shared/Light/EntitySystems/SharedRoofSystem.cs new file mode 100644 index 00000000000..d06b5bcb0ce --- /dev/null +++ b/Content.Shared/Light/EntitySystems/SharedRoofSystem.cs @@ -0,0 +1,42 @@ +using Content.Shared.Light.Components; +using Content.Shared.Maps; +using Robust.Shared.Map; +using Robust.Shared.Map.Components; + +namespace Content.Shared.Light.EntitySystems; + +/// +/// Handles the roof flag for tiles that gets used for the RoofOverlay. +/// +public abstract class SharedRoofSystem : EntitySystem +{ + [Dependency] private readonly SharedMapSystem _maps = default!; + + public void SetRoof(Entity grid, Vector2i index, bool value) + { + if (!Resolve(grid, ref grid.Comp1, ref grid.Comp2, false)) + return; + + if (!_maps.TryGetTile(grid.Comp1, index, out var tile)) + return; + + var mask = (tile.Flags & (byte)TileFlag.Roof); + var rooved = mask != 0x0; + + if (rooved == value) + return; + + Tile newTile; + + if (value) + { + newTile = tile.WithFlag((byte)(tile.Flags | (ushort)TileFlag.Roof)); + } + else + { + newTile = tile.WithFlag((byte)(tile.Flags & ~(ushort)TileFlag.Roof)); + } + + _maps.SetTile((grid.Owner, grid.Comp1), index, newTile); + } +} diff --git a/Content.Shared/Localizations/ContentLocalizationManager.cs b/Content.Shared/Localizations/ContentLocalizationManager.cs index 91fb70a5a2d..a274901d5bb 100644 --- a/Content.Shared/Localizations/ContentLocalizationManager.cs +++ b/Content.Shared/Localizations/ContentLocalizationManager.cs @@ -152,8 +152,9 @@ public static string FormatDirection(Direction dir) /// public static string FormatPlaytime(TimeSpan time) { + time = TimeSpan.FromMinutes(Math.Ceiling(time.TotalMinutes)); var hours = (int)time.TotalHours; - var minutes = (int)Math.Ceiling(time.TotalMinutes); + var minutes = time.Minutes; return Loc.GetString($"zzzz-fmt-playtime", ("hours", hours), ("minutes", minutes)); } diff --git a/Content.Shared/Magic/Components/AnimateableComponent.cs b/Content.Shared/Magic/Components/AnimateableComponent.cs new file mode 100644 index 00000000000..a0e44d4bb4d --- /dev/null +++ b/Content.Shared/Magic/Components/AnimateableComponent.cs @@ -0,0 +1,11 @@ + +using Robust.Shared.GameStates; + +namespace Content.Shared.Magic.Components; + +// Used on whitelist for animate spell/wand +[RegisterComponent, NetworkedComponent] +public sealed partial class AnimateableComponent : Component +{ + +} diff --git a/Content.Shared/Magic/Events/AnimateSpellEvent.cs b/Content.Shared/Magic/Events/AnimateSpellEvent.cs new file mode 100644 index 00000000000..60331b2804b --- /dev/null +++ b/Content.Shared/Magic/Events/AnimateSpellEvent.cs @@ -0,0 +1,16 @@ +using Content.Shared.Actions; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Magic.Events; + +public sealed partial class AnimateSpellEvent : EntityTargetActionEvent, ISpeakSpell +{ + [DataField] + public string? Speech { get; private set; } + + [DataField] + public ComponentRegistry AddComponents = new(); + + [DataField] + public HashSet RemoveComponents = new(); +} diff --git a/Content.Shared/Magic/SharedMagicSystem.cs b/Content.Shared/Magic/SharedMagicSystem.cs index 878c4bdca4f..0be5646f4b2 100644 --- a/Content.Shared/Magic/SharedMagicSystem.cs +++ b/Content.Shared/Magic/SharedMagicSystem.cs @@ -1,3 +1,4 @@ +using System.Linq; using System.Numerics; using Content.Shared.Actions; using Content.Shared.Body.Components; @@ -26,7 +27,10 @@ using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Network; +using Robust.Shared.Physics; +using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; +using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Serialization.Manager; using Robust.Shared.Spawners; @@ -80,6 +84,7 @@ public override void Initialize() SubscribeLocalEvent(OnRandomGlobalSpawnSpell); SubscribeLocalEvent(OnMindSwapSpell); SubscribeLocalEvent(OnVoidApplause); + SubscribeLocalEvent(OnAnimateSpell); } private void OnBeforeCastSpell(Entity ent, ref BeforeCastSpellEvent args) @@ -298,22 +303,8 @@ private void OnChangeComponentsSpell(ChangeComponentsSpellEvent ev) ev.Handled = true; Speak(ev); - foreach (var toRemove in ev.ToRemove) - { - if (_compFact.TryGetRegistration(toRemove, out var registration)) - RemComp(ev.Target, registration.Type); - } - - foreach (var (name, data) in ev.ToAdd) - { - if (HasComp(ev.Target, data.Component.GetType())) - continue; - - var component = (Component)_compFact.GetComponent(name); - var temp = (object)component; - _seriMan.CopyTo(data.Component, ref temp); - EntityManager.AddComponent(ev.Target, (Component)temp!); - } + RemoveComponents(ev.Target, ev.ToRemove); + AddComponents(ev.Target, ev.ToAdd); } // End Change Component Spells #endregion @@ -370,6 +361,29 @@ private void SpawnSpellHelper(string? proto, EntityCoordinates position, EntityU comp.Uid = performer; } } + + private void AddComponents(EntityUid target, ComponentRegistry comps) + { + foreach (var (name, data) in comps) + { + if (HasComp(target, data.Component.GetType())) + continue; + + var component = (Component)_compFact.GetComponent(name); + var temp = (object)component; + _seriMan.CopyTo(data.Component, ref temp); + EntityManager.AddComponent(target, (Component)temp!); + } + } + + private void RemoveComponents(EntityUid target, HashSet comps) + { + foreach (var toRemove in comps) + { + if (_compFact.TryGetRegistration(toRemove, out var registration)) + RemComp(target, registration.Type); + } + } // End Spell Helpers #endregion #region Touch Spells @@ -514,6 +528,33 @@ private void OnMindSwapSpell(MindSwapSpellEvent ev) _stun.TryParalyze(ev.Performer, ev.PerformerStunDuration, true); } + #endregion + #region Animation Spells + + private void OnAnimateSpell(AnimateSpellEvent ev) + { + if (ev.Handled || !PassesSpellPrerequisites(ev.Action, ev.Performer) || !TryComp(ev.Target, out var fixtures) || + !TryComp(ev.Target, out var physics)) + return; + + ev.Handled = true; + //Speak(ev); + + RemoveComponents(ev.Target, ev.RemoveComponents); + AddComponents(ev.Target, ev.AddComponents); + + var xform = Transform(ev.Target); + var fixture = fixtures.Fixtures.First(); + + _transform.Unanchor(ev.Target); + _physics.SetCanCollide(ev.Target, true, true, false, fixtures, physics); + _physics.SetCollisionMask(ev.Target, fixture.Key, fixture.Value, (int)CollisionGroup.FlyingMobMask, fixtures, physics); + _physics.SetCollisionLayer(ev.Target, fixture.Key, fixture.Value, (int)CollisionGroup.FlyingMobLayer, fixtures, physics); + _physics.SetBodyType(ev.Target, BodyType.KinematicController, fixtures, physics, xform); + _physics.SetBodyStatus(ev.Target, physics, BodyStatus.InAir, true); + _physics.SetFixedRotation(ev.Target, false, true, fixtures, physics); + } + #endregion // End Spells #endregion diff --git a/Content.Shared/Maps/ContentTileDefinition.cs b/Content.Shared/Maps/ContentTileDefinition.cs index 839d920df94..86ceac77be7 100644 --- a/Content.Shared/Maps/ContentTileDefinition.cs +++ b/Content.Shared/Maps/ContentTileDefinition.cs @@ -1,9 +1,11 @@ using Content.Shared.Atmos; +using Content.Shared.Light.Components; using Content.Shared.Movement.Systems; using Content.Shared.Tools; using Robust.Shared.Audio; using Robust.Shared.Map; using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Array; using Robust.Shared.Utility; @@ -118,4 +120,11 @@ public void AssignTileId(ushort id) TileId = id; } } + + [Flags] + public enum TileFlag : byte + { + None = 0, + Roof = 1 << 0, + } } diff --git a/Content.Shared/Maps/TurfHelpers.cs b/Content.Shared/Maps/TurfHelpers.cs index 9a0b273c294..71bbb35db7d 100644 --- a/Content.Shared/Maps/TurfHelpers.cs +++ b/Content.Shared/Maps/TurfHelpers.cs @@ -120,10 +120,11 @@ public static bool IsBlockedTurf(this TileRef turf, bool filterMobs, EntityLooku private static bool GetWorldTileBox(TileRef turf, out Box2Rotated res) { var entManager = IoCManager.Resolve(); + var xformSystem = entManager.System(); if (entManager.TryGetComponent(turf.GridUid, out var tileGrid)) { - var gridRot = entManager.GetComponent(turf.GridUid).WorldRotation; + var gridRot = xformSystem.GetWorldRotation(turf.GridUid); // This is scaled to 90 % so it doesn't encompass walls on other tiles. var tileBox = Box2.UnitCentered.Scale(0.9f); diff --git a/Content.Shared/Movement/Systems/SharedMoverController.Input.cs b/Content.Shared/Movement/Systems/SharedMoverController.Input.cs index 6f508d9038c..14c80362871 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.Input.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.Input.cs @@ -8,6 +8,7 @@ using Robust.Shared.GameStates; using Robust.Shared.Input; using Robust.Shared.Input.Binding; +using Robust.Shared.Map.Components; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; @@ -207,7 +208,7 @@ private bool TryUpdateRelative(InputMoverComponent mover, TransformComponent xfo } // If we went from grid -> map we'll preserve our worldrotation - if (relative != null && _mapManager.IsMap(relative.Value)) + if (relative != null && HasComp(relative.Value)) { targetRotation = currentRotation.FlipPositive().Reduced(); } diff --git a/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs b/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs index d738f2dd8a2..e17e2bc893b 100644 --- a/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs +++ b/Content.Shared/Ninja/Systems/SharedSpaceNinjaSystem.cs @@ -63,7 +63,7 @@ public void AssignGloves(Entity ent, EntityUid? gloves) /// public void BindKatana(Entity ent, EntityUid katana) { - if (!NinjaQuery.Resolve(ent, ref ent.Comp) || ent.Comp.Katana != null) + if (!NinjaQuery.Resolve(ent, ref ent.Comp, false) || ent.Comp.Katana != null) return; ent.Comp.Katana = katana; diff --git a/Content.Shared/Nutrition/Components/ExamineableHungerComponent.cs b/Content.Shared/Nutrition/Components/ExamineableHungerComponent.cs new file mode 100644 index 00000000000..00aba82e583 --- /dev/null +++ b/Content.Shared/Nutrition/Components/ExamineableHungerComponent.cs @@ -0,0 +1,31 @@ +using Content.Shared.Nutrition.EntitySystems; +using Robust.Shared.GameStates; + +namespace Content.Shared.Nutrition.Components; + +/// +/// Adds text to the entity's description box based on its current hunger threshold. +/// +[RegisterComponent, NetworkedComponent] +[Access(typeof(ExamineableHungerSystem))] +public sealed partial class ExamineableHungerComponent : Component +{ + /// + /// Dictionary of hunger thresholds to LocIds of the messages to display. + /// + [DataField] + public Dictionary Descriptions = new() + { + { HungerThreshold.Overfed, "examineable-hunger-component-examine-overfed"}, + { HungerThreshold.Okay, "examineable-hunger-component-examine-okay"}, + { HungerThreshold.Peckish, "examineable-hunger-component-examine-peckish"}, + { HungerThreshold.Starving, "examineable-hunger-component-examine-starving"}, + { HungerThreshold.Dead, "examineable-hunger-component-examine-starving"} + }; + + /// + /// LocId of a fallback message to display if the entity has no + /// or does not have a value in for the current threshold. + /// + public LocId NoHungerDescription = "examineable-hunger-component-examine-none"; +} diff --git a/Content.Shared/Nutrition/EntitySystems/ExamineableHungerSystem.cs b/Content.Shared/Nutrition/EntitySystems/ExamineableHungerSystem.cs new file mode 100644 index 00000000000..e0ac767bcf5 --- /dev/null +++ b/Content.Shared/Nutrition/EntitySystems/ExamineableHungerSystem.cs @@ -0,0 +1,41 @@ +using Content.Shared.Examine; +using Content.Shared.IdentityManagement; +using Content.Shared.Nutrition.Components; + +namespace Content.Shared.Nutrition.EntitySystems; + +/// +public sealed class ExamineableHungerSystem : EntitySystem +{ + [Dependency] private readonly HungerSystem _hunger = default!; + private EntityQuery _hungerQuery; + + public override void Initialize() + { + base.Initialize(); + + _hungerQuery = GetEntityQuery(); + + SubscribeLocalEvent(OnExamine); + } + + /// + /// Defines the text provided on examine. + /// Changes depending on the amount of hunger the target has. + /// + private void OnExamine(Entity entity, ref ExaminedEvent args) + { + var identity = Identity.Entity(entity, EntityManager); + + if (!_hungerQuery.TryComp(entity, out var hungerComp) + || !entity.Comp.Descriptions.TryGetValue(_hunger.GetHungerThreshold(hungerComp), out var locId)) + { + // Use a fallback message if the entity has no HungerComponent + // or is missing a description for the current threshold + locId = entity.Comp.NoHungerDescription; + } + + var msg = Loc.GetString(locId, ("entity", identity)); + args.PushMarkup(msg); + } +} diff --git a/Content.Shared/Parallax/Biomes/Layers/BiomeTileLayer.cs b/Content.Shared/Parallax/Biomes/Layers/BiomeTileLayer.cs index 0ac9f1894c7..114b6b20b92 100644 --- a/Content.Shared/Parallax/Biomes/Layers/BiomeTileLayer.cs +++ b/Content.Shared/Parallax/Biomes/Layers/BiomeTileLayer.cs @@ -1,28 +1,36 @@ using Content.Shared.Maps; using Robust.Shared.Noise; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Shared.Parallax.Biomes.Layers; [Serializable, NetSerializable] public sealed partial class BiomeTileLayer : IBiomeLayer { - [DataField("noise")] public FastNoiseLite Noise { get; private set; } = new(0); + [DataField] public FastNoiseLite Noise { get; private set; } = new(0); /// - [DataField("threshold")] + [DataField] public float Threshold { get; private set; } = 0.5f; /// - [DataField("invert")] public bool Invert { get; private set; } = false; + [DataField] public bool Invert { get; private set; } = false; /// /// Which tile variants to use for this layer. Uses all of the tile's variants if none specified /// - [DataField("variants")] + [DataField] public List? Variants = null; - [DataField("tile", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] - public string Tile = string.Empty; + [DataField(required: true)] + public ProtoId Tile = string.Empty; + + // TODO: Need some good engine solution to this, see FlagSerializer for what needs changing. + /// + /// Flags to set on the tile when placed. + /// + [DataField] + public byte Flags = 0; } diff --git a/Content.Shared/Parallax/Biomes/SharedBiomeSystem.cs b/Content.Shared/Parallax/Biomes/SharedBiomeSystem.cs index 250b0f70a54..32a7823273f 100644 --- a/Content.Shared/Parallax/Biomes/SharedBiomeSystem.cs +++ b/Content.Shared/Parallax/Biomes/SharedBiomeSystem.cs @@ -129,7 +129,7 @@ public bool TryGetTile(Vector2i indices, List layers, int seed, Map if (layer is not BiomeTileLayer tileLayer) continue; - if (TryGetTile(indices, noiseCopy, tileLayer.Invert, tileLayer.Threshold, ProtoManager.Index(tileLayer.Tile), tileLayer.Variants, out tile)) + if (TryGetTile(indices, noiseCopy, tileLayer.Invert, tileLayer.Threshold, ProtoManager.Index(tileLayer.Tile), tileLayer.Flags, tileLayer.Variants, out tile)) { return true; } @@ -142,7 +142,7 @@ public bool TryGetTile(Vector2i indices, List layers, int seed, Map /// /// Gets the underlying biome tile, ignoring any existing tile that may be there. /// - private bool TryGetTile(Vector2i indices, FastNoiseLite noise, bool invert, float threshold, ContentTileDefinition tileDef, List? variants, [NotNullWhen(true)] out Tile? tile) + private bool TryGetTile(Vector2i indices, FastNoiseLite noise, bool invert, float threshold, ContentTileDefinition tileDef, byte tileFlags, List? variants, [NotNullWhen(true)] out Tile? tile) { var found = noise.GetNoise(indices.X, indices.Y); found = invert ? found * -1 : found; @@ -163,7 +163,7 @@ private bool TryGetTile(Vector2i indices, FastNoiseLite noise, bool invert, floa variant = _tile.PickVariant(tileDef, (int) variantValue); } - tile = new Tile(tileDef.TileId, 0, variant); + tile = new Tile(tileDef.TileId, flags: tileFlags, variant); return true; } diff --git a/Content.Shared/Polymorph/PolymorphEvents.cs b/Content.Shared/Polymorph/PolymorphEvents.cs new file mode 100644 index 00000000000..f2a478c34f5 --- /dev/null +++ b/Content.Shared/Polymorph/PolymorphEvents.cs @@ -0,0 +1,10 @@ +namespace Content.Shared.Polymorph; + +/// +/// Raised locally on an entity when it polymorphs into another entity +/// +/// EntityUid of the entity before the polymorph +/// EntityUid of the entity after the polymorph +/// Whether this polymorph event was a revert back to the original entity +[ByRefEvent] +public record struct PolymorphedEvent(EntityUid OldEntity, EntityUid NewEntity, bool IsRevert); diff --git a/Content.Shared/Popups/SharedPopupSystem.cs b/Content.Shared/Popups/SharedPopupSystem.cs index 38d2030cd5a..1ce8efcdf13 100644 --- a/Content.Shared/Popups/SharedPopupSystem.cs +++ b/Content.Shared/Popups/SharedPopupSystem.cs @@ -58,6 +58,13 @@ public abstract class SharedPopupSystem : EntitySystem /// public abstract void PopupCoordinates(string? message, EntityCoordinates coordinates, ICommonSession recipient, PopupType type = PopupType.Small); + /// + /// Variant of for use with prediction. The local client will + /// the popup to the recipient, and the server will show it to every other player in PVS range. If recipient is null, the local + // client will do nothing and the server will show the message to every player in PVS range. + /// + public abstract void PopupPredictedCoordinates(string? message, EntityCoordinates coordinates, EntityUid? recipient, PopupType type = PopupType.Small); + /// /// Shows a popup above an entity for every player in pvs range. /// diff --git a/Content.Shared/Preferences/HumanoidCharacterProfile.cs b/Content.Shared/Preferences/HumanoidCharacterProfile.cs index 39eac45ffee..68a9507625c 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -32,6 +32,7 @@ public sealed partial class HumanoidCharacterProfile : ICharacterProfile private static readonly Regex ICNameCaseRegex = new(@"^(?\w)|\b(?\w)(?=\w*$)"); public const int MaxNameLength = 96; // ну тип ADT + public const int MaxLoadoutNameLength = 32; public const int MaxDescLength = 512; /// diff --git a/Content.Shared/Preferences/Loadouts/RoleLoadout.cs b/Content.Shared/Preferences/Loadouts/RoleLoadout.cs index 6ba9f9018f2..47f2d627843 100644 --- a/Content.Shared/Preferences/Loadouts/RoleLoadout.cs +++ b/Content.Shared/Preferences/Loadouts/RoleLoadout.cs @@ -22,6 +22,11 @@ public sealed partial class RoleLoadout : IEquatable [DataField] public Dictionary, List> SelectedLoadouts = new(); + /// + /// Loadout specific name. + /// + public string? EntityName; + /* * Loadout-specific data used for validation. */ @@ -42,6 +47,8 @@ public RoleLoadout Clone() weh.SelectedLoadouts.Add(selected.Key, new List(selected.Value)); } + weh.EntityName = EntityName; + return weh; } @@ -55,10 +62,34 @@ public void EnsureValid(HumanoidCharacterProfile profile, ICommonSession session if (!protoManager.TryIndex(Role, out var roleProto)) { + EntityName = null; SelectedLoadouts.Clear(); return; } + // Remove name not allowed. + if (!roleProto.CanCustomizeName) + { + EntityName = null; + } + + // Validate name length + // TODO: Probably allow regex to be supplied? + if (EntityName != null) + { + var name = EntityName.Trim(); + + if (name.Length > HumanoidCharacterProfile.MaxNameLength) + { + EntityName = name[..HumanoidCharacterProfile.MaxNameLength]; + } + + if (name.Length == 0) + { + EntityName = null; + } + } + // In some instances we might not have picked up a new group for existing data. foreach (var groupProto in roleProto.Groups) { @@ -322,7 +353,8 @@ public bool Equals(RoleLoadout? other) if (!Role.Equals(other.Role) || SelectedLoadouts.Count != other.SelectedLoadouts.Count || - Points != other.Points) + Points != other.Points || + EntityName != other.EntityName) { return false; } diff --git a/Content.Shared/Preferences/Loadouts/RoleLoadoutPrototype.cs b/Content.Shared/Preferences/Loadouts/RoleLoadoutPrototype.cs index 92b2d3ef0e0..3521ad0095f 100644 --- a/Content.Shared/Preferences/Loadouts/RoleLoadoutPrototype.cs +++ b/Content.Shared/Preferences/Loadouts/RoleLoadoutPrototype.cs @@ -16,6 +16,12 @@ public sealed partial class RoleLoadoutPrototype : IPrototype [IdDataField] public string ID { get; } = string.Empty; + /// + /// Can the user edit their entity name for this role loadout? + /// + [DataField] + public bool CanCustomizeName; + /// /// Should we use a random name for this loadout? /// diff --git a/Content.Shared/Procedural/DungeonRoomPrototype.cs b/Content.Shared/Procedural/DungeonRoomPrototype.cs index 74fa4b36e3c..418e40f7be2 100644 --- a/Content.Shared/Procedural/DungeonRoomPrototype.cs +++ b/Content.Shared/Procedural/DungeonRoomPrototype.cs @@ -1,6 +1,6 @@ +using Content.Shared.Maps; using Content.Shared.Tag; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; using Robust.Shared.Utility; namespace Content.Shared.Procedural; @@ -10,18 +10,28 @@ public sealed partial class DungeonRoomPrototype : IPrototype { [IdDataField] public string ID { get; } = string.Empty; - [ViewVariables(VVAccess.ReadWrite), DataField("tags", customTypeSerializer:typeof(PrototypeIdListSerializer))] - public List Tags = new(); + [ViewVariables(VVAccess.ReadWrite), DataField] + public List> Tags = new(); - [DataField("size", required: true)] public Vector2i Size; + [DataField(required: true)] + public Vector2i Size; /// /// Path to the file to use for the room. /// - [DataField("atlas", required: true)] public ResPath AtlasPath; + [DataField("atlas", required: true)] + public ResPath AtlasPath; /// /// Tile offset into the atlas to use for the room. /// - [DataField("offset", required: true)] public Vector2i Offset; + [DataField(required: true)] + public Vector2i Offset; + + /// + /// These tiles will be ignored when copying from the atlas into the actual game, + /// allowing you to make rooms of irregular shapes that blend seamlessly into their surroundings + /// + [DataField] + public ProtoId? IgnoreTile; } diff --git a/Content.Shared/Projectiles/EmbeddedContainerComponent.cs b/Content.Shared/Projectiles/EmbeddedContainerComponent.cs new file mode 100644 index 00000000000..19dd93bfbd7 --- /dev/null +++ b/Content.Shared/Projectiles/EmbeddedContainerComponent.cs @@ -0,0 +1,13 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Projectiles; + +/// +/// Stores a list of all stuck entities to release when this entity is deleted. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class EmbeddedContainerComponent : Component +{ + [DataField, AutoNetworkedField] + public HashSet EmbeddedObjects = new(); +} diff --git a/Content.Shared/Projectiles/SharedProjectileSystem.cs b/Content.Shared/Projectiles/SharedProjectileSystem.cs index f4874e79adf..aeaafe20500 100644 --- a/Content.Shared/Projectiles/SharedProjectileSystem.cs +++ b/Content.Shared/Projectiles/SharedProjectileSystem.cs @@ -15,6 +15,7 @@ using Robust.Shared.Physics.Events; using Robust.Shared.Physics.Systems; using Robust.Shared.Serialization; +using Robust.Shared.Utility; namespace Content.Shared.Projectiles; @@ -22,7 +23,7 @@ public abstract partial class SharedProjectileSystem : EntitySystem { public const string ProjectileFixture = "projectile"; - [Dependency] private readonly INetManager _netManager = default!; + [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; [Dependency] private readonly SharedHandsSystem _hands = default!; @@ -38,62 +39,63 @@ public override void Initialize() SubscribeLocalEvent(OnEmbedThrowDoHit); SubscribeLocalEvent(OnEmbedActivate); SubscribeLocalEvent(OnEmbedRemove); + + SubscribeLocalEvent(OnEmbeddableTermination); } - private void OnEmbedActivate(EntityUid uid, EmbeddableProjectileComponent component, ActivateInWorldEvent args) + private void OnEmbedActivate(Entity embeddable, ref ActivateInWorldEvent args) { - // Nuh uh - if (component.RemovalTime == null) + // Unremovable embeddables moment + if (embeddable.Comp.RemovalTime == null) return; - if (args.Handled || !args.Complex || !TryComp(uid, out var physics) || physics.BodyType != BodyType.Static) + if (args.Handled || !args.Complex || !TryComp(embeddable, out var physics) || + physics.BodyType != BodyType.Static) return; args.Handled = true; - _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, component.RemovalTime.Value, - new RemoveEmbeddedProjectileEvent(), eventTarget: uid, target: uid)); + _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, + args.User, + embeddable.Comp.RemovalTime.Value, + new RemoveEmbeddedProjectileEvent(), + eventTarget: embeddable, + target: embeddable)); } - private void OnEmbedRemove(EntityUid uid, EmbeddableProjectileComponent component, RemoveEmbeddedProjectileEvent args) + private void OnEmbedRemove(Entity embeddable, ref RemoveEmbeddedProjectileEvent args) { // Whacky prediction issues. - if (args.Cancelled || _netManager.IsClient) + if (args.Cancelled || _net.IsClient) return; - if (component.DeleteOnRemove) - { - QueueDel(uid); - return; - } - - UnEmbed(uid, component, args.User); + EmbedDetach(embeddable, embeddable.Comp, args.User); // try place it in the user's hand - _hands.TryPickupAnyHand(args.User, uid); + _hands.TryPickupAnyHand(args.User, embeddable); } - private void OnEmbedThrowDoHit(EntityUid uid, EmbeddableProjectileComponent component, ThrowDoHitEvent args) + private void OnEmbedThrowDoHit(Entity embeddable, ref ThrowDoHitEvent args) { - if (!component.EmbedOnThrow) + if (!embeddable.Comp.EmbedOnThrow) return; - Embed(uid, args.Target, null, component); + EmbedAttach(embeddable, args.Target, null, embeddable.Comp); } - private void OnEmbedProjectileHit(EntityUid uid, EmbeddableProjectileComponent component, ref ProjectileHitEvent args) + private void OnEmbedProjectileHit(Entity embeddable, ref ProjectileHitEvent args) { - Embed(uid, args.Target, args.Shooter, component); + EmbedAttach(embeddable, args.Target, args.Shooter, embeddable.Comp); // Raise a specific event for projectiles. - if (TryComp(uid, out ProjectileComponent? projectile)) + if (TryComp(embeddable, out ProjectileComponent? projectile)) { var ev = new ProjectileEmbedEvent(projectile.Shooter, projectile.Weapon, args.Target); // ADT fix - RaiseLocalEvent(uid, ref ev); + RaiseLocalEvent(embeddable, ref ev); } } - private void Embed(EntityUid uid, EntityUid target, EntityUid? user, EmbeddableProjectileComponent component) + private void EmbedAttach(EntityUid uid, EntityUid target, EntityUid? user, EmbeddableProjectileComponent component) { TryComp(uid, out var physics); _physics.SetLinearVelocity(uid, Vector2.Zero, body: physics); @@ -106,8 +108,7 @@ private void Embed(EntityUid uid, EntityUid target, EntityUid? user, EmbeddableP var rotation = xform.LocalRotation; if (TryComp(uid, out var throwingAngleComp)) rotation += throwingAngleComp.Angle; - _transform.SetLocalPosition(uid, xform.LocalPosition + rotation.RotateVec(component.Offset), - xform); + _transform.SetLocalPosition(uid, xform.LocalPosition + rotation.RotateVec(component.Offset), xform); } _audio.PlayPredicted(component.Sound, uid, null); @@ -115,13 +116,32 @@ private void Embed(EntityUid uid, EntityUid target, EntityUid? user, EmbeddableP var ev = new EmbedEvent(user, target); RaiseLocalEvent(uid, ref ev); Dirty(uid, component); + + EnsureComp(target, out var embeddedContainer); + + //Assert that this entity not embed + DebugTools.AssertEqual(embeddedContainer.EmbeddedObjects.Contains(uid), false); + + embeddedContainer.EmbeddedObjects.Add(uid); } - public void UnEmbed(EntityUid uid, EmbeddableProjectileComponent? component, EntityUid? user = null) + public void EmbedDetach(EntityUid uid, EmbeddableProjectileComponent? component, EntityUid? user = null) { if (!Resolve(uid, ref component)) return; + if (component.DeleteOnRemove) + { + QueueDel(uid); + return; + } + + if (component.EmbeddedIntoUid is not null) + { + if (TryComp(component.EmbeddedIntoUid.Value, out var embeddedContainer)) + embeddedContainer.EmbeddedObjects.Remove(uid); + } + var xform = Transform(uid); TryComp(uid, out var physics); _physics.SetBodyType(uid, BodyType.Dynamic, body: physics, xform: xform); @@ -149,6 +169,22 @@ public void UnEmbed(EntityUid uid, EmbeddableProjectileComponent? component, Ent _physics.WakeBody(uid, body: physics); } + private void OnEmbeddableTermination(Entity container, ref EntityTerminatingEvent args) + { + DetachAllEmbedded(container); + } + + public void DetachAllEmbedded(Entity container) + { + foreach (var embedded in container.Comp.EmbeddedObjects) + { + if (!TryComp(embedded, out var embeddedComp)) + continue; + + EmbedDetach(embedded, embeddedComp); + } + } + private void PreventCollision(EntityUid uid, ProjectileComponent component, ref PreventCollideEvent args) { if (component.IgnoreShooter && (args.OtherEntity == component.Shooter || args.OtherEntity == component.Weapon)) diff --git a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs index 2fabe5948e2..5e10302e1e3 100644 --- a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs +++ b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs @@ -245,7 +245,7 @@ public void AddChannelsExamine(HashSet channels, string? defaultChannel, ("color", proto.Color), ("key", key), ("id", proto.LocalizedName), - ("freq", proto.Frequency))); + ("freq", proto.Frequency / 10f))); } if (defaultChannel != null && _protoManager.TryIndex(defaultChannel, out proto)) diff --git a/Content.Shared/Research/Components/TechnologyDatabaseComponent.cs b/Content.Shared/Research/Components/TechnologyDatabaseComponent.cs index fc317454c9a..4f976869f76 100644 --- a/Content.Shared/Research/Components/TechnologyDatabaseComponent.cs +++ b/Content.Shared/Research/Components/TechnologyDatabaseComponent.cs @@ -55,3 +55,10 @@ public sealed partial class TechnologyDatabaseComponent : Component /// [ByRefEvent] public readonly record struct TechnologyDatabaseModifiedEvent; + +/// +/// Event raised on a database after being synchronized +/// with the values from another database. +/// +[ByRefEvent] +public readonly record struct TechnologyDatabaseSynchronizedEvent; diff --git a/Content.Shared/Research/Systems/SharedResearchSystem.cs b/Content.Shared/Research/Systems/SharedResearchSystem.cs index 06e12e0798a..bca1ae4888f 100644 --- a/Content.Shared/Research/Systems/SharedResearchSystem.cs +++ b/Content.Shared/Research/Systems/SharedResearchSystem.cs @@ -227,6 +227,9 @@ public void TrySetMainDiscipline(TechnologyPrototype prototype, EntityUid uid, T return; component.MainDiscipline = prototype.Discipline; Dirty(uid, component); + + var ev = new TechnologyDatabaseModifiedEvent(); + RaiseLocalEvent(uid, ref ev); } /// diff --git a/Content.Shared/SharedLightCycleSystem.cs b/Content.Shared/SharedLightCycleSystem.cs new file mode 100644 index 00000000000..1ba947f78ac --- /dev/null +++ b/Content.Shared/SharedLightCycleSystem.cs @@ -0,0 +1,116 @@ +using Content.Shared.Light.Components; +using Robust.Shared.Map.Components; + +namespace Content.Shared; + +public abstract class SharedLightCycleSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnCycleMapInit); + SubscribeLocalEvent(OnCycleShutdown); + } + + protected virtual void OnCycleMapInit(Entity ent, ref MapInitEvent args) + { + if (TryComp(ent.Owner, out MapLightComponent? mapLight)) + { + ent.Comp.OriginalColor = mapLight.AmbientLightColor; + Dirty(ent); + } + } + + private void OnCycleShutdown(Entity ent, ref ComponentShutdown args) + { + if (TryComp(ent.Owner, out MapLightComponent? mapLight)) + { + mapLight.AmbientLightColor = ent.Comp.OriginalColor; + Dirty(ent.Owner, mapLight); + } + } + + public static Color GetColor(Entity cycle, Color color, float time) + { + if (cycle.Comp.Enabled) + { + var lightLevel = CalculateLightLevel(cycle.Comp, time); + var colorLevel = CalculateColorLevel(cycle.Comp, time); + return new Color( + (byte)Math.Min(255, color.RByte * colorLevel.R * lightLevel), + (byte)Math.Min(255, color.GByte * colorLevel.G * lightLevel), + (byte)Math.Min(255, color.BByte * colorLevel.B * lightLevel) + ); + } + + return color; + } + + /// + /// Calculates light intensity as a function of time. + /// + public static double CalculateLightLevel(LightCycleComponent comp, float time) + { + var waveLength = MathF.Max(1, (float) comp.Duration.TotalSeconds); + var crest = MathF.Max(0f, comp.MaxLightLevel); + var shift = MathF.Max(0f, comp.MinLightLevel); + return Math.Min(comp.ClipLight, CalculateCurve(time, waveLength, crest, shift, 6)); + } + + /// + /// It is important to note that each color must have a different exponent, to modify how early or late one color should stand out in relation to another. + /// This "simulates" what the atmosphere does and is what generates the effect of dawn and dusk. + /// The blue component must be a cosine function with half period, so that its minimum is at dawn and dusk, generating the "warm" color corresponding to these periods. + /// As you can see in the values, the maximums of the function serve more to define the curve behavior, + /// they must be "clipped" so as not to distort the original color of the lighting. In practice, the maximum values, in fact, are the clip thresholds. + /// + public static Color CalculateColorLevel(LightCycleComponent comp, float time) + { + var waveLength = MathF.Max(1f, (float) comp.Duration.TotalSeconds); + + var red = MathF.Min(comp.ClipLevel.R, + CalculateCurve(time, + waveLength, + MathF.Max(0f, comp.MaxLevel.R), + MathF.Max(0f, comp.MinLevel.R), + 4f)); + + var green = MathF.Min(comp.ClipLevel.G, + CalculateCurve(time, + waveLength, + MathF.Max(0f, comp.MaxLevel.G), + MathF.Max(0f, comp.MinLevel.G), + 10f)); + + var blue = MathF.Min(comp.ClipLevel.B, + CalculateCurve(time, + waveLength / 2f, + MathF.Max(0f, comp.MaxLevel.B), + MathF.Max(0f, comp.MinLevel.B), + 2, + waveLength / 4f)); + + return new Color(red, green, blue); + } + + /// + /// Generates a sinusoidal curve as a function of x (time). The other parameters serve to adjust the behavior of the curve. + /// + /// It corresponds to the independent variable of the function, which in the context of this algorithm is the current time. + /// It's the wavelength of the function, it can be said to be the total duration of the light cycle. + /// It's the maximum point of the function, where it will have its greatest value. + /// It's the vertical displacement of the function, in practice it corresponds to the minimum value of the function. + /// It is the exponent of the sine, serves to "flatten" the function close to its minimum points and make it "steeper" close to its maximum. + /// It changes the phase of the wave, like a "horizontal shift". It is important to transform the sinusoidal function into cosine, when necessary. + /// The result of the function. + public static float CalculateCurve(float x, + float waveLength, + float crest, + float shift, + float exponent, + float phase = 0) + { + var sen = MathF.Pow(MathF.Sin((MathF.PI * (phase + x)) / waveLength), exponent); + return (crest - shift) * sen + shift; + } +} diff --git a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Held.cs b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Held.cs index a82f9d49da1..2534fd3d5cd 100644 --- a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Held.cs +++ b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Held.cs @@ -56,7 +56,7 @@ private void OnCoreJump(Entity ent, ref JumpToCoreEvent /// /// Tries to get the entity held in the AI core using StationAiCore. /// - private bool TryGetHeld(Entity entity, out EntityUid held) + public bool TryGetHeld(Entity entity, out EntityUid held) { held = EntityUid.Invalid; @@ -74,23 +74,19 @@ private bool TryGetHeld(Entity entity, out EntityUid he /// /// Tries to get the entity held in the AI using StationAiHolder. /// - private bool TryGetHeldFromHolder(Entity entity, out EntityUid held) + public bool TryGetHeld(Entity entity, out EntityUid held) { - held = EntityUid.Invalid; - - if (!Resolve(entity.Owner, ref entity.Comp)) - return false; - - if (!_containers.TryGetContainer(entity.Owner, StationAiHolderComponent.Container, out var container) || - container.ContainedEntities.Count == 0) - return false; + TryComp(entity.Owner, out var stationAiCore); - held = container.ContainedEntities[0]; - return true; + return TryGetHeld((entity.Owner, stationAiCore), out held); } - private bool TryGetCore(EntityUid ent, out Entity core) + public bool TryGetCore(EntityUid entity, out Entity core) { + var xform = Transform(entity); + var meta = MetaData(entity); + var ent = new Entity(entity, xform, meta); + if (!_containers.TryGetContainingContainer(ent, out var container) || container.ID != StationAiCoreComponent.Container || !TryComp(container.Owner, out StationAiCoreComponent? coreComp) || diff --git a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs index 4937e6e84c2..4cf36f560ee 100644 --- a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs +++ b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs @@ -20,7 +20,6 @@ using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; -using Robust.Shared.GameObjects; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Network; @@ -274,7 +273,7 @@ private void OnHolderInteract(Entity ent, ref AfterInt return; } - if (TryGetHeldFromHolder((args.Target.Value, targetHolder), out var held) && _timing.CurTime > intelliComp.NextWarningAllowed) + if (TryGetHeld((args.Target.Value, targetHolder), out var held) && _timing.CurTime > intelliComp.NextWarningAllowed) { intelliComp.NextWarningAllowed = _timing.CurTime + intelliComp.WarningDelay; AnnounceIntellicardUsage(held, intelliComp.WarningSound); @@ -349,11 +348,13 @@ private void OnAiMapInit(Entity ent, ref MapInitEvent ar AttachEye(ent); } - public void SwitchRemoteEntityMode(Entity ent, bool isRemote) + public void SwitchRemoteEntityMode(Entity entity, bool isRemote) { - if (isRemote == ent.Comp.Remote) + if (entity.Comp?.Remote == null || entity.Comp.Remote == isRemote) return; + var ent = new Entity(entity.Owner, entity.Comp); + ent.Comp.Remote = isRemote; EntityCoordinates? coords = ent.Comp.RemoteEntity != null ? Transform(ent.Comp.RemoteEntity.Value).Coordinates : null; @@ -530,36 +531,6 @@ private bool ValidateAi(Entity entity) return _blocker.CanComplexInteract(entity.Owner); } - - public bool TryGetStationAiCore(Entity ent, [NotNullWhen(true)] out Entity? parentEnt) - { - parentEnt = null; - var parent = Transform(ent).ParentUid; - - if (!parent.IsValid()) - return false; - - if (!TryComp(parent, out var stationAiCore)) - return false; - - parentEnt = new Entity(parent, stationAiCore); - - return true; - } - - public bool TryGetInsertedAI(Entity ent, [NotNullWhen(true)] out Entity? insertedAi) - { - insertedAi = null; - var insertedEnt = GetInsertedAI(ent); - - if (TryComp(insertedEnt, out var stationAiHeld)) - { - insertedAi = (insertedEnt.Value, stationAiHeld); - return true; - } - - return false; - } } public sealed partial class JumpToCoreEvent : InstantActionEvent diff --git a/Content.Shared/Slippery/SlipperyComponent.cs b/Content.Shared/Slippery/SlipperyComponent.cs index 154ca6c51a4..a6bf0fce91d 100644 --- a/Content.Shared/Slippery/SlipperyComponent.cs +++ b/Content.Shared/Slippery/SlipperyComponent.cs @@ -13,6 +13,8 @@ namespace Content.Shared.Slippery [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class SlipperyComponent : Component { + public const float DefaultParalyzeTime = 1.5f; + public const float DefaultLaunchForwardsMultiplier = 1.5f; /// /// Path to the sound to be played when a mob slips. /// @@ -25,14 +27,14 @@ public sealed partial class SlipperyComponent : Component /// [DataField, AutoNetworkedField] [Access(Other = AccessPermissions.ReadWrite)] - public float ParalyzeTime = 1.5f; + public float ParalyzeTime = DefaultParalyzeTime; /// /// The entity's speed will be multiplied by this to slip it forwards. /// [DataField, AutoNetworkedField] [Access(Other = AccessPermissions.ReadWrite)] - public float LaunchForwardsMultiplier = 1.5f; + public float LaunchForwardsMultiplier = DefaultLaunchForwardsMultiplier; /// /// If this is true, any slipping entity loses its friction until diff --git a/Content.Shared/Station/SharedStationSpawningSystem.cs b/Content.Shared/Station/SharedStationSpawningSystem.cs index 51495ac8bc9..b90229f50f3 100644 --- a/Content.Shared/Station/SharedStationSpawningSystem.cs +++ b/Content.Shared/Station/SharedStationSpawningSystem.cs @@ -72,6 +72,11 @@ public void EquipRoleName(EntityUid entity, RoleLoadout loadout, RoleLoadoutProt { string? name = null; + if (roleProto.CanCustomizeName) + { + name = loadout.EntityName; + } + if (string.IsNullOrEmpty(name) && PrototypeManager.TryIndex(roleProto.NameDataset, out var nameData)) { name = Loc.GetString(_random.Pick(nameData.Values)); diff --git a/Content.Shared/StepTrigger/Components/StepTriggerComponent.cs b/Content.Shared/StepTrigger/Components/StepTriggerComponent.cs index b8483d021a4..87d6d37a7f3 100644 --- a/Content.Shared/StepTrigger/Components/StepTriggerComponent.cs +++ b/Content.Shared/StepTrigger/Components/StepTriggerComponent.cs @@ -8,6 +8,7 @@ namespace Content.Shared.StepTrigger.Components; [Access(typeof(StepTriggerSystem))] public sealed partial class StepTriggerComponent : Component { + public const float DefaultRequiredTriggeredSpeed = 3.5f; /// /// List of entities that are currently colliding with the entity. /// @@ -37,7 +38,7 @@ public sealed partial class StepTriggerComponent : Component /// Entities will only be triggered if their speed exceeds this limit. /// [DataField, AutoNetworkedField] - public float RequiredTriggeredSpeed = 3.5f; + public float RequiredTriggeredSpeed = DefaultRequiredTriggeredSpeed; /// /// If any entities occupy the blacklist on the same tile then steptrigger won't work. diff --git a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs index 829f574ad1d..5b0f331234d 100644 --- a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs @@ -9,7 +9,6 @@ using Content.Shared.Item; using Content.Shared.Lock; using Content.Shared.Movement.Events; -using Content.Shared.Placeable; using Content.Shared.Popups; using Content.Shared.Storage.Components; using Content.Shared.Tools.Systems; @@ -34,7 +33,6 @@ public abstract class SharedEntityStorageSystem : EntitySystem [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; - [Dependency] private readonly PlaceableSurfaceSystem _placeableSurface = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedContainerSystem _container = default!; diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index f2a170fbe70..7eeb3622a36 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -327,11 +327,33 @@ private void AddUiVerb(EntityUid uid, StorageComponent component, GetVerbsEvent< args.Verbs.Add(verb); } + public void OpenStorageUI(EntityUid uid, EntityUid actor, StorageComponent? storageComp = null, bool silent = true) + { + // Handle recursively opening nested storages. + if (ContainerSystem.TryGetContainingContainer(uid, out var container) && + UI.IsUiOpen(container.Owner, StorageComponent.StorageUiKey.Key, actor)) + { + _nestedCheck = true; + HideStorageWindow(container.Owner, actor); + OpenStorageUIInternal(uid, actor, storageComp, silent: true); + _nestedCheck = false; + } + else + { + // If you need something more sophisticated for multi-UI you'll need to code some smarter + // interactions. + if (_openStorageLimit == 1) + UI.CloseUserUis(actor); + + OpenStorageUIInternal(uid, actor, storageComp, silent: silent); + } + } + /// /// Opens the storage UI for an entity /// /// The entity to open the UI for - public void OpenStorageUI(EntityUid uid, EntityUid entity, StorageComponent? storageComp = null, bool silent = true) + private void OpenStorageUIInternal(EntityUid uid, EntityUid entity, StorageComponent? storageComp = null, bool silent = true) { if (!Resolve(uid, ref storageComp, false)) return; @@ -416,24 +438,7 @@ private void OnActivate(EntityUid uid, StorageComponent storageComp, ActivateInW } else { - // Handle recursively opening nested storages. - if (ContainerSystem.TryGetContainingContainer((args.Target, null, null), out var container) && - UI.IsUiOpen(container.Owner, StorageComponent.StorageUiKey.Key, args.User)) - { - _nestedCheck = true; - HideStorageWindow(container.Owner, args.User); - OpenStorageUI(uid, args.User, storageComp, silent: true); - _nestedCheck = false; - } - else - { - // If you need something more sophisticated for multi-UI you'll need to code some smarter - // interactions. - if (_openStorageLimit == 1) - UI.CloseUserUis(args.User); - - OpenStorageUI(uid, args.User, storageComp, silent: false); - } + OpenStorageUI(uid, args.User, storageComp); } args.Handled = true; diff --git a/Content.Shared/Stunnable/SharedStunSystem.cs b/Content.Shared/Stunnable/SharedStunSystem.cs index 63163bdb21a..751687508f6 100644 --- a/Content.Shared/Stunnable/SharedStunSystem.cs +++ b/Content.Shared/Stunnable/SharedStunSystem.cs @@ -117,7 +117,7 @@ private void UpdateCanMove(EntityUid uid, StunnedComponent component, EntityEven private void OnStunOnContactStartup(Entity ent, ref ComponentStartup args) { if (TryComp(ent, out var body)) - _broadphase.RegenerateContacts(ent, body); + _broadphase.RegenerateContacts((ent, body)); } private void OnStunOnContactCollide(Entity ent, ref StartCollideEvent args) diff --git a/Content.Shared/Throwing/ThrownItemSystem.cs b/Content.Shared/Throwing/ThrownItemSystem.cs index 54dc5c3490e..3d81cc96e42 100644 --- a/Content.Shared/Throwing/ThrownItemSystem.cs +++ b/Content.Shared/Throwing/ThrownItemSystem.cs @@ -95,7 +95,7 @@ public void StopThrow(EntityUid uid, ThrownItemComponent thrownItemComponent) _physics.SetBodyStatus(uid, physics, BodyStatus.OnGround); if (physics.Awake) - _broadphase.RegenerateContacts(uid, physics); + _broadphase.RegenerateContacts((uid, physics)); } if (EntityManager.TryGetComponent(uid, out FixturesComponent? manager)) @@ -123,7 +123,7 @@ public void LandComponent(EntityUid uid, ThrownItemComponent thrownItem, Physics if (thrownItem.Thrower is not null) _adminLogger.Add(LogType.Landed, LogImpact.Low, $"{ToPrettyString(uid):entity} thrown by {ToPrettyString(thrownItem.Thrower.Value):thrower} landed."); - _broadphase.RegenerateContacts(uid, physics); + _broadphase.RegenerateContacts((uid, physics)); var landEvent = new LandEvent(thrownItem.Thrower, playSound); RaiseLocalEvent(uid, ref landEvent); } diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index cb532249b3d..f80da660c2f 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -217,7 +217,7 @@ public DamageSpecifier GetDamage(EntityUid uid, EntityUid user, MeleeWeaponCompo if (!Resolve(uid, ref component, false)) return new DamageSpecifier(); - var ev = new GetMeleeDamageEvent(uid, new(component.Damage), new(), user, component.ResistanceBypass); + var ev = new GetMeleeDamageEvent(uid, new(component.Damage * Damageable.UniversalMeleeDamageModifier), new(), user, component.ResistanceBypass); RaiseLocalEvent(uid, ref ev); return DamageSpecifier.ApplyModifierSets(ev.Damage, ev.Modifiers); @@ -250,7 +250,7 @@ public bool GetResistanceBypass(EntityUid uid, EntityUid user, MeleeWeaponCompon if (!Resolve(uid, ref component)) return false; - var ev = new GetMeleeDamageEvent(uid, new(component.Damage), new(), user, component.ResistanceBypass); + var ev = new GetMeleeDamageEvent(uid, new(component.Damage * Damageable.UniversalMeleeDamageModifier), new(), user, component.ResistanceBypass); RaiseLocalEvent(uid, ref ev); return ev.ResistanceBypass; diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Magazine.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Magazine.cs index 61a4820e5b3..2876851d2d8 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Magazine.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Magazine.cs @@ -38,6 +38,8 @@ private void OnMagazineExamine(EntityUid uid, MagazineAmmoProviderComponent comp private void OnMagazineUse(EntityUid uid, MagazineAmmoProviderComponent component, UseInHandEvent args) { + // not checking for args.Handled or marking as such because we only relay the event to the magazine entity + var magEnt = GetMagazineEntity(uid); if (magEnt == null) diff --git a/Content.Shared/Weather/SharedWeatherSystem.cs b/Content.Shared/Weather/SharedWeatherSystem.cs index 2f19002af0f..e27b590e81d 100644 --- a/Content.Shared/Weather/SharedWeatherSystem.cs +++ b/Content.Shared/Weather/SharedWeatherSystem.cs @@ -44,6 +44,9 @@ public bool CanWeatherAffect(EntityUid uid, MapGridComponent grid, TileRef tileR if (tileRef.Tile.IsEmpty) return true; + if ((tileRef.Tile.Flags & (byte) TileFlag.Roof) == (byte) TileFlag.Roof) + return false; + var tileDef = (ContentTileDefinition) _tileDefManager[tileRef.Tile.TypeId]; if (!tileDef.Weather) diff --git a/Content.Shared/Whistle/WhistleSystem.cs b/Content.Shared/Whistle/WhistleSystem.cs index 9db7ffa0bf0..bbedffd8ecc 100644 --- a/Content.Shared/Whistle/WhistleSystem.cs +++ b/Content.Shared/Whistle/WhistleSystem.cs @@ -27,11 +27,10 @@ private void ExclamateTarget(EntityUid target, WhistleComponent component) public void OnUseInHand(EntityUid uid, WhistleComponent component, UseInHandEvent args) { - if (!_timing.IsFirstTimePredicted) + if (args.Handled || !_timing.IsFirstTimePredicted) return; - TryMakeLoudWhistle(uid, args.User, component); - args.Handled = true; + args.Handled = TryMakeLoudWhistle(uid, args.User, component); } public bool TryMakeLoudWhistle(EntityUid uid, EntityUid owner, WhistleComponent? component = null) diff --git a/Resources/Audio/Effects/Footsteps/attributions.yml b/Resources/Audio/Effects/Footsteps/attributions.yml index 7a56beec38c..7af75169b22 100644 --- a/Resources/Audio/Effects/Footsteps/attributions.yml +++ b/Resources/Audio/Effects/Footsteps/attributions.yml @@ -12,7 +12,7 @@ license: "CC-BY-SA-4.0" copyright: "Made by JustInvoke freesound.org" source: "https://freesound.org/people/JustInvoke/sounds/446100/" - + - files: - jesterstep1.ogg - jesterstep2.ogg @@ -63,7 +63,7 @@ license: "CC-BY-SA-3.0" copyright: "Taken from https://github.com/tgstation/tgstation" source: "https://github.com/tgstation/tgstation/blob/34d5ab2e46e3fb4dd9d7475f587d33441df9651c/sound/effects" - + - files: - spurs1.ogg - spurs2.ogg @@ -78,3 +78,13 @@ license: "CC-BY-SA-4.0" copyright: "Taken from IENBA freesound.org and modified by https://github.com/MilenVolf. borgwalk2 clipped my metalgearsloth." source: "https://freesound.org/people/IENBA/sounds/697379/" + +- files: + - heelsclack1.ogg + - heelsclack2.ogg + - heelsclack3.ogg + - heelsclack4.ogg + - heelsclack5.ogg + license: "CC0-1.0" + copyright: "Taken from NachtmahrTV on freesound.org, clipped by Centronias" + source: "https://freesound.org/people/NachtmahrTV/sounds/571801/" diff --git a/Resources/Audio/Effects/Footsteps/heelsclack1.ogg b/Resources/Audio/Effects/Footsteps/heelsclack1.ogg new file mode 100644 index 00000000000..903f4c19ea3 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/heelsclack1.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/heelsclack2.ogg b/Resources/Audio/Effects/Footsteps/heelsclack2.ogg new file mode 100644 index 00000000000..c81c36100f5 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/heelsclack2.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/heelsclack3.ogg b/Resources/Audio/Effects/Footsteps/heelsclack3.ogg new file mode 100644 index 00000000000..0d3ff4a3203 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/heelsclack3.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/heelsclack4.ogg b/Resources/Audio/Effects/Footsteps/heelsclack4.ogg new file mode 100644 index 00000000000..2c709b00c50 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/heelsclack4.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/heelsclack5.ogg b/Resources/Audio/Effects/Footsteps/heelsclack5.ogg new file mode 100644 index 00000000000..6b9f0763fbb Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/heelsclack5.ogg differ diff --git a/Resources/Audio/Effects/Vehicle/ambulancesiren.ogg b/Resources/Audio/Effects/Vehicle/ambulancesiren.ogg new file mode 100644 index 00000000000..0f18ac69277 Binary files /dev/null and b/Resources/Audio/Effects/Vehicle/ambulancesiren.ogg differ diff --git a/Resources/Audio/Effects/Vehicle/attributions.yml b/Resources/Audio/Effects/Vehicle/attributions.yml index d6bd49a5819..fb38493d740 100644 --- a/Resources/Audio/Effects/Vehicle/attributions.yml +++ b/Resources/Audio/Effects/Vehicle/attributions.yml @@ -19,3 +19,8 @@ source: "https://freesound.org/people/13gkopeckak/sounds/378911/" license: "CC0-1.0" copyright: "13gkopeckak on freesound.org" + +- files: ["ambulancesiren.ogg"] + source: "https://freesound.org/people/Lalks/sounds/336894/" + license: "CC-BY-3.0" + copyright: "Lalks on freesound.org, small edit by Velken" diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 6b380572b09..61e80c6f45b 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -752,5 +752,51 @@ Entries: id: 93 time: '2025-02-06T05:10:21.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33426 +- author: nikthechampiongr + changes: + - message: Vote kicks now also ban the ip of the person that gets votekicked. + type: Tweak + id: 94 + time: '2025-02-13T22:03:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35131 +- author: ScarKy0 + changes: + - message: universal access config has additional accesses added + type: Add + id: 95 + time: '2025-02-16T21:51:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35229 +- author: Winkarst-cpu + changes: + - message: Votekick bans now distinguish themselves as votekicks in the "ban reason". + type: Tweak + id: 96 + time: '2025-02-17T20:39:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35258 +- author: SlamBamActionman + changes: + - message: Users with +VVEDIT perms can now use `changecvar playtest.[modifier] + [float]` to modify damage/healing scaling live. + type: Add + id: 97 + time: '2025-02-18T07:28:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35255 +- author: ScarKy0 + changes: + - message: Aghost's intrinsic comms console now uses a new color, announces globally + and has significantly lowered delays. Announce command and admin menu option + remain unchanged. + type: Tweak + id: 98 + time: '2025-02-18T09:04:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35248 +- author: Simyon + changes: + - message: Admins with the Server and Mapping AdminFlag can now change the CVars + "events.enabled" and "shuttle.auto_call_time" for parity in the "mapping" command. + type: Tweak + id: 99 + time: '2025-02-18T10:26:09.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35239 Name: Admin Order: 1 diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 4ef3720384e..a0ab3963a87 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,404 +1,4 @@ Entries: -- author: Vasilis - changes: - - message: Removed the age requirement for command jobs. - type: Tweak - id: 7427 - time: '2024-09-24T00:31:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32340 -- author: whatston3 - changes: - - message: Area insert items can pick up single item sets when clicking on the floor. - type: Fix - id: 7428 - time: '2024-09-24T14:23:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32153 -- author: LordEclipse - changes: - - message: The Antimov Law Board is now available in both the Traitor and Nuclear - Operative Uplinks, 14 and 24 TC respectively. - type: Add - id: 7429 - time: '2024-09-24T15:06:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31916 -- author: lzk228 - changes: - - message: Freezer electronics added to autolathe, with which you can craft locker - freezer or crate freezer. - type: Add - id: 7430 - time: '2024-09-24T15:19:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32277 -- author: MilonPL - changes: - - message: Paper will no longer stay on fire indefinitely. - type: Fix - id: 7431 - time: '2024-09-24T15:48:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32412 -- author: ArchRBX - changes: - - message: The AstroNav PDA cartridge has now been added, which turns your PDA into - a handheld GPS - type: Add - - message: The AstroNav cartridge has been added to the QM locker, and comes preinstalled - on salvage PDA's - type: Add - id: 7432 - time: '2024-09-24T17:02:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32194 -- author: PJB3005 - changes: - - message: Fixed some people's preferences taking ages to load, hopefully. - type: Fix - id: 7433 - time: '2024-09-24T20:43:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32434 -- author: Moomoobeef - changes: - - message: Most papers are no longer considered trash. - type: Tweak - id: 7434 - time: '2024-09-24T21:58:46.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32343 -- author: goet - changes: - - message: Vending machines can be hacked again. - type: Fix - id: 7435 - time: '2024-09-25T05:21:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32431 -- author: themias - changes: - - message: Agent ID card can now only copy access within interaction range. - type: Fix - id: 7436 - time: '2024-09-25T15:41:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32445 -- author: Myra - changes: - - message: Silicon with no laws will not have binary channel access. - type: Remove - id: 7437 - time: '2024-09-25T16:49:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32385 -- author: august-sun - changes: - - message: Rolling pins are now craftable. - type: Tweak - id: 7438 - time: '2024-09-25T17:27:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32285 -- author: BramvanZijp - changes: - - message: Fixed an issue that caused Doctors Delight to metabolize twice the normal - speed, which also halved its effectiveness. - type: Fix - id: 7439 - time: '2024-09-25T17:39:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32297 -- author: Ilya246 - changes: - - message: Atmos gas sell prices significantly lowered. - type: Tweak - - message: Frezon now consumes significantly more tritium to produce. - type: Tweak - id: 7440 - time: '2024-09-26T12:46:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32407 -- author: SlamBamActionman - changes: - - message: Trusted players can now initiate votekicks for serious rulebreaks, when - admins are unavailable. - type: Add - id: 7441 - time: '2024-09-26T16:32:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32005 -- author: Beck Thompson - changes: - - message: Voice masks allow you to pick your speaking style again. - type: Fix - id: 7442 - time: '2024-09-26T16:55:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30798 -- author: august-sun - changes: - - message: Fixed collision properties of gas and volumetric pumps. - type: Fix - id: 7443 - time: '2024-09-27T05:49:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32471 -- author: metalgearsloth - changes: - - message: Fix airlock autoclose mispredicting. - type: Fix - id: 7444 - time: '2024-09-27T06:10:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32477 -- author: metalgearsloth - changes: - - message: Fix storage area pickup sound playing more than once. - type: Fix - id: 7445 - time: '2024-09-27T07:09:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32397 -- author: metalgearsloth - changes: - - message: Fix verbs shuffling on mobs. - type: Fix - - message: Stripping is now predicted. - type: Fix - - message: Ensnare interactions are now predicted. - type: Fix - - message: Fix text saying you are freeing yourself from ensnare when freeing someone - else. - type: Fix - id: 7446 - time: '2024-09-27T07:12:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32478 -- author: Fildrance, ScarKy0 - changes: - - message: AI now can electrify doors and set them to emergency access. Setting - door to emergency access will now play sound effect for everyone around, while - electrifying door will play sound effect only for AI - type: Add - - message: AI will now be notified when trying to interact with door without power - or when respective wires were messed up with - type: Fix - id: 7447 - time: '2024-09-27T07:22:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32012 -- author: LittleNorthStar - changes: - - message: Noir trenchcoat to detective loadout - type: Add - id: 7448 - time: '2024-09-27T10:03:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32380 -- author: deltanedas - changes: - - message: Removed the thief figurines objective. - type: Remove - id: 7449 - time: '2024-09-27T19:04:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32413 -- author: Beck Thompson - changes: - - message: The appraisal tool verb is now predicted! - type: Fix - id: 7450 - time: '2024-09-28T04:40:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32496 -- author: Pyvik - changes: - - message: Added 2 new hairstyles. - type: Add - id: 7451 - time: '2024-09-28T06:07:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31010 -- author: metalgearsloth - changes: - - message: Fix a lot of jankiness around airlocks. - type: Fix - id: 7452 - time: '2024-09-28T09:02:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32483 -- author: ElectroJr - changes: - - message: Fixed a store currency duplication bug/exploit. - type: Fix - id: 7453 - time: '2024-09-29T12:13:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32524 -- author: ElectroJr - changes: - - message: There is now a rate limit for most interactions. It should not be noticeable - most of the time, but may lead to mispredicts when spam-clicking. - type: Tweak - id: 7454 - time: '2024-09-29T12:19:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32527 -- author: ArtisticRoomba - changes: - - message: HoS's energy shotgun is now correctly marked as grand theft contraband. - type: Tweak - id: 7455 - time: '2024-09-29T12:22:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32521 -- author: Ilya246 - changes: - - message: Steel cost of conveyor belt assemblies halved. - type: Tweak - id: 7456 - time: '2024-09-29T15:18:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32444 -- author: CuteMoonGod - changes: - - message: Fixed execution system showing character name instead of their identity - type: Fix - id: 7457 - time: '2024-09-29T22:36:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32536 -- author: drakewill-CRL - changes: - - message: Fix error in gas exchange processing order. - type: Fix - id: 7458 - time: '2024-09-30T05:14:07.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32088 -- author: qwerltaz - changes: - - message: AI can now use fire alarms. - type: Add - id: 7459 - time: '2024-09-30T09:56:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32467 -- author: BramvanZijp - changes: - - message: The Engineering Cyborg's Advanced Tool Module now has jaws of life and - a power drill instead of an omnitool, with a multitool replacing the network - configurator. - type: Tweak - id: 7460 - time: '2024-09-30T17:38:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32487 -- author: pofitlo-Git - changes: - - message: Added a camera bug in the syndicate uplink that cost 4 TC and allow you - watch all cameras on station. - type: Add - id: 7461 - time: '2024-09-30T22:24:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30250 -- author: kosticia - changes: - - message: The maximum number of ID cards required to complete a thief's objective - has been changed from 15 to 10. - type: Tweak - id: 7462 - time: '2024-09-30T22:40:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32411 -- author: Golinth - changes: - - message: Firebots can now be constructed by scientists - the bots wander the station - looking for fires to put out with their built-in extinguisher. - type: Add - id: 7463 - time: '2024-10-01T03:13:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32482 -- author: ScarKy0 - changes: - - message: Binary encryption key now uses an AI icon - type: Tweak - id: 7464 - time: '2024-10-01T04:03:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32327 -- author: BramvanZijp - changes: - - message: Fixed borgs being able to be briefly disabled by others. - type: Fix - id: 7465 - time: '2024-10-01T15:13:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32485 -- author: BackeTako - changes: - - message: Gay Pin - type: Add - id: 7466 - time: '2024-10-01T21:07:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32584 -- author: BackeTako - changes: - - message: Reinforced walls sprite see throu top - type: Fix - id: 7467 - time: '2024-10-01T21:44:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32578 -- author: Zylo - changes: - - message: Seismic charges being uncraftable - type: Fix - id: 7468 - time: '2024-10-02T02:56:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32459 -- author: slarticodefast - changes: - - message: Fixed the chameleon settings menu not showing up for the voice mask. - type: Fix - id: 7469 - time: '2024-10-02T03:22:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32546 -- author: metalgearsloth - changes: - - message: Fix physics sensors (e.g. proximity triggers) being able to block doors. - type: Fix - id: 7470 - time: '2024-10-02T05:00:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32591 -- author: Plykiya - changes: - - message: You can now quick-swap uneven stacks of items into your inventory without - it getting "stuck" in your hands. - type: Fix - id: 7471 - time: '2024-10-02T05:27:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32560 -- author: BackeTako - changes: - - message: New hydroponics doors - type: Add - id: 7472 - time: '2024-10-02T05:33:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32575 -- author: BackeTako - changes: - - message: Red circuit tile - type: Add - id: 7473 - time: '2024-10-02T05:35:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32557 -- author: ArchRBX - changes: - - message: The MedTek PDA cartridge has now been added, providing health analyzer - functionality to PDA's - type: Add - - message: The MedTek cartridge has been added to the CMO locker, and comes preinstalled - on medical PDA's, replacing the built-in analyzer functionality on these PDA's - type: Add - id: 7474 - time: '2024-10-02T06:17:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32450 -- author: Toly65 - changes: - - message: fixed slippery and bioluminescent effects persisting on planters after - the plant has been harvested - type: Fix - - message: removed the slippery and bioluminescent visuals from planters temporararily - type: Remove - id: 7475 - time: '2024-10-02T09:37:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32576 -- author: lzk228 - changes: - - message: Star sticker can be used in chameleon menu. - type: Fix - id: 7476 - time: '2024-10-02T10:53:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32594 -- author: deltanedas - changes: - - message: Fixed the Instigator shuttle event never happening. - type: Fix - id: 7477 - time: '2024-10-02T11:44:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32597 -- author: FluffMe - changes: - - message: Fixed accidental erase of paper contents by spamming save action. - type: Fix - id: 7478 - time: '2024-10-02T12:00:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32598 - author: PJB3005 changes: - message: Removed bioluminescence plant mutations due to it breaking the rendering @@ -3897,3 +3497,403 @@ id: 7926 time: '2025-02-10T09:05:24.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34986 +- author: themias + changes: + - message: Pacified players can no longer attack living creatures with mechs + type: Fix + id: 7927 + time: '2025-02-10T22:17:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34954 +- author: sowelipililimute + changes: + - message: Smart equipping into your backpack w/ a nested storage window open no + longer bugs out + type: Fix + id: 7928 + time: '2025-02-11T02:15:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35048 +- author: Tayrtahn + changes: + - message: Radio frequencies are now displayed with a decimal point. + type: Tweak + id: 7929 + time: '2025-02-11T02:36:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35046 +- author: themias + changes: + - message: Fixed an exploit using multiple R&D computers to research multiple discipline + tier 3 technologies + type: Fix + id: 7930 + time: '2025-02-11T02:52:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34334 +- author: K-Dynamic + changes: + - message: Flashbangs, stinger grenades, EMP grenades, smoke grenades, and tear + gas grenades have new appearances. + type: Tweak + - message: Projectile grenades (including stinger and shrapnel grenades) should + now play animations when triggered. + type: Fix + id: 7931 + time: '2025-02-11T03:23:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34421 +- author: themias + changes: + - message: You can no longer use pulled objects as tools. + type: Fix + id: 7932 + time: '2025-02-11T03:29:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34587 +- author: Nox38 + changes: + - message: Vendomats now contain 2 Screwdrivers, and an addition Wirecutter. + type: Tweak + id: 7933 + time: '2025-02-11T06:35:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35059 +- author: pheenty + changes: + - message: Python now costs only 4 TC! + type: Tweak + id: 7934 + time: '2025-02-11T09:36:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33306 +- author: centcomofficer24 + changes: + - message: Increased the armor crates price from 725 spesos to 1250 spesos. + type: Tweak + id: 7935 + time: '2025-02-11T12:17:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34541 +- author: pheenty + changes: + - message: The interrogator lamp is now considered security contraband. + type: Tweak + id: 7936 + time: '2025-02-11T16:15:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35064 +- author: pheenty + changes: + - message: Chief Engineer's hardsuit storage unit now has an atmospheric gas mask. + type: Add + id: 7937 + time: '2025-02-11T17:48:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35063 +- author: Terraspark4941 + changes: + - message: The spray nozzle can now be stored inside the backpack water tank! + type: Tweak + id: 7938 + time: '2025-02-11T19:05:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34209 +- author: Tayrtahn + changes: + - message: Ghosts are no longer sent to the void if the player they are following + is polymorphed. + type: Fix + id: 7939 + time: '2025-02-11T21:34:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33878 +- author: Tayrtahn + changes: + - message: Clusterbangs now properly limit their maximum capacity. + type: Fix + id: 7940 + time: '2025-02-11T23:13:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34281 +- author: beck-thompson + changes: + - message: Fultons are now part of the Advanced Tools T2 research! + type: Add + id: 7941 + time: '2025-02-12T00:29:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34567 +- author: Nox38 + changes: + - message: Deathsquad agents Matebas now come loaded with AP rounds. + type: Fix + id: 7942 + time: '2025-02-12T00:43:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34910 +- author: MilonPL + changes: + - message: The announce command now takes optional color and sound parameters. + type: Tweak + id: 7943 + time: '2025-02-12T08:58:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34889 +- author: Xillan + changes: + - message: Changed light brown gloves to have their own unique fiber for detectives, + where previously they were indistinguishable from normal / dark brown gloves. + type: Tweak + id: 7944 + time: '2025-02-12T18:41:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35111 +- author: SaphireLattice, themias + changes: + - message: Chair buckle draw depth is slightly less broken + type: Fix + id: 7945 + time: '2025-02-13T05:51:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33447 +- author: Minemoder + changes: + - message: Slime plushie now squishes. + type: Tweak + id: 7946 + time: '2025-02-13T07:55:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33554 +- author: AgentSmithRadio + changes: + - message: Added grilled cheese sandwich and recipe. + type: Add + id: 7947 + time: '2025-02-13T08:00:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33807 +- author: themias + changes: + - message: The experimental welding tool now requires only minimal eye protection + (e.g. sunglasses) + type: Tweak + id: 7948 + time: '2025-02-13T19:26:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34792 +- author: Winkarst-cpu + changes: + - message: Thrusters now deal heat damage. + type: Fix + id: 7949 + time: '2025-02-13T19:27:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35088 +- author: Booblesnoot42 + changes: + - message: Removing the security plate from an intercom will no longer delete its + encryption keys. + type: Fix + id: 7950 + time: '2025-02-13T19:31:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34911 +- author: Velken + changes: + - message: Paramedic Void Suit now has flashlight and an ambulance siren. + type: Add + - message: Paramedic Void Suit is now restricted to Medical. + type: Tweak + id: 7951 + time: '2025-02-13T19:52:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34657 +- author: themias + changes: + - message: Fixed being able to fax multiple times in quick succession + type: Fix + id: 7952 + time: '2025-02-13T20:12:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35135 +- author: Centronias + changes: + - message: High-heeled Boots now click and clack when walking + type: Tweak + id: 7953 + time: '2025-02-13T22:35:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35083 +- author: keronshb + changes: + - message: The Supermatter Grenade has been renamed to Singularity Grenade. + type: Tweak + - message: The Singularity Grenade no longer has an explosion. + type: Remove + id: 7954 + time: '2025-02-14T15:01:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35122 +- author: ArtisticRoomba + changes: + - message: The Solar Panels section of the Engineering Guidebook has been updated + to include information on upgrading solar panels, as well as how much each variant + produces. + type: Add + - message: The Tesla Engine section of the Engineering Guidebook has been slightly + reorganized to better outline the differences between Grounding Rods and Tesla + Coils, as well as tips on how to use them. + type: Tweak + - message: The Access Configurator section of the Engineering Guidebook has been + updated to reflect the recent addition of the Authentication Disruptor, as well + as how to fix access-broken doors and equipment the easy way. + type: Add + id: 7955 + time: '2025-02-15T03:59:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34695 +- author: Tayrtahn + changes: + - message: Chickens and ducks now report hunger levels when examined. + type: Add + id: 7956 + time: '2025-02-15T04:29:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35164 +- author: VerinSenpai + changes: + - message: Air alarm devices now return to their previous settings after a power + cycle. + type: Fix + id: 7957 + time: '2025-02-15T06:07:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34887 +- author: DoutorWhite & metalgearsloth + changes: + - message: Added planet lighting for indoor / outdoor areas. + type: Add + - message: Added day-night cycle functionality. + type: Add + id: 7958 + time: '2025-02-16T08:35:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32522 +- author: metalgearsloth + changes: + - message: Fix lighting quality affecting planet lighting. + type: Fix + id: 7959 + time: '2025-02-16T13:29:03.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35207 +- author: metalgearsloth + changes: + - message: Re-enable blur for rooves and increase amount of blur. + type: Tweak + id: 7960 + time: '2025-02-16T15:35:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35213 +- author: metalgearsloth + changes: + - message: Rooves now block weather. + type: Tweak + id: 7961 + time: '2025-02-16T15:55:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35214 +- author: n00kii + changes: + - message: Fixed laser weapon visuals being broken when shooting across grids or + into space. + type: Fix + id: 7962 + time: '2025-02-16T16:14:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34515 +- author: Velken + changes: + - message: ': Paramedic Siren''s light is now visible to all and not just the wearer.' + type: Fix + id: 7963 + time: '2025-02-16T18:43:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35203 +- author: slarticodefast + changes: + - message: Fixed uplink items not being able to be used in your hand. + type: Fix + id: 7964 + time: '2025-02-16T18:47:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35218 +- author: PicklOH + changes: + - message: Added a lethals drum to the Bulldog bundle. + type: Add + - message: Removed a beanbag drum from the Bulldog bundle. + type: Remove + id: 7965 + time: '2025-02-16T22:30:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34945 +- author: psykana + changes: + - message: DNA Scrambler implant now requires confirmation to activate + type: Add + id: 7966 + time: '2025-02-17T06:16:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35232 +- author: Emisse + changes: + - message: Centcomm has been rebuilt from the ground up. + type: Tweak + id: 7967 + time: '2025-02-17T08:51:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35240 +- author: Sparlight + changes: + - message: Space debris has returned to Wizden servers. + type: Add + id: 7968 + time: '2025-02-17T12:56:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34795 +- author: Kickguy223 + changes: + - message: Cleaning up a puddle properly changes its slippery properties. + type: Fix + id: 7969 + time: '2025-02-17T20:53:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34525 +- author: lzk228 + changes: + - message: Syndicate cyborgs can laugh again. + type: Fix + id: 7970 + time: '2025-02-17T21:59:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31510 +- author: Killerqu00 + changes: + - message: Contraband examines now correctly tell you if you can possess the object. + type: Fix + id: 7971 + time: '2025-02-18T11:33:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35228 +- author: Ian321 + changes: + - message: Magazines that started out empty now visually fill. + type: Fix + id: 7972 + time: '2025-02-18T12:32:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34491 +- author: WarPigeon + changes: + - message: Steel crates now have some radiation shielding for safe storage and transport + of radioactive materials. + type: Add + id: 7973 + time: '2025-02-18T12:56:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35168 +- author: BramvanZijp + changes: + - message: Fixed Janitor-Restricted contraband unintentionally stating Security + may use it too. + type: Fix + id: 7974 + time: '2025-02-18T13:07:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35281 +- author: Pronana + changes: + - message: the crusher dagger now does everything a knife can and can be thrown. + type: Tweak + id: 7975 + time: '2025-02-18T15:16:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35259 +- author: lizelive + changes: + - message: AI can now see job icons while inside of an intellicard. + type: Fix + id: 7976 + time: '2025-02-18T22:23:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35282 +- author: CooperWallace + changes: + - message: A popup is now displayed at the item's previous location when it is recalled + by the recall wizard spell. + type: Add + id: 7977 + time: '2025-02-19T01:47:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35272 +- author: SpaceLizard24 + changes: + - message: Moved saxophones from the Brass Ensemble crate to the Woodwind Ensemble + crate. + type: Tweak + - message: Adjusted the prices of Woodwind Ensemble and Brass Ensemble crates. + type: Tweak + id: 7978 + time: '2025-02-19T06:05:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35257 diff --git a/Resources/ConfigPresets/WizardsDen/leviathan.toml b/Resources/ConfigPresets/WizardsDen/leviathan.toml index a1a0e5b704d..e09ad092b05 100644 --- a/Resources/ConfigPresets/WizardsDen/leviathan.toml +++ b/Resources/ConfigPresets/WizardsDen/leviathan.toml @@ -7,3 +7,4 @@ hostname = "[EN] Wizard's Den Leviathan [US East 1]" [hub] tags = "lang:en,region:am_n_e,rp:low" + diff --git a/Resources/ConfigPresets/WizardsDen/lizard.toml b/Resources/ConfigPresets/WizardsDen/lizard.toml index 72688efbf9c..cc849e435d4 100644 --- a/Resources/ConfigPresets/WizardsDen/lizard.toml +++ b/Resources/ConfigPresets/WizardsDen/lizard.toml @@ -1,4 +1,4 @@ -# Configuration preset used on Wizard's Den Lizard +# Configuration preset used on Wizard's Den Lizard # Nothing specific yet @@ -11,3 +11,4 @@ panic_bunker.custom_reason = "" [hub] tags = "lang:en,region:am_n_w,rp:low" + diff --git a/Resources/ConfigPresets/WizardsDen/salamander.toml b/Resources/ConfigPresets/WizardsDen/salamander.toml index bb3810b56c4..35326dc0cd9 100644 --- a/Resources/ConfigPresets/WizardsDen/salamander.toml +++ b/Resources/ConfigPresets/WizardsDen/salamander.toml @@ -1,4 +1,4 @@ -# Configuration preset used on Wizard's Den Salamander +# Configuration preset used on Wizard's Den Salamander [game] desc = "Official English Space Station 14 servers. Medium roleplay ruleset. you must be whitelisted by playing on other Wizard's Den servers if there are more than 15 online players." @@ -26,3 +26,4 @@ flavor_text = true [hub] tags = "lang:en,region:am_n_w,rp:med" + diff --git a/Resources/ConfigPresets/WizardsDen/vulture.toml b/Resources/ConfigPresets/WizardsDen/vulture.toml index 95aecb284a4..ab1d8459f37 100644 --- a/Resources/ConfigPresets/WizardsDen/vulture.toml +++ b/Resources/ConfigPresets/WizardsDen/vulture.toml @@ -1,7 +1,15 @@ -# Configuration preset used on Wizard's Den Leviathan +# Configuration preset used on Wizard's Den Leviathan [game] -hostname = "[EN] Wizard's Den Vulture [US East 2]" +hostname = "[EN][Testing] Wizard's Den Vulture [US East 2]" +desc = "Official English testing server for Space Station 14.\nVanilla, roleplay ruleset.\n\nYou can play with the newest changes to the game here, but these changes may not be final or stable, and may be reverted before the next stable release.\nPlease report bugs on our GitHub, forum, or community Discord." [hub] tags = "lang:en,region:am_n_e,rp:low" + +[server] +# This needs to be specified even though it's identical to the hostname, because fallback lobby name is "Lobby " which would be too long and go out of bounds +lobby_name = "[EN][Testing] Wizard's Den Vulture [US East 2]" + +[chat] +motd = "\n########################################################\n\n[font size=17]This is a test server. You can play with the newest changes to the game, but these [color=red]changes may not be final or stable[/color], and may be reverted. Please report bugs via our GitHub, forum, or community Discord.[/font]\n\n########################################################\n" \ No newline at end of file diff --git a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml index 8925d528592..fc470d9514a 100644 --- a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml +++ b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml @@ -48,6 +48,9 @@ allow_multi_server_play = false [atmos] max_explosion_range = 5 +[worldgen] +enabled = true + [status] privacy_policy_link = "https://spacestation14.com/about/privacy/#game-server-privacy-policy" privacy_policy_identifier = "wizden" diff --git a/Resources/Locale/en-US/actions/actions/dna-scrambler.ftl b/Resources/Locale/en-US/actions/actions/dna-scrambler.ftl new file mode 100644 index 00000000000..3b4fb17ab38 --- /dev/null +++ b/Resources/Locale/en-US/actions/actions/dna-scrambler.ftl @@ -0,0 +1 @@ +dna-scrambler-action-popup = THIS ACTION WILL IRREVERSIBLY CHANGE YOUR APPEARANCE! Use it again to confirm. diff --git a/Resources/Locale/en-US/administration/commands/announce-command.ftl b/Resources/Locale/en-US/administration/commands/announce-command.ftl new file mode 100644 index 00000000000..8cdc045f8aa --- /dev/null +++ b/Resources/Locale/en-US/administration/commands/announce-command.ftl @@ -0,0 +1,11 @@ +cmd-announce-desc = Send an in-game announcement with custom color and sound. +cmd-announce-help = {$command} [sender] [color] [sound] - Send announcement. Sender defaults to CentCom, color to Gold, sound to announce.ogg. The color should be in a #RRGGBB format. + +# The default sender for the announcement +cmd-announce-sender = Central Command + +# Completion hints +cmd-announce-arg-message = +cmd-announce-arg-sender = [sender] +cmd-announce-arg-color = [color] +cmd-announce-arg-sound = [sound] diff --git a/Resources/Locale/en-US/administration/commands/change-cvar-command.ftl b/Resources/Locale/en-US/administration/commands/change-cvar-command.ftl new file mode 100644 index 00000000000..b58339e57e5 --- /dev/null +++ b/Resources/Locale/en-US/administration/commands/change-cvar-command.ftl @@ -0,0 +1,15 @@ +cmd-changecvar-no-arguments = You must specify a cvar. +cmd-changecvar-cvar-not-registered = The cvar {$cvar} is not registered. +cmd-changecvar-cvar-not-allowed = You cannot change this cvar. +cmd-changecvar-value-out-of-range = The value is out of range. The range is {$min} to {$max}. +cmd-changecvar-desc = Change a cvar value. +cmd-changecvar-help = Usage: changecvar +cmd-changecvar-available-cvars = Listing available cvars: +cmd-changecvar-no-cvars = No cvars found that you are allowed to change. +cmd-changecvar-success = CVar {$cvar} changed from "{$old}" to "{$value}". + +cmd-changecvar-search-no-arguments = You must specify a search term. +cmd-changecvar-search-no-matches = No cvars found matching the search term. +cmd-changecvar-search-matches = Found {$count} cvars matching the search term: + +cmd-changecvar-arg-name = diff --git a/Resources/Locale/en-US/animals/udder/udder-system.ftl b/Resources/Locale/en-US/animals/udder/udder-system.ftl index 959a4fef591..8479ae08bff 100644 --- a/Resources/Locale/en-US/animals/udder/udder-system.ftl +++ b/Resources/Locale/en-US/animals/udder/udder-system.ftl @@ -5,9 +5,3 @@ udder-system-success = You fill {THE($target)} with {$amount}u from the udder. udder-system-dry = The udder is dry. udder-system-verb-milk = Milk - -udder-system-examine-overfed = {CAPITALIZE(SUBJECT($entity))} looks stuffed! -udder-system-examine-okay = {CAPITALIZE(SUBJECT($entity))} looks content. -udder-system-examine-hungry = {CAPITALIZE(SUBJECT($entity))} looks hungry. -udder-system-examine-starved = {CAPITALIZE(SUBJECT($entity))} looks starved! -udder-system-examine-none = {CAPITALIZE(SUBJECT($entity))} seems not to get hungry. diff --git a/Resources/Locale/en-US/chat/emotes.ftl b/Resources/Locale/en-US/chat/emotes.ftl index 74e669b5072..074ce2a5dcf 100644 --- a/Resources/Locale/en-US/chat/emotes.ftl +++ b/Resources/Locale/en-US/chat/emotes.ftl @@ -46,7 +46,7 @@ chat-emote-msg-squeak = squeaks. chat-emote-msg-thump = thumps {POSS-ADJ($entity)} tail. chat-emote-msg-click = clicks. chat-emote-msg-clap = claps! -chat-emote-msg-clap-single = claps their hands together. +chat-emote-msg-clap-single = claps {POSS-ADJ($entity)} hands together. chat-emote-msg-snap = snaps {POSS-ADJ($entity)} fingers. chat-emote-msg-salute = salutes. chat-emote-msg-gasp = gasps. diff --git a/Resources/Locale/en-US/contraband/contraband-severity.ftl b/Resources/Locale/en-US/contraband/contraband-severity.ftl index 68bb11930a0..10baf2cb25d 100644 --- a/Resources/Locale/en-US/contraband/contraband-severity.ftl +++ b/Resources/Locale/en-US/contraband/contraband-severity.ftl @@ -4,9 +4,13 @@ contraband-examine-text-Restricted-department = [color=yellow]This item is restr contraband-examine-text-Major = [color=red]This item is considered major contraband.[/color] contraband-examine-text-GrandTheft = [color=red]This item is a highly valuable target for Syndicate agents![/color] contraband-examine-text-Syndicate = [color=crimson]This item is highly illegal Syndicate contraband![/color] +contraband-examine-text-Magical = [color=#b337b3]This item is highly illegal Magical contraband![/color] contraband-examine-text-avoid-carrying-around = [color=red][italic]You probably want to avoid visibly carrying this around without a good reason.[/italic][/color] contraband-examine-text-in-the-clear = [color=green][italic]You should be in the clear to visibly carry this around.[/italic][/color] +contraband-examinable-verb-text = Legality +contraband-examinable-verb-message = Check legality of this item. + contraband-department-plural = {$department} contraband-job-plural = {MAKEPLURAL($job)} diff --git a/Resources/Locale/en-US/cvar/cvar-help.ftl b/Resources/Locale/en-US/cvar/cvar-help.ftl new file mode 100644 index 00000000000..55b0cb6188c --- /dev/null +++ b/Resources/Locale/en-US/cvar/cvar-help.ftl @@ -0,0 +1,29 @@ +changecvar-simple-debug_test_cvar = Does nothing. +changecvar-full-debug_test_cvar = Just a simple testing cvar. Does nothing. + +changecvar-simple-events_enabled = Controls if the game should run station events. +changecvar-full-events_enabled = Controls if the game should run station events. + +changecvar-simple-shuttle_auto_call_time = Time after round start to auto-call the shuttle. +changecvar-full-shuttle_auto_call_time = Time in minutes after round start to auto-call the shuttle. Set to zero to disable. + +changecvar-simple-playtest_all_damage_modifier = Multiplier for all damage dealt. +changecvar-full-playtest_all_damage_modifier = Multiplier for all damage dealt. +changecvar-simple-playtest_all_heal_modifier = Multiplier for all healing done. +changecvar-full-playtest_all_heal_modifier = Multiplier for all healing done. +changecvar-simple-playtest_melee_damage_modifier = Multiplier affecting melee weapon damage. +changecvar-full-playtest_melee_damage_modifier = Multiplier affecting all damage dealt by melee attacks. +changecvar-simple-playtest_projectile_damage_modifier = Multiplier affecting projectile damage. +changecvar-full-playtest_projectile_damage_modifier = Multiplier affecting all damage dealt by projectiles. +changecvar-simple-playtest_hitscan_damage_modifier = Multiplier affecting hitscan damage. +changecvar-full-playtest_hitscan_damage_modifier = Multiplier affecting all damage dealt by hitscan weapons. +changecvar-simple-playtest_thrown_damage_modifier = Multiplier affecting thrown weapon damage. +changecvar-full-playtest_thrown_damage_modifier = Multiplier affecting all damage dealt by thrown weapons. +changecvar-simple-playtest_topicals_heal_modifier = Multiplier affecting topical healing. +changecvar-full-playtest_topicals_heal_modifier = Multiplier affecting all healing done by topicals. +changecvar-simple-playtest_reagent_damage_modifier = Multiplier affecting reagent damage. +changecvar-full-playtest_reagent_damage_modifier = Multiplier affecting all damage dealt by reagents. +changecvar-simple-playtest_reagent_heal_modifier = Multiplier affecting reagent healing. +changecvar-full-playtest_reagent_heal_modifier = Multiplier affecting all healing done by reagents. +changecvar-simple-playtest_explosion_damage_modifier = Multiplier affecting explosion damage. +changecvar-full-playtest_explosion_damage_modifier = Multiplier affecting all damage dealt by explosives. diff --git a/Resources/Locale/en-US/discord/vote-notifications.ftl b/Resources/Locale/en-US/discord/vote-notifications.ftl index f6779cac83e..771d04aa8a2 100644 --- a/Resources/Locale/en-US/discord/vote-notifications.ftl +++ b/Resources/Locale/en-US/discord/vote-notifications.ftl @@ -9,3 +9,5 @@ votekick-webhook-description = Initiator: { $initiator }; Target: { $target } votekick-webhook-cancelled-admin-online = **Vote cancelled due to admins online** votekick-webhook-cancelled-admin-target = **Vote cancelled due to target being admin** votekick-webhook-cancelled-antag-target = **Vote cancelled due to target being antag** + +votekick-ban-reason = "Votekick: {$reason}" diff --git a/Resources/Locale/en-US/entity-categories.ftl b/Resources/Locale/en-US/entity-categories.ftl index 4b6cf87942f..a5ed66dd011 100644 --- a/Resources/Locale/en-US/entity-categories.ftl +++ b/Resources/Locale/en-US/entity-categories.ftl @@ -3,3 +3,6 @@ entity-category-name-game-rules = Game Rules entity-category-name-objectives = Objectives entity-category-name-roles = Mind Roles entity-category-name-mapping = Mapping +entity-category-name-donotmap = Do not map + +entity-category-suffix-donotmap = DO NOT MAP diff --git a/Resources/Locale/en-US/forensics/fibers.ftl b/Resources/Locale/en-US/forensics/fibers.ftl index 72eae55e380..5e32131854b 100644 --- a/Resources/Locale/en-US/forensics/fibers.ftl +++ b/Resources/Locale/en-US/forensics/fibers.ftl @@ -18,6 +18,7 @@ fibers-black = black fibers-blue = blue fibers-teal = teal fibers-brown = brown +fibers-light-brown = light brown fibers-grey = grey fibers-green = green fibers-orange = orange diff --git a/Resources/Locale/en-US/item-recall/item-recall.ftl b/Resources/Locale/en-US/item-recall/item-recall.ftl index 680c7b7b3fb..2240442902e 100644 --- a/Resources/Locale/en-US/item-recall/item-recall.ftl +++ b/Resources/Locale/en-US/item-recall/item-recall.ftl @@ -4,6 +4,8 @@ item-recall-marked-description = Recall {THE($item)} back into your hand. item-recall-item-marked = You draw a magical sigil on {THE($item)}. item-recall-item-already-marked = {CAPITALIZE(THE($item))} is already marked! item-recall-item-mark-empty = You must be holding an item! -item-recall-item-summon = {CAPITALIZE(THE($item))} appears in your hand! +item-recall-item-summon-self = {CAPITALIZE(THE($item))} appears in your hand! +item-recall-item-summon-others = {CAPITALIZE(THE($item))} appears in {THE($name)}'s hand! +item-recall-item-disappear = {CAPITALIZE(THE($item))} disappears! item-recall-item-unmark = You feel your connection with {THE($item)} sever. diff --git a/Resources/Locale/en-US/mapping/mapping-command.ftl b/Resources/Locale/en-US/mapping/mapping-command.ftl index e6d4f0e3935..12ab144e253 100644 --- a/Resources/Locale/en-US/mapping/mapping-command.ftl +++ b/Resources/Locale/en-US/mapping/mapping-command.ftl @@ -1,8 +1,10 @@ cmd-mapping-desc = Create or load a map and teleports you to it. -cmd-mapping-help = Usage: mapping [MapID] [Path] +cmd-mapping-help = Usage: mapping [MapID] [Path] [Grid] cmd-mapping-server = Only players can use this command. cmd-mapping-error = An error occurred when creating the new map. +cmd-mapping-try-grid = Failed to load the file as a map. Attempting to load the file as a grid... cmd-mapping-success-load = Created uninitialized map from file {$path} with id {$mapId}. +cmd-mapping-success-load-grid = Loaded uninitialized grid from file {$path} onto a new map with id {$mapId}. cmd-mapping-success = Created uninitialized map with id {$mapId}. cmd-mapping-warning = WARNING: The server is using a debug build. You are risking losing your changes. @@ -14,5 +16,6 @@ cmd-mapping-failure-float = {$arg} is not a valid float. cmd-mapping-failure-bool = {$arg} is not a valid bool. cmd-mapping-nullspace = You cannot load into map 0. cmd-hint-mapping-id = [MapID] +cmd-mapping-hint-grid = [Grid] cmd-hint-mapping-path = [Path] cmd-mapping-exists = Map {$mapId} already exists. diff --git a/Resources/Locale/en-US/medical/components/crew-monitoring-component.ftl b/Resources/Locale/en-US/medical/components/crew-monitoring-component.ftl index 601c45e4e22..1f5fd0aa85d 100644 --- a/Resources/Locale/en-US/medical/components/crew-monitoring-component.ftl +++ b/Resources/Locale/en-US/medical/components/crew-monitoring-component.ftl @@ -5,7 +5,7 @@ crew-monitoring-user-interface-title = Crew Monitoring Console crew-monitor-filter-line-placeholder = Filter crew-monitoring-user-interface-name = Name -crew-monitoring-user-interface-job = Job +crew-monitoring-user-interface-job = Job: crew-monitoring-user-interface-status = Status crew-monitoring-user-interface-location = Location diff --git a/Resources/Locale/en-US/nutrition/components/examineable-hunger-component.ftl b/Resources/Locale/en-US/nutrition/components/examineable-hunger-component.ftl new file mode 100644 index 00000000000..d8d99639089 --- /dev/null +++ b/Resources/Locale/en-US/nutrition/components/examineable-hunger-component.ftl @@ -0,0 +1,5 @@ +examineable-hunger-component-examine-overfed = {CAPITALIZE(SUBJECT($entity))} {CONJUGATE-BASIC($entity, "look", "looks")} stuffed! +examineable-hunger-component-examine-okay = {CAPITALIZE(SUBJECT($entity))} {CONJUGATE-BASIC($entity, "look", "looks")} content. +examineable-hunger-component-examine-peckish = {CAPITALIZE(SUBJECT($entity))} {CONJUGATE-BASIC($entity, "look", "looks")} hungry. +examineable-hunger-component-examine-starving = {CAPITALIZE(SUBJECT($entity))} {CONJUGATE-BASIC($entity, "look", "looks")} starved! +examineable-hunger-component-examine-none = {CAPITALIZE(SUBJECT($entity))} {CONJUGATE-BASIC($entity, "seem", "seems")} not to get hungry. diff --git a/Resources/Locale/en-US/preferences/loadouts.ftl b/Resources/Locale/en-US/preferences/loadouts.ftl index 60e8350cd31..f32c65eb243 100644 --- a/Resources/Locale/en-US/preferences/loadouts.ftl +++ b/Resources/Locale/en-US/preferences/loadouts.ftl @@ -1,6 +1,7 @@ # Name -loadout-name-edit-label = Custom name -loadout-name-edit-tooltip = 32 characters max. If no name is specified a random one may be chosen for you. +loadout-name-edit-label = Sets a custom name to be used if you play this role. If empty, your character's name will be used instead. +loadout-name-edit-label-dataset = Sets a custom name to be used if you play this role. If empty, a random name will be selected instead. +loadout-name-edit-tooltip = {$max} characters max. If no name is specified a random one may be chosen for you. # Restrictions loadout-restrictions = Restrictions diff --git a/Resources/Locale/en-US/prototypes/access/accesses.ftl b/Resources/Locale/en-US/prototypes/access/accesses.ftl index 5e54fcad223..1f867447efe 100644 --- a/Resources/Locale/en-US/prototypes/access/accesses.ftl +++ b/Resources/Locale/en-US/prototypes/access/accesses.ftl @@ -2,6 +2,7 @@ id-card-access-level-command = Command id-card-access-level-captain = Captain id-card-access-level-head-of-personnel = Head of Personnel id-card-access-level-cryogenics = Cryogenics +id-card-access-level-emergency-shuttle-repeal = E.Shuttle Repeal All id-card-access-level-head-of-security = Head of Security id-card-access-level-security = Security diff --git a/Resources/Locale/en-US/radio/components/encryption-key-component.ftl b/Resources/Locale/en-US/radio/components/encryption-key-component.ftl index d595cd37907..5bdf3faeb2a 100644 --- a/Resources/Locale/en-US/radio/components/encryption-key-component.ftl +++ b/Resources/Locale/en-US/radio/components/encryption-key-component.ftl @@ -6,5 +6,5 @@ encryption-keys-are-locked = Encryption key slots are locked! encryption-keys-panel-locked = Open maintenance panel first! examine-encryption-channels-prefix = Available frequencies: -examine-encryption-channel = [color={$color}]{$key} for {$id} ({$freq})[/color] +examine-encryption-channel = [color={$color}]{$key} for {$id} ({NATURALFIXED($freq, 1)})[/color] examine-encryption-default-channel = The default channel is [color={$color}]{$channel}[/color]. diff --git a/Resources/Locale/en-US/store/spellbook-catalog.ftl b/Resources/Locale/en-US/store/spellbook-catalog.ftl index 95a8b25e686..0c650c0d4d2 100644 --- a/Resources/Locale/en-US/store/spellbook-catalog.ftl +++ b/Resources/Locale/en-US/store/spellbook-catalog.ftl @@ -26,6 +26,9 @@ spellbook-ethereal-jaunt-description = Slip into the ethereal plane to slip away spellbook-mind-swap-name = Mind Swap spellbook-mind-swap-description = Exchange bodies with another person! +spellbook-animate-name = Animate +spellbook-animate-description = Bring an inanimate object to life! + spellbook-smite-name = Smite spellbook-smite-desc = Don't like them? EXPLODE them into giblets! Requires Wizard Robe & Hat. @@ -49,6 +52,9 @@ spellbook-wand-polymorph-carp-description = For when you need a carp filet quick spellbook-wand-locker-name = Wand of the Locker spellbook-wand-locker-description = Shoot cursed lockers at your enemies and lock em away! +spellbook-staff-animation-name = Staff of Animation +spellbook-staff-animation-description = Bring inanimate objects to life! + # Events spellbook-event-summon-ghosts-name = Summon Ghosts diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 907e47a1266..4d618d45dcc 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -42,8 +42,8 @@ uplink-smoke-grenade-desc = A grenade that releases a huge cloud of smoke, perfe uplink-mini-bomb-name = Minibomb uplink-mini-bomb-desc = A low-yield, high-impact precision sabotage explosive with a 5 second long fuse. Perfect for quickly destroying a machine, dead body, or whatever else needs to go. -uplink-supermatter-grenade-name = Supermatter Grenade -uplink-supermatter-grenade-desc = Grenade that simulates delamination of a suppermatter engine, generates powerful gravity well. Explosion comparable to a Mini Bomb. +uplink-singularity-grenade-name = Singularity Grenade +uplink-singularity-grenade-desc = Grenade that simulates the power of a singularity, generates powerful gravity well. uplink-whitehole-grenade-name = Whitehole Grenade uplink-whitehole-grenade-desc = Grenade that repulses everything around for about 10 seconds. Very useful in small rooms and for chasing someone. @@ -238,7 +238,7 @@ uplink-c20r-bundle-name = C-20r Bundle uplink-c20r-bundle-desc = Old faithful: The classic C-20r Submachine Gun, bundled with three magazines. uplink-buldog-bundle-name = Bulldog Bundle -uplink-buldog-bundle-desc = Lean and mean: Contains the popular Bulldog Shotgun, a 12g beanbag drum and three 12g buckshot drums. +uplink-buldog-bundle-desc = Lean and mean: Contains the popular Bulldog Shotgun and four 12g buckshot drums. uplink-grenade-launcher-bundle-name = China-Lake Bundle uplink-grenade-launcher-bundle-desc = An old China-Lake grenade launcher bundled with 11 rounds of varying destructive capability. diff --git a/Resources/Maps/ADTMaps/ADTStations/adt_delta.yml b/Resources/Maps/ADTMaps/ADTStations/adt_delta.yml index 855ddea70e0..aa1aa2d12c5 100644 --- a/Resources/Maps/ADTMaps/ADTStations/adt_delta.yml +++ b/Resources/Maps/ADTMaps/ADTStations/adt_delta.yml @@ -192669,7 +192669,7 @@ entities: icon: null productHereticKnowledge: null priority: 0 - productEntity: SupermatterGrenade + productEntity: SingularityGrenade productAction: null mindAction: True productUpgradeId: null diff --git a/Resources/Maps/ADTMaps/ADTStations/adt_kerberos.yml b/Resources/Maps/ADTMaps/ADTStations/adt_kerberos.yml index 56c216eecfd..349a239ed63 100644 --- a/Resources/Maps/ADTMaps/ADTStations/adt_kerberos.yml +++ b/Resources/Maps/ADTMaps/ADTStations/adt_kerberos.yml @@ -193262,7 +193262,7 @@ entities: icon: null productHereticKnowledge: null priority: 0 - productEntity: SupermatterGrenade + productEntity: SingularityGrenade productAction: null mindAction: True productUpgradeId: null diff --git a/Resources/Maps/ADTMaps/Ghostbars/calm_ghostly_bar.yml b/Resources/Maps/ADTMaps/Ghostbars/calm_ghostly_bar.yml index f17d13bd6e6..e08221fca7e 100644 --- a/Resources/Maps/ADTMaps/Ghostbars/calm_ghostly_bar.yml +++ b/Resources/Maps/ADTMaps/Ghostbars/calm_ghostly_bar.yml @@ -49,7 +49,7 @@ entities: name: grid - type: Transform pos: -1.8297873,0.7446809 - parent: invalid + parent: 1740 - type: MapGrid chunks: 0,0: @@ -1123,6 +1123,18 @@ entities: - type: GasTileOverlay - type: RadiationGridResistance - type: NavMap + - uid: 1740 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree - proto: AcousticGuitarInstrument entities: - uid: 2 @@ -1463,7 +1475,7 @@ entities: pos: 10.5,-23.5 parent: 1 - type: Door - secondsUntilStateChange: -21729.615 + secondsUntilStateChange: -21767.361 state: Opening - type: DeviceLinkSource lastSignals: @@ -1573,7 +1585,7 @@ entities: pos: 8.5,4.5 parent: 1 - type: Door - secondsUntilStateChange: -17241.354 + secondsUntilStateChange: -17279.1 state: Opening - type: DeviceLinkSource lastSignals: @@ -11643,7 +11655,7 @@ entities: pos: 2.5,2.5 parent: 1 - type: Door - secondsUntilStateChange: -26030.078 + secondsUntilStateChange: -26067.824 state: Opening - proto: WoodenBench entities: diff --git a/Resources/Maps/ADTMaps/Shuttles/ERT/cbun.yml b/Resources/Maps/ADTMaps/Shuttles/ERT/cbun.yml index 391827e797b..c5145c3fef5 100644 --- a/Resources/Maps/ADTMaps/Shuttles/ERT/cbun.yml +++ b/Resources/Maps/ADTMaps/Shuttles/ERT/cbun.yml @@ -21,24 +21,13 @@ tilemap: entities: - proto: "" entities: - - uid: 1 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - uid: 2 components: - type: MetaData name: NT-CBUN-NZ - type: Transform pos: 0.7253765,-7.084765 - parent: 1 + parent: invalid - type: MapGrid chunks: 0,0: @@ -1046,7 +1035,7 @@ entities: pos: 1.5,-1.5 parent: 2 - type: Door - secondsUntilStateChange: -1647.2473 + secondsUntilStateChange: -1716.8092 state: Opening - type: DeviceLinkSource lastSignals: @@ -3331,7 +3320,7 @@ entities: pos: 2.5,-7.5 parent: 2 - type: Door - secondsUntilStateChange: -941.5998 + secondsUntilStateChange: -1011.1617 state: Closing - type: Firelock emergencyCloseCooldown: 349.0996529 diff --git a/Resources/Maps/ADTMaps/Shuttles/ERT/default-rev.yml b/Resources/Maps/ADTMaps/Shuttles/ERT/default-rev.yml index 86d6f9a7a76..7bc63394642 100644 --- a/Resources/Maps/ADTMaps/Shuttles/ERT/default-rev.yml +++ b/Resources/Maps/ADTMaps/Shuttles/ERT/default-rev.yml @@ -25,24 +25,13 @@ tilemap: entities: - proto: "" entities: - - uid: 1 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - uid: 2 components: - type: MetaData name: NT-MidnightCrew 1482 - type: Transform pos: 0.7253765,-7.084765 - parent: 1 + parent: invalid - type: MapGrid chunks: 0,0: @@ -3017,7 +3006,7 @@ entities: pos: 2.5,-7.5 parent: 2 - type: Door - secondsUntilStateChange: -3783.4744 + secondsUntilStateChange: -3823.2615 state: Closing - type: Firelock emergencyCloseCooldown: 11369.7211955 diff --git a/Resources/Maps/ADTMaps/Shuttles/ERT/default.yml b/Resources/Maps/ADTMaps/Shuttles/ERT/default.yml index 11515b62058..dc3ee0f67b2 100644 --- a/Resources/Maps/ADTMaps/Shuttles/ERT/default.yml +++ b/Resources/Maps/ADTMaps/Shuttles/ERT/default.yml @@ -18,24 +18,13 @@ tilemap: entities: - proto: "" entities: - - uid: 1 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - uid: 732 components: - type: MetaData name: NT-ERT-RatVore-13 - type: Transform pos: 2.2710133,-2.4148211 - parent: 1 + parent: invalid - type: MapGrid chunks: -1,0: diff --git a/Resources/Maps/ADTMaps/Shuttles/ERT/engineer.yml b/Resources/Maps/ADTMaps/Shuttles/ERT/engineer.yml index ea2f756b6a7..f721da2966b 100644 --- a/Resources/Maps/ADTMaps/Shuttles/ERT/engineer.yml +++ b/Resources/Maps/ADTMaps/Shuttles/ERT/engineer.yml @@ -18,24 +18,13 @@ tilemap: entities: - proto: "" entities: - - uid: 1 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - uid: 732 components: - type: MetaData name: NT-ERT-RatVore-13 - type: Transform pos: 2.2710133,-2.4148211 - parent: 1 + parent: invalid - type: MapGrid chunks: -1,0: diff --git a/Resources/Maps/ADTMaps/Shuttles/ERT/janitor.yml b/Resources/Maps/ADTMaps/Shuttles/ERT/janitor.yml index 17802cb0982..2b737593545 100644 --- a/Resources/Maps/ADTMaps/Shuttles/ERT/janitor.yml +++ b/Resources/Maps/ADTMaps/Shuttles/ERT/janitor.yml @@ -18,24 +18,13 @@ tilemap: entities: - proto: "" entities: - - uid: 1 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - uid: 732 components: - type: MetaData name: NT-ERT-RatVore-13 - type: Transform pos: 2.2710133,-2.4148211 - parent: 1 + parent: invalid - type: MapGrid chunks: -1,0: diff --git a/Resources/Maps/ADTMaps/Shuttles/ERT/medical.yml b/Resources/Maps/ADTMaps/Shuttles/ERT/medical.yml index c4adb7b1335..3b197141e1d 100644 --- a/Resources/Maps/ADTMaps/Shuttles/ERT/medical.yml +++ b/Resources/Maps/ADTMaps/Shuttles/ERT/medical.yml @@ -18,24 +18,13 @@ tilemap: entities: - proto: "" entities: - - uid: 1 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - uid: 732 components: - type: MetaData name: NT-ERT-RatVore-13 - type: Transform pos: 2.2710133,-2.4148211 - parent: 1 + parent: invalid - type: MapGrid chunks: -1,0: diff --git a/Resources/Maps/ADTMaps/Shuttles/ERT/security.yml b/Resources/Maps/ADTMaps/Shuttles/ERT/security.yml index eb4c2a054ed..77c8137d3b7 100644 --- a/Resources/Maps/ADTMaps/Shuttles/ERT/security.yml +++ b/Resources/Maps/ADTMaps/Shuttles/ERT/security.yml @@ -18,24 +18,13 @@ tilemap: entities: - proto: "" entities: - - uid: 1 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - uid: 732 components: - type: MetaData name: NT-ERT-RatVore-13 - type: Transform pos: 2.2710133,-2.4148211 - parent: 1 + parent: invalid - type: MapGrid chunks: -1,0: diff --git a/Resources/Maps/Corvax/corvax_centcomm.yml b/Resources/Maps/Corvax/corvax_centcomm.yml index 02f3d410aaa..71449ba0336 100644 --- a/Resources/Maps/Corvax/corvax_centcomm.yml +++ b/Resources/Maps/Corvax/corvax_centcomm.yml @@ -76,27 +76,13 @@ tilemap: entities: - proto: "" entities: - - uid: 1 - components: - - type: MetaData - name: Central Command - - type: Transform - - type: ProtectedGrid - - type: Map - mapPaused: True - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - uid: 2 components: - type: MetaData name: Станция ЦентКом - type: Transform pos: -43.015625,-31.125 - parent: 1 + parent: invalid - type: MapGrid chunks: 0,3: @@ -5634,6 +5620,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.14975 moles: @@ -5649,6 +5643,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -5664,6 +5666,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.14975 moles: @@ -5679,6 +5689,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -5694,6 +5712,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.14944 moles: @@ -5709,6 +5735,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -5724,6 +5758,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -5739,6 +5781,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -5754,6 +5804,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 immutable: True moles: @@ -5769,6 +5827,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -5784,6 +5850,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -5799,6 +5873,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - uid: 5 components: @@ -19098,23 +19180,23 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.153929,57.677956 + pos: 25.5,57.5 parent: 2 - uid: 2409 components: - type: Transform rot: 3.141592653589793 rad - pos: 80.10663,43.740112 + pos: 80.5,43.5 parent: 2 - uid: 2410 components: - type: Transform - pos: 41.426525,10.557022 + pos: 41.5,10.5 parent: 2 - uid: 2411 components: - type: Transform - pos: 55.902786,34.608067 + pos: 55.5,34.5 parent: 2 - uid: 2412 components: @@ -19130,36 +19212,36 @@ entities: - uid: 2414 components: - type: Transform - pos: 38.526516,19.61127 + pos: 38.5,19.5 parent: 2 - uid: 2415 components: - type: Transform - pos: 53.952057,53.483128 + pos: 53.5,53.5 parent: 2 - uid: 2416 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5009,53.09613 + pos: 56.5,53.5 parent: 2 - uid: 2417 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.45357,20.655523 + pos: 41.5,20.5 parent: 2 - uid: 2418 components: - type: Transform rot: -1.5707963267948966 rad - pos: 76.43589,34.068306 + pos: 76.5,34.5 parent: 2 - uid: 2419 components: - type: Transform rot: -1.5707963267948966 rad - pos: 76.396576,38.132706 + pos: 76.5,38.5 parent: 2 - uid: 2420 components: @@ -19201,7 +19283,7 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 38.4998,11.667223 + pos: 38.5,11.5 parent: 2 - uid: 2427 components: @@ -19213,13 +19295,13 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 74.490326,38.11708 + pos: 74.5,38.5 parent: 2 - uid: 2429 components: - type: Transform rot: -1.5707963267948966 rad - pos: 74.420265,34.099556 + pos: 74.5,34.5 parent: 2 - uid: 2430 components: @@ -19249,37 +19331,37 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.560572,46.60057 + pos: 29.5,46.5 parent: 2 - uid: 2435 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.096453,41.791294 + pos: 19.5,41.5 parent: 2 - uid: 2436 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.479755,57.616383 + pos: 10.5,57.5 parent: 2 - uid: 2437 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.529715,57.663258 + pos: 18.5,57.5 parent: 2 - uid: 2438 components: - type: Transform rot: 3.141592653589793 rad - pos: 80.091,45.771362 + pos: 80.5,45.5 parent: 2 - uid: 2439 components: - type: Transform rot: 3.141592653589793 rad - pos: 80.10663,41.708862 + pos: 80.5,41.5 parent: 2 - proto: ChairOfficeLight entities: @@ -19287,19 +19369,19 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.620031,45.75515 + pos: 22.5,45.5 parent: 2 - uid: 2441 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.713781,46.69265 + pos: 22.5,46.5 parent: 2 - uid: 2442 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.51934,36.64926 + pos: 59.5,36.5 parent: 2 - uid: 2443 components: @@ -19333,13 +19415,13 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 60.48786,46.557686 + pos: 60.5,46.5 parent: 2 - uid: 2449 components: - type: Transform rot: 1.5707963267948966 rad - pos: 70.58431,38.003548 + pos: 70.5,38.5 parent: 2 - proto: ChemDispenser entities: @@ -19705,6 +19787,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: ClosetEmergencyFilledRandom entities: - uid: 2508 @@ -19786,6 +19876,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -19836,6 +19934,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -19877,6 +19983,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -19918,6 +20032,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -19962,6 +20084,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -20009,6 +20139,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -20041,6 +20179,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -21955,6 +22101,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: CrateFreezer entities: - uid: 2725 @@ -21980,6 +22134,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -22045,6 +22207,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -22089,6 +22259,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: CratePermaEscapeMats entities: - uid: 2757 @@ -22114,6 +22292,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: CratePlastic entities: - uid: 630 @@ -22139,6 +22325,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -25282,66 +25476,6 @@ entities: parent: 16 - type: Physics canCollide: False -- proto: ERTSpawnerCBURN - entities: - - uid: 3231 - components: - - type: Transform - pos: 21.5,57.5 - parent: 2 - - uid: 3232 - components: - - type: Transform - pos: 15.5,57.5 - parent: 2 - - uid: 3233 - components: - - type: Transform - pos: 15.5,56.5 - parent: 2 - - uid: 3234 - components: - - type: Transform - pos: 15.5,55.5 - parent: 2 - - uid: 3235 - components: - - type: Transform - pos: 15.5,54.5 - parent: 2 -- proto: ERTSpawnerEngineering - entities: - - uid: 3236 - components: - - type: Transform - pos: 13.5,57.5 - parent: 2 -- proto: ERTSpawnerLeader - entities: - - uid: 3237 - components: - - type: Transform - pos: 21.5,57.5 - parent: 2 -- proto: ERTSpawnerMedical - entities: - - uid: 3238 - components: - - type: Transform - pos: 13.5,56.5 - parent: 2 -- proto: ERTSpawnerSrcurity - entities: - - uid: 3239 - components: - - type: Transform - pos: 13.5,54.5 - parent: 2 - - uid: 3240 - components: - - type: Transform - pos: 13.5,55.5 - parent: 2 - proto: ExplosivePayload entities: - uid: 3241 @@ -39636,6 +39770,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -39680,6 +39822,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -39716,6 +39866,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -39753,6 +39911,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -39792,6 +39958,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -40131,6 +40305,7 @@ entities: - Security - Service - Supply + - ADTLawyerChannel currentChannel: CentCom - type: ContainerContainer containers: @@ -40167,6 +40342,7 @@ entities: - Security - Service - Supply + - ADTLawyerChannel currentChannel: CentCom - type: ContainerContainer containers: @@ -40202,6 +40378,7 @@ entities: - Security - Service - Supply + - ADTLawyerChannel - CentCom currentChannel: Command - type: ContainerContainer @@ -40620,10 +40797,6 @@ entities: - type: AccessReader access: - - CentralCommand - - type: DeviceLinkSource - linkedPorts: - 3231: - - Pressed: Trigger - uid: 4912 components: - type: MetaData @@ -40635,10 +40808,6 @@ entities: - type: AccessReader access: - - CentralCommand - - type: DeviceLinkSource - linkedPorts: - 3237: - - Pressed: Trigger - uid: 4913 components: - type: MetaData @@ -40652,14 +40821,6 @@ entities: - - CentralCommand - type: DeviceLinkSource linkedPorts: - 3239: - - Pressed: Trigger - 3240: - - Pressed: Trigger - 3238: - - Pressed: Trigger - 3236: - - Pressed: Trigger 7042: - Pressed: DoorBolt 7048: @@ -40689,14 +40850,6 @@ entities: - - CentralCommand - type: DeviceLinkSource linkedPorts: - 3232: - - Pressed: Trigger - 3233: - - Pressed: Trigger - 3234: - - Pressed: Trigger - 3235: - - Pressed: Trigger 7053: - Pressed: DoorBolt 7052: @@ -40791,6 +40944,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: LockerChiefMedicalOfficer entities: - uid: 6865 @@ -40816,6 +40977,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -40867,6 +41036,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: Physics bodyType: Static - type: ContainerContainer @@ -40926,6 +41103,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 4921 components: - type: Transform @@ -40961,6 +41146,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -41026,6 +41219,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -41069,6 +41270,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -41112,6 +41321,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -41134,9 +41351,6 @@ entities: - type: Transform pos: 65.5,48.5 parent: 2 - - type: AccessReader - access: - - - CentralCommand - type: EntityStorage air: volume: 200 @@ -41155,6 +41369,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -41214,6 +41436,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -41267,6 +41497,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -42003,6 +42241,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 4978 components: - type: Transform @@ -42026,6 +42272,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 4979 components: - type: Transform @@ -42049,6 +42303,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 4980 components: - type: Transform @@ -47889,6 +48151,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -47922,6 +48192,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: SMESBasic entities: - uid: 5731 @@ -48457,6 +48735,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -48496,6 +48782,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -48532,6 +48826,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -48568,6 +48870,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -48607,6 +48917,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -48647,6 +48965,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -55835,6 +56161,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: WardrobeYellowFilled entities: - uid: 7005 @@ -55860,6 +56194,14 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: WarningN2 entities: - uid: 7006 diff --git a/Resources/Maps/Dungeon/vgroidinterior.yml b/Resources/Maps/Dungeon/vgroidinterior.yml index 2287b87e9e2..c0964711264 100644 --- a/Resources/Maps/Dungeon/vgroidinterior.yml +++ b/Resources/Maps/Dungeon/vgroidinterior.yml @@ -35,11 +35,11 @@ entities: version: 6 0,0: ind: 0,0 - tiles: AgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAABAAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAAAQAAAAAAAwAAAAAABgAAAAAAAwAAAAAABgAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAAwAAAAAABgAAAAAAAQAAAAAABgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAABAAAAAAAAwAAAAAABAAAAAAABgAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAQAAAAAABgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAAABAAAAAAA + tiles: UgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAABAAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAUgAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAUgAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAAUgAAAAAAAwAAAAAAUgAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAABAAAAAAAAwAAAAAABAAAAAAAUgAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAQAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAAABAAAAAAA version: 6 0,1: ind: 0,1 - tiles: BgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAABgAAAAAAAwAAAAAABgAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: UgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAUgAAAAAAAwAAAAAAUgAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAUgAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 0,-1: ind: 0,-1 @@ -59,11 +59,11 @@ entities: version: 6 1,0: ind: 1,0 - tiles: BAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAABwAAAAAACAAAAAAABwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAABwAAAAAABwAAAAAACAAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAACAAAAAAABwAAAAAABwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAABgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAUgAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAABwAAAAAACAAAAAAABwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAABwAAAAAABwAAAAAACAAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAACAAAAAAABwAAAAAABwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAUgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAUgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 - tiles: AwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAwAAAAAABwAAAAAABwAAAAAABwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAWQAAAAAAWQAAAAAABwAAAAAABwAAAAAABwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAWQAAAAAAWQAAAAAABwAAAAAABwAAAAAABwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 @@ -172,2190 +172,2531 @@ entities: - type: RadiationGridResistance - proto: AirlockMaintLocked entities: - - uid: 75 + - uid: 2 components: - type: Transform pos: 20.5,6.5 parent: 1 - - uid: 113 + - uid: 3 components: - type: Transform pos: 13.5,1.5 parent: 1 - - uid: 207 + - uid: 4 components: - type: Transform pos: 14.5,8.5 parent: 1 - - uid: 225 + - uid: 5 components: - type: Transform pos: 20.5,12.5 parent: 1 + - uid: 442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,19.5 + parent: 1 + - uid: 444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,21.5 + parent: 1 - proto: AtmosFixInstantPlasmaFireMarker entities: - - uid: 233 + - uid: 6 components: - type: Transform pos: 8.5,14.5 parent: 1 - proto: Bed entities: - - uid: 71 + - uid: 7 components: - type: Transform pos: 21.5,9.5 parent: 1 - proto: BedsheetSpawner entities: - - uid: 89 + - uid: 8 components: - type: Transform pos: 21.5,9.5 parent: 1 - proto: BookshelfFilled entities: - - uid: 90 + - uid: 9 components: - type: Transform pos: 19.5,9.5 parent: 1 - proto: CableHV entities: - - uid: 3 + - uid: 10 components: - type: Transform pos: 8.5,2.5 parent: 1 - - uid: 4 + - uid: 11 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 5 + - uid: 12 components: - type: Transform pos: 8.5,4.5 parent: 1 - - uid: 6 + - uid: 13 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 7 + - uid: 14 components: - type: Transform pos: 9.5,4.5 parent: 1 - proto: ChairWood entities: - - uid: 76 + - uid: 15 components: - type: Transform pos: 19.45475,8.339682 parent: 1 - proto: CrateMaterialPlasma entities: - - uid: 232 + - uid: 16 components: - type: Transform pos: 8.5,14.5 parent: 1 - proto: GeneratorRTG entities: - - uid: 2 + - uid: 17 components: - type: Transform pos: 8.5,2.5 parent: 1 - proto: GeneratorRTGDamaged entities: - - uid: 11 + - uid: 18 components: - type: Transform pos: 20.5,2.5 parent: 1 - proto: Girder entities: - - uid: 231 + - uid: 19 components: - type: Transform pos: 16.5,12.5 parent: 1 - proto: Grille entities: - - uid: 8 + - uid: 20 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 9 + - uid: 21 components: - type: Transform pos: 8.5,4.5 parent: 1 - - uid: 10 + - uid: 22 components: - type: Transform pos: 9.5,4.5 parent: 1 - - uid: 175 + - uid: 23 components: - type: Transform pos: 12.5,15.5 parent: 1 - - uid: 176 + - uid: 24 components: - type: Transform pos: 16.5,15.5 parent: 1 - - uid: 177 + - uid: 25 components: - type: Transform pos: 13.5,16.5 parent: 1 - - uid: 183 + - uid: 26 components: - type: Transform pos: 12.5,13.5 parent: 1 - - uid: 184 + - uid: 27 components: - type: Transform pos: 13.5,12.5 parent: 1 - - uid: 185 + - uid: 28 components: - type: Transform pos: 15.5,16.5 parent: 1 - - uid: 214 + - uid: 29 components: - type: Transform pos: 12.5,14.5 parent: 1 - - uid: 215 + - uid: 30 components: - type: Transform pos: 16.5,14.5 parent: 1 - - uid: 216 + - uid: 31 components: - type: Transform pos: 14.5,16.5 parent: 1 - - uid: 312 + - uid: 32 components: - type: Transform pos: 1.5,15.5 parent: 1 -- proto: GrilleBroken - entities: - - uid: 186 - components: - - type: Transform - pos: 14.5,12.5 - parent: 1 -- proto: GrilleSpawner - entities: - - uid: 133 - components: - - type: Transform - pos: 16.5,13.5 - parent: 1 - - uid: 217 - components: - - type: Transform - pos: 15.5,12.5 - parent: 1 -- proto: IronRockDiamond - entities: - - uid: 167 + - uid: 51 components: - type: Transform - pos: 14.5,14.5 + rot: -1.5707963267948966 rad + pos: 6.5,19.5 parent: 1 -- proto: IronRockGold - entities: - - uid: 30 + - uid: 52 components: - type: Transform - pos: 13.5,7.5 + rot: -1.5707963267948966 rad + pos: 7.5,19.5 parent: 1 - - uid: 78 + - uid: 53 components: - type: Transform - pos: 0.5,6.5 + rot: -1.5707963267948966 rad + pos: 2.5,21.5 parent: 1 - - uid: 99 + - uid: 54 components: - type: Transform - pos: 0.5,10.5 + rot: -1.5707963267948966 rad + pos: 3.5,21.5 parent: 1 - - uid: 283 + - uid: 470 components: - type: Transform - pos: 4.5,10.5 + pos: 14.5,19.5 parent: 1 - - uid: 284 + - uid: 475 components: - type: Transform - pos: 4.5,8.5 + rot: 1.5707963267948966 rad + pos: 22.5,19.5 parent: 1 - - uid: 289 + - uid: 476 components: - type: Transform - pos: 14.5,7.5 + rot: 1.5707963267948966 rad + pos: 22.5,20.5 parent: 1 - - uid: 299 + - uid: 477 components: - type: Transform - pos: 15.5,7.5 + rot: 1.5707963267948966 rad + pos: 22.5,21.5 parent: 1 - - uid: 301 +- proto: GrilleBroken + entities: + - uid: 33 components: - type: Transform - pos: 0.5,8.5 + pos: 14.5,12.5 parent: 1 - - uid: 303 + - uid: 40 components: - type: Transform - pos: 4.5,6.5 + rot: 3.141592653589793 rad + pos: 7.5,18.5 parent: 1 -- proto: IronRockPlasma - entities: - - uid: 100 + - uid: 41 components: - type: Transform - pos: 10.5,15.5 + rot: 3.141592653589793 rad + pos: 2.5,18.5 parent: 1 - - uid: 255 + - uid: 45 components: - type: Transform - pos: 9.5,16.5 + rot: 3.141592653589793 rad + pos: 3.5,18.5 parent: 1 - - uid: 265 + - uid: 63 components: - type: Transform - pos: 7.5,16.5 + pos: 7.5,22.5 parent: 1 - - uid: 266 + - uid: 64 components: - type: Transform - pos: 6.5,13.5 + pos: 8.5,22.5 parent: 1 - - uid: 282 + - uid: 65 components: - type: Transform - pos: 6.5,15.5 + rot: 1.5707963267948966 rad + pos: 0.5,19.5 parent: 1 - - uid: 285 + - uid: 66 components: - type: Transform - pos: 18.5,12.5 + pos: 3.5,22.5 parent: 1 - - uid: 286 + - uid: 69 components: - type: Transform - pos: 22.5,12.5 + rot: -1.5707963267948966 rad + pos: 10.5,19.5 parent: 1 - - uid: 287 + - uid: 70 components: - type: Transform - pos: 4.5,12.5 + rot: -1.5707963267948966 rad + pos: 10.5,21.5 parent: 1 - - uid: 295 + - uid: 445 components: - type: Transform - pos: 7.5,12.5 + rot: 1.5707963267948966 rad + pos: 15.5,22.5 parent: 1 - - uid: 305 + - uid: 448 components: - type: Transform - pos: 0.5,16.5 + pos: 14.5,21.5 parent: 1 - - uid: 306 + - uid: 451 components: - type: Transform - pos: 4.5,13.5 + rot: 1.5707963267948966 rad + pos: 15.5,21.5 parent: 1 - - uid: 313 + - uid: 454 components: - type: Transform - pos: 9.5,12.5 + pos: 15.5,21.5 parent: 1 - - uid: 314 + - uid: 472 components: - type: Transform - pos: 10.5,13.5 + rot: 1.5707963267948966 rad + pos: 13.5,19.5 parent: 1 -- proto: IronRockSilver +- proto: GrilleSpawner entities: - - uid: 81 - components: - - type: Transform - pos: 4.5,4.5 - parent: 1 - - uid: 82 + - uid: 34 components: - type: Transform - pos: 4.5,0.5 + pos: 16.5,13.5 parent: 1 - - uid: 83 + - uid: 35 components: - type: Transform - pos: 0.5,0.5 + pos: 15.5,12.5 parent: 1 - - uid: 84 +- proto: IronRockDiamond + entities: + - uid: 36 components: - type: Transform - pos: 0.5,4.5 + pos: 14.5,14.5 parent: 1 - - uid: 281 +- proto: LandMineExplosive + entities: + - uid: 71 components: - type: Transform - pos: 10.5,7.5 + pos: 13.439286,14.473711 parent: 1 - - uid: 288 + - uid: 72 components: - type: Transform - pos: 10.5,6.5 + pos: 15.486161,14.504961 parent: 1 - - uid: 298 + - uid: 73 components: - type: Transform - pos: 6.5,6.5 + pos: 14.525224,15.4346485 parent: 1 - - uid: 300 + - uid: 74 components: - type: Transform - pos: 6.5,7.5 + pos: 14.525224,13.442461 parent: 1 -- proto: IronRockUranium +- proto: PoweredLightPostSmallEmpty entities: - - uid: 85 - components: - - type: Transform - pos: 18.5,2.5 - parent: 1 - - uid: 86 - components: - - type: Transform - pos: 20.5,0.5 - parent: 1 - - uid: 87 - components: - - type: Transform - pos: 22.5,2.5 - parent: 1 - - uid: 88 + - uid: 75 components: - type: Transform - pos: 20.5,4.5 + pos: 16.5,0.5 parent: 1 -- proto: LandMineExplosive +- proto: PoweredSmallLight entities: - - uid: 164 + - uid: 471 components: - type: Transform - pos: 13.439286,14.473711 + pos: 20.5,21.5 parent: 1 - - uid: 166 +- proto: PoweredSmallLightEmpty + entities: + - uid: 469 components: - type: Transform - pos: 15.486161,14.504961 + rot: -1.5707963267948966 rad + pos: 17.5,19.5 parent: 1 - - uid: 198 +- proto: Rack + entities: + - uid: 76 components: - type: Transform - pos: 14.525224,15.4346485 + pos: 13.5,3.5 parent: 1 - - uid: 199 +- proto: ReinforcedWindow + entities: + - uid: 427 components: - type: Transform - pos: 14.525224,13.442461 + rot: 1.5707963267948966 rad + pos: 22.5,19.5 parent: 1 -- proto: PoweredLightPostSmallEmpty - entities: - - uid: 204 + - uid: 441 components: - type: Transform - pos: 16.5,0.5 + rot: 1.5707963267948966 rad + pos: 22.5,20.5 parent: 1 -- proto: Rack - entities: - - uid: 213 + - uid: 453 components: - type: Transform - pos: 13.5,3.5 + rot: 1.5707963267948966 rad + pos: 22.5,21.5 parent: 1 - proto: SalvageCanisterSpawner entities: - - uid: 239 + - uid: 77 components: - type: Transform pos: 20.5,9.5 parent: 1 - - uid: 302 + - uid: 78 components: - type: Transform pos: 15.5,3.5 parent: 1 - proto: SalvageSpawnerEquipment entities: - - uid: 234 + - uid: 79 components: - type: Transform pos: 21.5,7.5 parent: 1 - - uid: 262 + - uid: 80 components: - type: Transform pos: 21.5,7.5 parent: 1 - - uid: 412 + - uid: 81 components: - type: Transform pos: 21.5,14.5 parent: 1 - - uid: 413 + - uid: 82 components: - type: Transform pos: 20.5,13.5 parent: 1 - proto: SalvageSpawnerEquipmentValuable entities: - - uid: 143 + - uid: 83 components: - type: Transform pos: 9.5,3.5 parent: 1 - - uid: 144 + - uid: 84 components: - type: Transform pos: 9.5,2.5 parent: 1 - - uid: 145 + - uid: 85 components: - type: Transform pos: 9.5,1.5 parent: 1 - - uid: 146 + - uid: 86 components: - type: Transform pos: 8.5,1.5 parent: 1 - - uid: 147 + - uid: 87 components: - type: Transform pos: 7.5,1.5 parent: 1 - - uid: 169 + - uid: 88 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 170 + - uid: 89 components: - type: Transform pos: 7.5,3.5 parent: 1 - - uid: 172 + - uid: 90 components: - type: Transform pos: 8.5,1.5 parent: 1 - - uid: 182 + - uid: 91 components: - type: Transform pos: 9.5,1.5 parent: 1 - - uid: 191 + - uid: 92 components: - type: Transform pos: 13.5,3.5 parent: 1 - - uid: 210 + - uid: 93 components: - type: Transform pos: 7.5,1.5 parent: 1 - - uid: 211 + - uid: 94 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 221 + - uid: 95 components: - type: Transform pos: 13.5,3.5 parent: 1 - - uid: 222 + - uid: 96 components: - type: Transform pos: 13.5,3.5 parent: 1 - - uid: 257 + - uid: 97 components: - type: Transform pos: 21.5,9.5 parent: 1 - - uid: 261 + - uid: 98 components: - type: Transform pos: 21.5,9.5 parent: 1 - - uid: 342 + - uid: 99 components: - type: Transform pos: 13.5,9.5 parent: 1 - - uid: 343 + - uid: 100 components: - type: Transform pos: 13.5,9.5 parent: 1 - - uid: 344 + - uid: 101 components: - type: Transform pos: 15.5,9.5 parent: 1 - - uid: 345 + - uid: 102 components: - type: Transform pos: 15.5,9.5 parent: 1 - - uid: 346 + - uid: 103 components: - type: Transform pos: 15.5,9.5 parent: 1 - - uid: 347 + - uid: 104 components: - type: Transform pos: 13.5,9.5 parent: 1 - - uid: 404 + - uid: 105 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 405 + - uid: 106 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 406 + - uid: 107 components: - type: Transform pos: 19.5,15.5 parent: 1 - - uid: 407 + - uid: 108 components: - type: Transform pos: 20.5,15.5 parent: 1 - - uid: 408 + - uid: 109 components: - type: Transform pos: 21.5,15.5 parent: 1 - - uid: 409 + - uid: 110 components: - type: Transform pos: 21.5,15.5 parent: 1 - - uid: 410 + - uid: 111 components: - type: Transform pos: 20.5,15.5 parent: 1 - - uid: 411 + - uid: 112 components: - type: Transform pos: 19.5,15.5 parent: 1 - proto: SalvageSpawnerScrapCommon entities: - - uid: 116 + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,20.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,20.5 + parent: 1 + - uid: 113 components: - type: Transform pos: 14.5,0.5 parent: 1 - - uid: 120 + - uid: 114 components: - type: Transform pos: 12.5,0.5 parent: 1 - - uid: 123 + - uid: 115 components: - type: Transform pos: 15.5,2.5 parent: 1 - - uid: 129 + - uid: 116 components: - type: Transform pos: 13.5,0.5 parent: 1 - - uid: 130 + - uid: 117 components: - type: Transform pos: 15.5,0.5 parent: 1 - - uid: 131 + - uid: 118 components: - type: Transform pos: 14.5,0.5 parent: 1 - - uid: 132 + - uid: 119 components: - type: Transform pos: 14.5,0.5 parent: 1 - - uid: 148 + - uid: 120 components: - type: Transform pos: 13.5,2.5 parent: 1 - - uid: 149 + - uid: 121 components: - type: Transform pos: 14.5,2.5 parent: 1 - - uid: 150 + - uid: 122 components: - type: Transform pos: 14.5,3.5 parent: 1 - - uid: 212 + - uid: 123 components: - type: Transform pos: 9.5,1.5 parent: 1 - - uid: 219 + - uid: 124 components: - type: Transform pos: 13.5,0.5 parent: 1 - - uid: 220 + - uid: 125 components: - type: Transform pos: 15.5,0.5 parent: 1 - - uid: 236 + - uid: 126 components: - type: Transform pos: 13.5,0.5 parent: 1 - - uid: 238 + - uid: 127 components: - type: Transform pos: 19.5,8.5 parent: 1 - - uid: 241 + - uid: 128 components: - type: Transform pos: 21.5,7.5 parent: 1 - - uid: 256 + - uid: 129 components: - type: Transform pos: 20.5,7.5 parent: 1 - - uid: 258 + - uid: 130 components: - type: Transform pos: 20.5,8.5 parent: 1 - - uid: 259 + - uid: 131 components: - type: Transform pos: 21.5,8.5 parent: 1 - - uid: 260 + - uid: 132 components: - type: Transform pos: 21.5,9.5 parent: 1 - - uid: 263 + - uid: 133 components: - type: Transform pos: 15.5,0.5 parent: 1 - - uid: 264 + - uid: 134 components: - type: Transform pos: 12.5,0.5 parent: 1 - - uid: 280 + - uid: 135 components: - type: Transform pos: 9.5,2.5 parent: 1 - - uid: 315 + - uid: 136 components: - type: Transform pos: 9.5,3.5 parent: 1 - - uid: 316 + - uid: 137 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 317 + - uid: 138 components: - type: Transform pos: 7.5,3.5 parent: 1 - - uid: 318 + - uid: 139 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 319 + - uid: 140 components: - type: Transform pos: 7.5,1.5 parent: 1 - - uid: 320 + - uid: 141 components: - type: Transform pos: 8.5,1.5 parent: 1 - - uid: 321 + - uid: 142 components: - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 322 + - uid: 143 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 323 + - uid: 144 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 324 + - uid: 145 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 325 + - uid: 146 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 326 + - uid: 147 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 351 + - uid: 148 components: - type: Transform pos: 13.5,9.5 parent: 1 - - uid: 352 + - uid: 149 components: - type: Transform pos: 14.5,9.5 parent: 1 - - uid: 353 + - uid: 150 components: - type: Transform pos: 15.5,9.5 parent: 1 - - uid: 363 + - uid: 151 components: - type: Transform pos: 2.5,9.5 parent: 1 - - uid: 364 + - uid: 152 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 365 + - uid: 153 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 366 + - uid: 154 components: - type: Transform pos: 13.5,15.5 parent: 1 - - uid: 367 + - uid: 155 components: - type: Transform pos: 14.5,15.5 parent: 1 - - uid: 368 + - uid: 156 components: - type: Transform pos: 15.5,15.5 parent: 1 - - uid: 369 + - uid: 157 components: - type: Transform pos: 15.5,14.5 parent: 1 - - uid: 370 + - uid: 158 components: - type: Transform pos: 15.5,13.5 parent: 1 - - uid: 371 + - uid: 159 components: - type: Transform pos: 14.5,13.5 parent: 1 - - uid: 372 + - uid: 160 components: - type: Transform pos: 13.5,13.5 parent: 1 - - uid: 373 + - uid: 161 components: - type: Transform pos: 13.5,14.5 parent: 1 - - uid: 374 + - uid: 162 components: - type: Transform pos: 13.5,15.5 parent: 1 - - uid: 375 + - uid: 163 components: - type: Transform pos: 14.5,15.5 parent: 1 - - uid: 376 + - uid: 164 components: - type: Transform pos: 15.5,15.5 parent: 1 - - uid: 377 + - uid: 165 components: - type: Transform pos: 15.5,14.5 parent: 1 - - uid: 378 + - uid: 166 components: - type: Transform pos: 15.5,13.5 parent: 1 - - uid: 379 + - uid: 167 components: - type: Transform pos: 14.5,13.5 parent: 1 - - uid: 380 + - uid: 168 components: - type: Transform pos: 13.5,13.5 parent: 1 - - uid: 381 + - uid: 169 components: - type: Transform pos: 13.5,14.5 parent: 1 - - uid: 417 + - uid: 170 components: - type: Transform pos: 19.5,14.5 parent: 1 - - uid: 418 + - uid: 171 components: - type: Transform pos: 19.5,15.5 parent: 1 - - uid: 419 + - uid: 172 components: - type: Transform pos: 20.5,14.5 parent: 1 - - uid: 420 + - uid: 173 components: - type: Transform pos: 20.5,15.5 parent: 1 - - uid: 421 + - uid: 174 components: - type: Transform pos: 21.5,14.5 parent: 1 - - uid: 422 + - uid: 175 components: - type: Transform pos: 21.5,15.5 parent: 1 - - uid: 423 + - uid: 176 components: - type: Transform pos: 20.5,13.5 parent: 1 + - uid: 424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,20.5 + parent: 1 + - uid: 438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,20.5 + parent: 1 + - uid: 465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,19.5 + parent: 1 + - uid: 468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,21.5 + parent: 1 + - uid: 473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,19.5 + parent: 1 - proto: SalvageSpawnerScrapCommon75 entities: - - uid: 398 + - uid: 177 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 399 + - uid: 178 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 400 + - uid: 179 components: - type: Transform pos: 2.5,15.5 parent: 1 - - uid: 401 + - uid: 180 components: - type: Transform pos: 3.5,15.5 parent: 1 - proto: SalvageSpawnerScrapValuable entities: - - uid: 25 + - uid: 181 components: - type: Transform pos: 21.5,8.5 parent: 1 - - uid: 118 + - uid: 182 components: - type: Transform pos: 20.5,7.5 parent: 1 - - uid: 119 + - uid: 183 components: - type: Transform pos: 21.5,7.5 parent: 1 - - uid: 171 + - uid: 184 components: - type: Transform pos: 9.5,3.5 parent: 1 - - uid: 208 + - uid: 185 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 209 + - uid: 186 components: - type: Transform pos: 7.5,3.5 parent: 1 - - uid: 235 + - uid: 187 components: - type: Transform pos: 19.5,8.5 parent: 1 - - uid: 240 + - uid: 188 components: - type: Transform pos: 20.5,8.5 parent: 1 - - uid: 389 + - uid: 189 components: - type: Transform pos: 8.5,9.5 parent: 1 - - uid: 390 + - uid: 190 components: - type: Transform pos: 8.5,8.5 parent: 1 - - uid: 414 + - uid: 191 components: - type: Transform pos: 19.5,14.5 parent: 1 - - uid: 415 + - uid: 192 components: - type: Transform pos: 20.5,14.5 parent: 1 - - uid: 416 + - uid: 193 components: - type: Transform pos: 21.5,14.5 parent: 1 + - uid: 478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,19.5 + parent: 1 - proto: SalvageSpawnerScrapValuable75 entities: - - uid: 121 + - uid: 42 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,20.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,20.5 + parent: 1 + - uid: 194 components: - type: Transform pos: 13.5,2.5 parent: 1 - - uid: 122 + - uid: 195 components: - type: Transform pos: 14.5,2.5 parent: 1 - - uid: 124 + - uid: 196 components: - type: Transform pos: 14.5,2.5 parent: 1 - - uid: 327 + - uid: 197 components: - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 328 + - uid: 198 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 329 + - uid: 199 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 330 + - uid: 200 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 331 + - uid: 201 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 332 + - uid: 202 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 333 + - uid: 203 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 334 + - uid: 204 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 335 + - uid: 205 components: - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 336 + - uid: 206 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 337 + - uid: 207 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 338 + - uid: 208 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 382 + - uid: 209 components: - type: Transform pos: 8.5,7.5 parent: 1 - - uid: 383 + - uid: 210 components: - type: Transform pos: 8.5,8.5 parent: 1 - - uid: 384 + - uid: 211 components: - type: Transform pos: 8.5,9.5 parent: 1 - - uid: 385 + - uid: 212 components: - type: Transform pos: 7.5,9.5 parent: 1 - - uid: 386 + - uid: 213 components: - type: Transform pos: 8.5,9.5 parent: 1 - - uid: 387 + - uid: 214 components: - type: Transform pos: 9.5,9.5 parent: 1 - - uid: 388 + - uid: 215 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 402 + - uid: 216 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 403 + - uid: 217 components: - type: Transform pos: 3.5,15.5 parent: 1 + - uid: 425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,20.5 + parent: 1 + - uid: 433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,19.5 + parent: 1 + - uid: 436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,19.5 + parent: 1 + - uid: 459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,21.5 + parent: 1 - proto: SalvageSpawnerTreasure entities: - - uid: 188 + - uid: 218 components: - type: Transform pos: 15.5,2.5 parent: 1 - - uid: 348 + - uid: 219 components: - type: Transform pos: 13.5,9.5 parent: 1 - - uid: 349 + - uid: 220 components: - type: Transform pos: 14.5,9.5 parent: 1 - - uid: 350 + - uid: 221 components: - type: Transform pos: 15.5,9.5 parent: 1 - - uid: 360 + - uid: 222 components: - type: Transform pos: 2.5,9.5 parent: 1 - - uid: 361 + - uid: 223 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 362 + - uid: 224 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 393 + - uid: 225 components: - type: Transform pos: 8.5,7.5 parent: 1 - - uid: 394 + - uid: 226 components: - type: Transform pos: 14.5,9.5 parent: 1 - proto: SalvageSpawnerTreasureValuable entities: - - uid: 189 + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,20.5 + parent: 1 + - uid: 227 components: - type: Transform pos: 14.5,3.5 parent: 1 - - uid: 190 + - uid: 228 components: - type: Transform pos: 14.5,3.5 parent: 1 - - uid: 237 + - uid: 229 components: - type: Transform pos: 19.5,7.5 parent: 1 - - uid: 242 + - uid: 230 components: - type: Transform pos: 20.5,8.5 parent: 1 - - uid: 304 + - uid: 231 components: - type: Transform pos: 19.5,7.5 parent: 1 - - uid: 339 + - uid: 232 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 340 + - uid: 233 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 341 + - uid: 234 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 354 + - uid: 235 components: - type: Transform pos: 2.5,9.5 parent: 1 - - uid: 355 + - uid: 236 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 356 + - uid: 237 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 357 + - uid: 238 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 358 + - uid: 239 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 359 + - uid: 240 components: - type: Transform pos: 2.5,9.5 parent: 1 - - uid: 391 + - uid: 241 components: - type: Transform pos: 8.5,8.5 parent: 1 - - uid: 392 + - uid: 242 components: - type: Transform pos: 8.5,9.5 parent: 1 - - uid: 395 + - uid: 243 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 396 + - uid: 244 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 397 + - uid: 245 components: - type: Transform pos: 1.5,13.5 parent: 1 + - uid: 474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,19.5 + parent: 1 - proto: ShuttersWindow entities: - - uid: 65 + - uid: 246 components: - type: Transform pos: 15.5,1.5 parent: 1 - proto: SignMaterials entities: - - uid: 136 + - uid: 247 components: - type: Transform pos: 14.5,1.5 parent: 1 - proto: SignRadiationMed entities: - - uid: 193 + - uid: 248 components: - type: Transform pos: 19.5,2.5 parent: 1 - - uid: 203 + - uid: 249 components: - type: Transform pos: 20.5,3.5 parent: 1 - - uid: 205 + - uid: 250 components: - type: Transform pos: 21.5,2.5 parent: 1 - - uid: 226 + - uid: 251 components: - type: Transform pos: 20.5,1.5 parent: 1 - proto: SignSecureMedRed entities: - - uid: 178 + - uid: 252 components: - type: Transform pos: 12.5,12.5 parent: 1 - - uid: 187 + - uid: 253 components: - type: Transform pos: 12.5,16.5 parent: 1 - - uid: 218 + - uid: 254 components: - type: Transform pos: 16.5,16.5 parent: 1 +- proto: TableStone + entities: + - uid: 466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,19.5 + parent: 1 + - uid: 467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,19.5 + parent: 1 - proto: TableWood entities: - - uid: 74 + - uid: 255 components: - type: Transform pos: 19.5,7.5 parent: 1 - proto: WallReinforced entities: - - uid: 28 + - uid: 38 + components: + - type: Transform + pos: 8.5,21.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 9.5,20.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 9.5,21.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 1.5,19.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 2.5,19.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 3.5,19.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 5.5,19.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 4.5,19.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 9.5,19.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 1.5,21.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 6.5,21.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 5.5,21.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 4.5,21.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 7.5,21.5 + parent: 1 + - uid: 256 components: - type: Transform pos: 7.5,14.5 parent: 1 - - uid: 29 + - uid: 257 components: - type: Transform pos: 8.5,12.5 parent: 1 - - uid: 39 + - uid: 258 components: - type: Transform pos: 10.5,4.5 parent: 1 - - uid: 40 + - uid: 259 components: - type: Transform pos: 10.5,2.5 parent: 1 - - uid: 41 + - uid: 260 components: - type: Transform pos: 8.5,0.5 parent: 1 - - uid: 42 + - uid: 261 components: - type: Transform pos: 7.5,0.5 parent: 1 - - uid: 43 + - uid: 262 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 44 + - uid: 263 components: - type: Transform pos: 6.5,3.5 parent: 1 - - uid: 46 + - uid: 264 components: - type: Transform pos: 21.5,0.5 parent: 1 - - uid: 50 + - uid: 265 components: - type: Transform pos: 19.5,0.5 parent: 1 - - uid: 51 + - uid: 266 components: - type: Transform pos: 18.5,0.5 parent: 1 - - uid: 52 + - uid: 267 components: - type: Transform pos: 22.5,0.5 parent: 1 - - uid: 53 + - uid: 268 components: - type: Transform pos: 19.5,4.5 parent: 1 - - uid: 55 + - uid: 269 components: - type: Transform pos: 22.5,3.5 parent: 1 - - uid: 56 + - uid: 270 components: - type: Transform pos: 22.5,4.5 parent: 1 - - uid: 57 + - uid: 271 components: - type: Transform pos: 22.5,1.5 parent: 1 - - uid: 58 + - uid: 272 components: - type: Transform pos: 21.5,4.5 parent: 1 - - uid: 59 + - uid: 273 components: - type: Transform pos: 18.5,3.5 parent: 1 - - uid: 60 + - uid: 274 components: - type: Transform pos: 18.5,4.5 parent: 1 - - uid: 63 + - uid: 275 components: - type: Transform pos: 18.5,1.5 parent: 1 - - uid: 67 + - uid: 276 components: - type: Transform pos: 18.5,14.5 parent: 1 - - uid: 70 + - uid: 277 components: - type: Transform pos: 8.5,15.5 parent: 1 - - uid: 73 + - uid: 278 components: - type: Transform pos: 0.5,12.5 parent: 1 - - uid: 77 + - uid: 279 components: - type: Transform pos: 10.5,12.5 parent: 1 - - uid: 79 + - uid: 280 components: - type: Transform pos: 10.5,16.5 parent: 1 - - uid: 80 + - uid: 281 components: - type: Transform pos: 6.5,16.5 parent: 1 - - uid: 92 + - uid: 282 components: - type: Transform pos: 4.5,16.5 parent: 1 - - uid: 96 + - uid: 283 components: - type: Transform pos: 6.5,14.5 parent: 1 - - uid: 114 + - uid: 284 components: - type: Transform pos: 8.5,16.5 parent: 1 - - uid: 115 + - uid: 285 components: - type: Transform pos: 6.5,12.5 parent: 1 - - uid: 117 + - uid: 286 components: - type: Transform pos: 9.5,14.5 parent: 1 - - uid: 137 + - uid: 287 components: - type: Transform pos: 16.5,8.5 parent: 1 - - uid: 138 + - uid: 288 components: - type: Transform pos: 16.5,7.5 parent: 1 - - uid: 152 + - uid: 289 components: - type: Transform pos: 16.5,10.5 parent: 1 - - uid: 153 + - uid: 290 components: - type: Transform pos: 13.5,10.5 parent: 1 - - uid: 154 + - uid: 291 components: - type: Transform pos: 14.5,10.5 parent: 1 - - uid: 156 + - uid: 292 components: - type: Transform pos: 15.5,8.5 parent: 1 - - uid: 174 + - uid: 293 components: - type: Transform pos: 16.5,16.5 parent: 1 - - uid: 192 + - uid: 294 components: - type: Transform pos: 12.5,7.5 parent: 1 - - uid: 223 + - uid: 295 components: - type: Transform pos: 12.5,8.5 parent: 1 - - uid: 224 + - uid: 296 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: 12.5,16.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 12.5,12.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 7.5,15.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 20.5,16.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: 7.5,13.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 22.5,14.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 22.5,16.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 21.5,12.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: 18.5,13.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 19.5,12.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 22.5,13.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: 18.5,15.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1 + - uid: 426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,18.5 + parent: 1 + - uid: 428 components: - type: Transform - pos: 12.5,6.5 + rot: -1.5707963267948966 rad + pos: 12.5,20.5 parent: 1 - - uid: 229 + - uid: 429 components: - type: Transform - pos: 12.5,16.5 + rot: -1.5707963267948966 rad + pos: 13.5,18.5 parent: 1 - - uid: 230 + - uid: 430 components: - type: Transform - pos: 12.5,12.5 + rot: -1.5707963267948966 rad + pos: 19.5,18.5 parent: 1 - - uid: 243 + - uid: 431 components: - type: Transform - pos: 9.5,15.5 + rot: -1.5707963267948966 rad + pos: 13.5,20.5 parent: 1 - - uid: 244 + - uid: 432 components: - type: Transform - pos: 7.5,15.5 + rot: -1.5707963267948966 rad + pos: 14.5,18.5 parent: 1 - - uid: 250 + - uid: 434 components: - type: Transform - pos: 20.5,16.5 + rot: -1.5707963267948966 rad + pos: 14.5,20.5 parent: 1 - - uid: 251 + - uid: 435 components: - type: Transform - pos: 21.5,16.5 + rot: -1.5707963267948966 rad + pos: 15.5,18.5 parent: 1 - - uid: 252 + - uid: 437 components: - type: Transform - pos: 10.5,14.5 + rot: -1.5707963267948966 rad + pos: 15.5,20.5 parent: 1 - - uid: 253 + - uid: 439 components: - type: Transform - pos: 9.5,13.5 + rot: -1.5707963267948966 rad + pos: 16.5,20.5 parent: 1 - - uid: 254 + - uid: 440 components: - type: Transform - pos: 7.5,13.5 + rot: -1.5707963267948966 rad + pos: 16.5,18.5 parent: 1 - - uid: 267 + - uid: 443 components: - type: Transform - pos: 8.5,13.5 + rot: -1.5707963267948966 rad + pos: 22.5,22.5 parent: 1 - - uid: 268 + - uid: 446 components: - type: Transform - pos: 22.5,14.5 + rot: -1.5707963267948966 rad + pos: 21.5,22.5 parent: 1 - - uid: 269 + - uid: 447 components: - type: Transform - pos: 22.5,16.5 + rot: -1.5707963267948966 rad + pos: 18.5,20.5 parent: 1 - - uid: 270 + - uid: 449 components: - type: Transform - pos: 21.5,12.5 + rot: -1.5707963267948966 rad + pos: 20.5,22.5 parent: 1 - - uid: 275 + - uid: 450 components: - type: Transform - pos: 18.5,13.5 + rot: -1.5707963267948966 rad + pos: 22.5,18.5 parent: 1 - - uid: 276 + - uid: 452 components: - type: Transform - pos: 19.5,12.5 + rot: -1.5707963267948966 rad + pos: 19.5,22.5 parent: 1 - - uid: 278 + - uid: 455 components: - type: Transform - pos: 22.5,13.5 + rot: -1.5707963267948966 rad + pos: 18.5,22.5 parent: 1 - - uid: 279 + - uid: 456 components: - type: Transform - pos: 18.5,15.5 + rot: -1.5707963267948966 rad + pos: 18.5,18.5 parent: 1 - - uid: 292 + - uid: 457 components: - type: Transform - pos: 3.5,14.5 + rot: -1.5707963267948966 rad + pos: 18.5,19.5 parent: 1 - - uid: 293 + - uid: 458 components: - type: Transform - pos: 4.5,14.5 + rot: -1.5707963267948966 rad + pos: 17.5,18.5 parent: 1 - - uid: 294 + - uid: 460 components: - type: Transform - pos: 1.5,12.5 + rot: -1.5707963267948966 rad + pos: 21.5,18.5 parent: 1 - - uid: 296 + - uid: 461 components: - type: Transform - pos: 1.5,14.5 + rot: -1.5707963267948966 rad + pos: 20.5,18.5 parent: 1 - - uid: 309 + - uid: 462 components: - type: Transform - pos: 2.5,12.5 + rot: -1.5707963267948966 rad + pos: 17.5,22.5 parent: 1 - - uid: 310 + - uid: 463 components: - type: Transform - pos: 4.5,15.5 + rot: -1.5707963267948966 rad + pos: 16.5,21.5 parent: 1 - - uid: 311 + - uid: 464 components: - type: Transform - pos: 1.5,16.5 + rot: -1.5707963267948966 rad + pos: 16.5,22.5 parent: 1 - proto: WallReinforcedRust entities: - - uid: 32 + - uid: 321 components: - type: Transform pos: 6.5,1.5 parent: 1 - - uid: 33 + - uid: 322 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 34 + - uid: 323 components: - type: Transform pos: 10.5,3.5 parent: 1 - - uid: 35 + - uid: 324 components: - type: Transform pos: 9.5,0.5 parent: 1 - - uid: 36 + - uid: 325 components: - type: Transform pos: 10.5,0.5 parent: 1 - - uid: 37 + - uid: 326 components: - type: Transform pos: 10.5,1.5 parent: 1 - - uid: 38 + - uid: 327 components: - type: Transform pos: 6.5,4.5 parent: 1 - - uid: 45 + - uid: 328 components: - type: Transform pos: 19.5,3.5 parent: 1 - - uid: 47 + - uid: 329 components: - type: Transform pos: 20.5,3.5 parent: 1 - - uid: 48 + - uid: 330 components: - type: Transform pos: 19.5,2.5 parent: 1 - - uid: 49 + - uid: 331 components: - type: Transform pos: 21.5,3.5 parent: 1 - - uid: 54 + - uid: 332 components: - type: Transform pos: 21.5,1.5 parent: 1 - - uid: 61 + - uid: 333 components: - type: Transform pos: 19.5,1.5 parent: 1 - - uid: 62 + - uid: 334 components: - type: Transform pos: 20.5,1.5 parent: 1 - - uid: 64 + - uid: 335 components: - type: Transform pos: 21.5,2.5 parent: 1 - - uid: 68 + - uid: 336 components: - type: Transform pos: 19.5,16.5 parent: 1 - - uid: 69 + - uid: 337 components: - type: Transform pos: 19.5,13.5 parent: 1 - - uid: 91 + - uid: 338 components: - type: Transform pos: 0.5,14.5 parent: 1 - - uid: 95 + - uid: 339 components: - type: Transform pos: 18.5,16.5 parent: 1 - - uid: 157 + - uid: 340 components: - type: Transform pos: 13.5,8.5 parent: 1 - - uid: 158 + - uid: 341 components: - type: Transform pos: 12.5,9.5 parent: 1 - - uid: 194 + - uid: 342 components: - type: Transform pos: 12.5,10.5 parent: 1 - - uid: 195 + - uid: 343 components: - type: Transform pos: 16.5,9.5 parent: 1 - - uid: 196 + - uid: 344 components: - type: Transform pos: 15.5,10.5 parent: 1 - - uid: 206 + - uid: 345 components: - type: Transform pos: 16.5,6.5 parent: 1 - - uid: 245 + - uid: 346 components: - type: Transform pos: 21.5,13.5 parent: 1 - - uid: 277 + - uid: 347 components: - type: Transform pos: 22.5,15.5 parent: 1 - - uid: 290 + - uid: 348 components: - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 291 + - uid: 349 components: - type: Transform pos: 2.5,16.5 parent: 1 - - uid: 297 + - uid: 350 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 307 + - uid: 351 components: - type: Transform pos: 3.5,13.5 parent: 1 - - uid: 308 + - uid: 352 components: - type: Transform pos: 0.5,13.5 parent: 1 - proto: WallSolid entities: - - uid: 14 + - uid: 353 components: - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 15 + - uid: 354 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 17 + - uid: 355 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 18 + - uid: 356 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 19 + - uid: 357 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 23 + - uid: 358 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 26 + - uid: 359 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 27 + - uid: 360 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 31 + - uid: 361 components: - type: Transform pos: 21.5,6.5 parent: 1 - - uid: 66 + - uid: 362 components: - type: Transform pos: 20.5,10.5 parent: 1 - - uid: 72 + - uid: 363 components: - type: Transform pos: 22.5,8.5 parent: 1 - - uid: 93 + - uid: 364 components: - type: Transform pos: 18.5,7.5 parent: 1 - - uid: 94 + - uid: 365 components: - type: Transform pos: 18.5,6.5 parent: 1 - - uid: 97 + - uid: 366 components: - type: Transform pos: 22.5,9.5 parent: 1 - - uid: 98 + - uid: 367 components: - type: Transform pos: 21.5,10.5 parent: 1 - - uid: 101 + - uid: 368 components: - type: Transform pos: 12.5,1.5 parent: 1 - - uid: 104 + - uid: 369 components: - type: Transform pos: 12.5,4.5 parent: 1 - - uid: 105 + - uid: 370 components: - type: Transform pos: 13.5,4.5 parent: 1 - - uid: 108 + - uid: 371 components: - type: Transform pos: 16.5,4.5 parent: 1 - - uid: 110 + - uid: 372 components: - type: Transform pos: 16.5,2.5 parent: 1 - - uid: 111 + - uid: 373 components: - type: Transform pos: 16.5,1.5 parent: 1 - - uid: 134 + - uid: 374 components: - type: Transform pos: 6.5,9.5 parent: 1 - - uid: 135 + - uid: 375 components: - type: Transform pos: 6.5,8.5 parent: 1 - - uid: 151 + - uid: 376 components: - type: Transform pos: 7.5,8.5 parent: 1 - - uid: 155 + - uid: 377 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 159 + - uid: 378 components: - type: Transform pos: 9.5,7.5 parent: 1 - - uid: 160 + - uid: 379 components: - type: Transform pos: 10.5,8.5 parent: 1 - - uid: 161 + - uid: 380 components: - type: Transform pos: 9.5,10.5 parent: 1 - - uid: 162 + - uid: 381 components: - type: Transform pos: 8.5,10.5 parent: 1 - - uid: 165 + - uid: 382 components: - type: Transform pos: 2.5,10.5 parent: 1 - - uid: 168 + - uid: 383 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 173 + - uid: 384 components: - type: Transform pos: 1.5,1.5 parent: 1 - - uid: 179 + - uid: 385 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 180 + - uid: 386 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 181 + - uid: 387 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 197 + - uid: 388 components: - type: Transform pos: 3.5,10.5 parent: 1 - - uid: 200 + - uid: 389 components: - type: Transform pos: 2.5,6.5 parent: 1 - - uid: 247 + - uid: 390 components: - type: Transform pos: 18.5,9.5 parent: 1 - proto: WallSolidRust entities: - - uid: 12 + - uid: 391 components: - type: Transform pos: 3.5,1.5 parent: 1 - - uid: 13 + - uid: 392 components: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 16 + - uid: 393 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 20 + - uid: 394 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 21 + - uid: 395 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 22 + - uid: 396 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 24 + - uid: 397 components: - type: Transform pos: 0.5,1.5 parent: 1 - - uid: 102 + - uid: 398 components: - type: Transform pos: 12.5,3.5 parent: 1 - - uid: 103 + - uid: 399 components: - type: Transform pos: 12.5,2.5 parent: 1 - - uid: 106 + - uid: 400 components: - type: Transform pos: 15.5,4.5 parent: 1 - - uid: 107 + - uid: 401 components: - type: Transform pos: 14.5,4.5 parent: 1 - - uid: 109 + - uid: 402 components: - type: Transform pos: 16.5,3.5 parent: 1 - - uid: 112 + - uid: 403 components: - type: Transform pos: 14.5,1.5 parent: 1 - - uid: 125 + - uid: 404 components: - type: Transform pos: 9.5,6.5 parent: 1 - - uid: 126 + - uid: 405 components: - type: Transform pos: 9.5,8.5 parent: 1 - - uid: 127 + - uid: 406 components: - type: Transform pos: 7.5,10.5 parent: 1 - - uid: 128 + - uid: 407 components: - type: Transform pos: 3.5,9.5 parent: 1 - - uid: 139 + - uid: 408 components: - type: Transform pos: 10.5,9.5 parent: 1 - - uid: 140 + - uid: 409 components: - type: Transform pos: 6.5,10.5 parent: 1 - - uid: 141 + - uid: 410 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 142 + - uid: 411 components: - type: Transform pos: 7.5,7.5 parent: 1 - - uid: 163 + - uid: 412 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 201 + - uid: 413 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 202 + - uid: 414 components: - type: Transform pos: 10.5,10.5 parent: 1 - - uid: 227 + - uid: 415 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 228 + - uid: 416 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 246 + - uid: 417 components: - type: Transform pos: 18.5,10.5 parent: 1 - - uid: 248 + - uid: 418 components: - type: Transform pos: 19.5,10.5 parent: 1 - - uid: 249 + - uid: 419 components: - type: Transform pos: 18.5,8.5 parent: 1 - - uid: 271 + - uid: 420 components: - type: Transform pos: 22.5,6.5 parent: 1 - - uid: 272 + - uid: 421 components: - type: Transform pos: 19.5,6.5 parent: 1 - - uid: 273 + - uid: 422 components: - type: Transform pos: 22.5,10.5 parent: 1 - - uid: 274 + - uid: 423 components: - type: Transform pos: 22.5,7.5 diff --git a/Resources/Maps/Misc/terminal.yml b/Resources/Maps/Misc/terminal.yml index 8ca17b4ebcf..2d57537f2e0 100644 --- a/Resources/Maps/Misc/terminal.yml +++ b/Resources/Maps/Misc/terminal.yml @@ -22,7 +22,7 @@ entities: - type: MetaData name: NT-EM Terminal - type: Transform - parent: invalid + parent: 916 - type: MapGrid chunks: -1,-1: @@ -788,130 +788,113 @@ entities: version: 2 data: tiles: - -1,-1: - 0: 65535 - 0,0: - 0: 65535 - 0,-1: - 0: 65535 - -1,0: - 0: 65535 -4,-3: - 0: 53247 + 0: 35064 -4,-4: - 0: 61166 - -4,-2: - 0: 60620 + 0: 52428 -4,-1: - 0: 61166 + 0: 52428 + -4,-2: + 0: 2184 + -4,0: + 0: 35020 + -4,-5: + 0: 36744 -3,-4: 0: 65535 -3,-3: 0: 65535 -3,-2: - 0: 65535 + 0: 32767 -3,-1: 0: 65535 + -3,-5: + 0: 65535 + -3,0: + 0: 65535 -2,-4: - 0: 13107 + 0: 4369 -2,-3: - 0: 6007 - -2,-2: - 0: 61713 + 0: 112 -2,-1: - 0: 65535 - -1,-2: - 0: 61440 + 0: 65297 + -2,0: + 0: 2271 + 1: 8192 + -1,-1: + 0: 65280 + -1,0: + 0: 61439 + 0,-1: + 0: 65280 + 0,0: + 0: 49151 0,1: - 0: 4095 - 1: 61440 + 0: 63675 + -1,1: + 0: 61678 + 0,2: + 0: 15 + 1: 3840 + -1,2: + 0: 15 + 1: 3840 1,0: - 0: 65535 + 0: 35039 + 1: 8192 + 1,2: + 0: 1 + 1: 802 + 1,-1: + 0: 65484 1,1: - 0: 959 - 1: 12288 + 1: 8738 2,0: 0: 65535 2,1: - 0: 255 + 0: 7 + 2,-1: + 0: 65535 3,0: - 0: 4915 - 3,1: - 0: 1 - 0,-2: - 0: 61440 + 0: 17 + 3,-1: + 0: 4369 1,-3: - 0: 53247 - 1,-2: - 0: 64716 - 1,-1: - 0: 65535 + 0: 35064 1,-4: - 0: 61166 + 0: 52428 + 1,-2: + 0: 2184 + 1,-5: + 0: 36744 2,-4: 0: 65535 2,-3: 0: 65535 2,-2: - 0: 65535 - 2,-1: + 0: 32767 + 2,-5: 0: 65535 3,-4: - 0: 13107 + 0: 4369 3,-3: - 0: 6007 - 3,-2: - 0: 12561 - 3,-1: - 0: 13107 - -4,0: - 0: 52974 - -4,1: - 0: 140 - -3,0: - 0: 65535 + 0: 112 -3,1: - 0: 255 - -2,0: - 0: 65535 + 0: 7 -2,1: - 0: 3823 - 1: 57344 - -1,1: - 0: 4095 - 1: 61440 - 1,-5: - 0: 65532 - 1,-6: - 0: 51200 + 1: 8738 + 0: 34952 + -2,2: + 1: 3618 + 0: 8 2,-6: - 0: 65280 - 2,-5: - 0: 65535 - 3,-6: - 0: 4096 + 0: 28672 3,-5: - 0: 30577 - -4,-5: - 0: 65532 - -4,-6: - 0: 51200 + 0: 1792 -3,-6: - 0: 65280 - -3,-5: - 0: 65535 - -2,-6: - 0: 4096 + 0: 28672 -2,-5: - 0: 30577 - 0,2: - 1: 4095 - 1,2: - 1: 819 - -2,2: - 1: 3822 - -1,2: - 1: 4095 + 0: 1792 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -928,8 +911,16 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 - temperature: 293.15 + immutable: True moles: - 0 - 0 @@ -943,12 +934,32 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - type: SpreaderGrid - type: GridPathfinding - type: Godmode + - uid: 916 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree - proto: AirlockExternalGlass entities: - uid: 2 @@ -4297,12 +4308,9 @@ entities: - uid: 18 components: - type: Transform - anchored: True rot: 3.141592653589793 rad pos: 9.5,3.5 parent: 818 - - type: Physics - bodyType: Static - type: Godmode missingComponents: - Construction @@ -4313,11 +4321,8 @@ entities: - uid: 577 components: - type: Transform - anchored: True pos: 10.5,1.5 parent: 818 - - type: Physics - bodyType: Static - type: Godmode missingComponents: - Construction @@ -4326,12 +4331,9 @@ entities: - uid: 591 components: - type: Transform - anchored: True rot: 1.5707963267948966 rad pos: 8.5,0.5 parent: 818 - - type: Physics - bodyType: Static - type: Godmode missingComponents: - Construction @@ -4340,11 +4342,8 @@ entities: - uid: 703 components: - type: Transform - anchored: True pos: 9.5,1.5 parent: 818 - - type: Physics - bodyType: Static - type: Godmode missingComponents: - Construction @@ -4353,12 +4352,9 @@ entities: - uid: 704 components: - type: Transform - anchored: True rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 818 - - type: Physics - bodyType: Static - type: Godmode missingComponents: - Construction @@ -8057,12 +8053,9 @@ entities: - uid: 119 components: - type: Transform - anchored: True rot: 3.141592653589793 rad pos: -11.5,-20.5 parent: 818 - - type: Physics - bodyType: Static - type: Godmode missingComponents: - Construction @@ -8071,12 +8064,9 @@ entities: - uid: 639 components: - type: Transform - anchored: True rot: 3.141592653589793 rad pos: -9.5,-20.5 parent: 818 - - type: Physics - bodyType: Static - type: Godmode missingComponents: - Construction @@ -8085,12 +8075,9 @@ entities: - uid: 730 components: - type: Transform - anchored: True rot: 3.141592653589793 rad pos: 8.5,-20.5 parent: 818 - - type: Physics - bodyType: Static - type: Godmode missingComponents: - Construction @@ -8099,12 +8086,9 @@ entities: - uid: 737 components: - type: Transform - anchored: True rot: 3.141592653589793 rad pos: 10.5,-20.5 parent: 818 - - type: Physics - bodyType: Static - type: Godmode missingComponents: - Construction @@ -8113,12 +8097,9 @@ entities: - uid: 738 components: - type: Transform - anchored: True rot: -1.5707963267948966 rad pos: -12.5,-0.5 parent: 818 - - type: Physics - bodyType: Static - type: Godmode missingComponents: - Construction @@ -8127,12 +8108,9 @@ entities: - uid: 740 components: - type: Transform - anchored: True rot: -1.5707963267948966 rad pos: -12.5,0.5 parent: 818 - - type: Physics - bodyType: Static - type: Godmode missingComponents: - Construction @@ -8141,12 +8119,9 @@ entities: - uid: 761 components: - type: Transform - anchored: True rot: -1.5707963267948966 rad pos: -12.5,-1.5 parent: 818 - - type: Physics - bodyType: Static - type: Godmode missingComponents: - Construction @@ -8155,12 +8130,9 @@ entities: - uid: 914 components: - type: Transform - anchored: True rot: -1.5707963267948966 rad pos: -12.5,-2.5 parent: 818 - - type: Physics - bodyType: Static - type: Godmode missingComponents: - Construction diff --git a/Resources/Maps/Shuttles/emergency_relic.yml b/Resources/Maps/Shuttles/emergency_relic.yml index c724cbc514a..288c6ccf5f1 100644 --- a/Resources/Maps/Shuttles/emergency_relic.yml +++ b/Resources/Maps/Shuttles/emergency_relic.yml @@ -16,26 +16,11 @@ tilemap: entities: - proto: "" entities: - - uid: 1 - components: - - type: MetaData - name: Map Entity - - type: Transform - - type: Map - mapPaused: True - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - uid: 2 components: - type: MetaData name: grid - type: Transform - pos: -7.6484375,2.8046875 - parent: 1 - type: MapGrid chunks: 0,0: diff --git a/Resources/Maps/centcomm.yml b/Resources/Maps/centcomm.yml index 88df424d9a8..32900b9cf07 100644 --- a/Resources/Maps/centcomm.yml +++ b/Resources/Maps/centcomm.yml @@ -4,20 +4,35 @@ meta: tilemap: 0: Space 7: FloorAsteroidSand + 3: FloorAstroAsteroidSand + 15: FloorAstroGrass 14: FloorBar 17: FloorBlueCircuit 29: FloorDark 38: FloorDarkPlastic + 18: FloorEighties + 4: FloorFreezer + 6: FloorGlass + 16: FloorGold 47: FloorGrass 54: FloorGreenCircuit + 2: FloorHydro 60: FloorKitchen 61: FloorLaundry 62: FloorLino + 1: FloorMowedAstroGrass + 11: FloorRedCircuit 77: FloorReinforced + 9: FloorReinforcedHardened 89: FloorSteel + 5: FloorSteelCheckerDark + 12: FloorSteelCheckerLight + 13: FloorSteelLime 104: FloorTechMaint + 10: FloorTechMaint2 108: FloorWhite 118: FloorWood + 8: FloorWoodTile 120: Lattice 121: Plating entities: @@ -33,123 +48,155 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABeQAAAAAABwAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAAAeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABHQAAAAADHQAAAAACHQAAAAABWQAAAAAAWQAAAAACeQAAAAAAHQAAAAADdgAAAAADPgAAAAAAPgAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAABdgAAAAADPgAAAAAAPgAAAAAA + tiles: eQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACWQAAAAACWQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAABWQAAAAAAWQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAHQAAAAACWQAAAAADWQAAAAACCwAAAAAACwAAAAAAHQAAAAADEQAAAAAAEQAAAAAAHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADHQAAAAABHQAAAAADWQAAAAABWQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAHQAAAAABWQAAAAAAWQAAAAADNgAAAAAANgAAAAAAHQAAAAADEQAAAAAAEQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAABdgAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABHQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAHQAAAAADdgAAAAABPgAAAAAAPgAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADHQAAAAADWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAADdgAAAAAAPgAAAAAAPgAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: WQAAAAABWQAAAAADHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAABwAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAALwAAAAAAeQAAAAAAHQAAAAAAeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAbAAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACbAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAALwAAAAAAeQAAAAAAbAAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACbAAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACeQAAAAAALwAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAbAAAAAADeQAAAAAAPgAAAAAAdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAPgAAAAAAdgAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABHQAAAAAAHQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAPgAAAAAAdgAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAC + tiles: WQAAAAAAHQAAAAADAQAAAAAAHQAAAAACAgAAAAAAAgAAAAAAHQAAAAABHQAAAAABAgAAAAAAAgAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAABWQAAAAADHQAAAAADAQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAADAgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAbAAAAAADbAAAAAAAWQAAAAABWQAAAAABWQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAADbAAAAAACWQAAAAAAHQAAAAADbAAAAAADbAAAAAAAWQAAAAABWQAAAAABWQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAACbAAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACWQAAAAACHQAAAAABbAAAAAADbAAAAAADWQAAAAADWQAAAAACWQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACWQAAAAAAHQAAAAABbAAAAAAAbAAAAAAAWQAAAAACWQAAAAABWQAAAAACHQAAAAABeQAAAAAAHQAAAAADHQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAABbAAAAAABbAAAAAABbAAAAAABbAAAAAABbAAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAACHQAAAAAAdgAAAAACHQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABPgAAAAAAdgAAAAACHQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAADHQAAAAACHQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACPgAAAAAAdgAAAAACHQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAABHQAAAAAAHQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAD version: 6 -1,0: ind: -1,0 - tiles: WQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAHQAAAAADHQAAAAAAHQAAAAADWQAAAAAAWQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADLwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACeQAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADPgAAAAAAHQAAAAACeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADPgAAAAAAHQAAAAABeQAAAAAAHQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADPgAAAAAAHQAAAAADeQAAAAAAHQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACHQAAAAABHQAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADHQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABHQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAC + tiles: WQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADHQAAAAACWQAAAAACWQAAAAABWQAAAAAAHQAAAAACHQAAAAAAdgAAAAABdgAAAAAAdgAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADPgAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADPgAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABPgAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAADAQAAAAAAHQAAAAABWQAAAAADWQAAAAACHQAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAADAQAAAAAAHQAAAAABWQAAAAAAWQAAAAABPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAADeQAAAAAAHQAAAAADWQAAAAABWQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACAQAAAAAAHQAAAAAAWQAAAAADWQAAAAABPgAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAABAQAAAAAAHQAAAAAAWQAAAAADWQAAAAABHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABCgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAA version: 6 0,0: ind: 0,0 - tiles: HQAAAAABHQAAAAADHQAAAAACHQAAAAADWQAAAAACWQAAAAACHQAAAAABHQAAAAABHQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAALwAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAHQAAAAACHQAAAAAAHQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAHQAAAAABWQAAAAADWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABHQAAAAAAHQAAAAAAHQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABHQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAA + tiles: dgAAAAABdgAAAAACHQAAAAADHQAAAAAAWQAAAAACWQAAAAADWQAAAAAAHQAAAAAAHQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAHQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABWQAAAAACHQAAAAADeQAAAAAAAwAAAAAAAwAAAAAJAwAAAAAAAwAAAAALAwAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAACWQAAAAABHQAAAAABeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAABHQAAAAABWQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAACWQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAADWQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAC version: 6 1,-1: ind: 1,-1 - tiles: aAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAACeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAALwAAAAAALwAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAABwAAAAAAeQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAHQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAB + tiles: HQAAAAACHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABWQAAAAAAWQAAAAACWQAAAAADbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABWQAAAAADWQAAAAABWQAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADWQAAAAADWQAAAAADWQAAAAADbAAAAAADbAAAAAACbAAAAAABbAAAAAADbAAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABWQAAAAACWQAAAAADWQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAADbAAAAAACbAAAAAADHQAAAAACHQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABbAAAAAAAWQAAAAACeQAAAAAAHQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACHQAAAAACeQAAAAAAHQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADHQAAAAADHQAAAAACHQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADHQAAAAAAHQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAC version: 6 1,0: ind: 1,0 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAHQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAABwAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAABwAAAAAABwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADHQAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAADHQAAAAACdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAAAdgAAAAAA - version: 6 - 0,-2: - ind: 0,-2 - tiles: AAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAHQAAAAAAHQAAAAABdgAAAAAAHQAAAAADHQAAAAACHQAAAAAADgAAAAABDgAAAAACDgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAdgAAAAABHQAAAAABHQAAAAACHQAAAAADDgAAAAAADgAAAAABHQAAAAAAHQAAAAABdgAAAAAAdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAADgAAAAACDgAAAAACDgAAAAADDgAAAAABDgAAAAABDgAAAAADHQAAAAAAHQAAAAACdgAAAAAAdgAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAADgAAAAADDgAAAAAAHQAAAAABHQAAAAAAHQAAAAAADgAAAAADHQAAAAACHQAAAAAAdgAAAAABdgAAAAABHQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABDgAAAAAADgAAAAACHQAAAAAAHQAAAAAAHQAAAAAADgAAAAADHQAAAAADHQAAAAAAdgAAAAACdgAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAdgAAAAADdgAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACHQAAAAABeQAAAAAAHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABHQAAAAACeQAAAAAAHQAAAAABeQAAAAAALwAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAACHQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAWQAAAAACWQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAWQAAAAACWQAAAAABeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAA - version: 6 - 1,-2: - ind: 1,-2 - tiles: HQAAAAADHQAAAAABJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAADHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAaAAAAAAAaAAAAAAAJgAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAJgAAAAADHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAJgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAATQAAAAAANgAAAAAANgAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAATQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACHQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAHQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAACWQAAAAADWQAAAAAB - version: 6 - -1,-2: - ind: -1,-2 - tiles: eQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAAAHQAAAAADHQAAAAACHQAAAAAAdgAAAAADdgAAAAABeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAADHQAAAAABHQAAAAABHQAAAAABdgAAAAAAdgAAAAADeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACPAAAAAAAPAAAAAAAHQAAAAACDgAAAAADDgAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAAADgAAAAABDgAAAAABHQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABPAAAAAAAPAAAAAAAHQAAAAABDgAAAAADDgAAAAADHQAAAAAAHQAAAAAAHQAAAAAADgAAAAACDgAAAAACDgAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADPAAAAAAAPAAAAAAAHQAAAAADDgAAAAADDgAAAAADHQAAAAACHQAAAAABHQAAAAABDgAAAAAADgAAAAADDgAAAAABHQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAWQAAAAADWQAAAAADHQAAAAAAHQAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA + tiles: WQAAAAACHQAAAAADHQAAAAABHQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADHQAAAAACeQAAAAAAHQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAACdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAABdgAAAAACHQAAAAADHQAAAAADHQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAABWQAAAAACWQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAD version: 6 2,0: ind: 2,0 - tiles: WQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAdgAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAdgAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAADeQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAHQAAAAADTQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABHQAAAAACTQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAHQAAAAABTQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADHQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAACTQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: WQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HQAAAAABHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADTQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAHQAAAAACTQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABHQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAHQAAAAACTQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAHQAAAAACTQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - -1,1: - ind: -1,1 - tiles: HQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAABAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + 1,-2: + ind: 1,-2 + tiles: bAAAAAABbAAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAABbAAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAACbAAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACWQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADBgAAAAAABgAAAAABBgAAAAAAHQAAAAADHQAAAAADWQAAAAADHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAABBgAAAAAABgAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAADHQAAAAABBgAAAAABBgAAAAACBgAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAABAAAAAAABAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAABgAAAAABBgAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAABAAAAAAABAAAAAAAeQAAAAAAdgAAAAADdgAAAAACHQAAAAABBgAAAAAABgAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAABAAAAAAABAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADHQAAAAABBgAAAAACBgAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADHQAAAAAABgAAAAAABgAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAADBgAAAAADBgAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAABBQAAAAACBQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAABgAAAAAABgAAAAADBgAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABeQAAAAAABQAAAAACBQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAABBgAAAAADBgAAAAABBgAAAAADBgAAAAABBgAAAAADBgAAAAABHQAAAAADBQAAAAACBQAAAAABeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAAABgAAAAACBgAAAAABBgAAAAACHQAAAAAAHQAAAAAC version: 6 - 0,1: - ind: 0,1 - tiles: WQAAAAABWQAAAAAAWQAAAAACeQAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAABwAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAAAHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAWQAAAAADWQAAAAADWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAABTQAAAAAA + 0,-2: + ind: 0,-2 + tiles: HQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAABHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAACHQAAAAAAHQAAAAADWQAAAAADWQAAAAABeQAAAAAAWQAAAAADHQAAAAACeQAAAAAAHQAAAAABeQAAAAAAAQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABHQAAAAADHQAAAAADAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACeQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAWQAAAAADHQAAAAABAQAAAAAAHQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAADeQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAWQAAAAABHQAAAAADAQAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAAgAAAAAAHQAAAAABeQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAWQAAAAACHQAAAAABAQAAAAAAHQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAHQAAAAADHQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAACHQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAADBQAAAAACBQAAAAACBQAAAAADHQAAAAABWQAAAAAAHQAAAAADHQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAABBQAAAAAABQAAAAAABQAAAAADBQAAAAACWQAAAAABHQAAAAABHQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAACHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAACBQAAAAABBQAAAAADBQAAAAADBQAAAAADWQAAAAADHQAAAAADAQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAABeQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: eQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACDAAAAAABDAAAAAADDAAAAAACDAAAAAABeQAAAAAAAQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAADWQAAAAABHQAAAAADHQAAAAABDAAAAAAADAAAAAAADAAAAAADDAAAAAABeQAAAAAAAQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAHQAAAAACWQAAAAACWQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAHQAAAAACWQAAAAAAWQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAHQAAAAADWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAeQAAAAAANgAAAAAANgAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAHQAAAAACWQAAAAADWQAAAAABeQAAAAAAPAAAAAAAPAAAAAAAeQAAAAAANgAAAAAANgAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAAC version: 6 2,-2: ind: 2,-2 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAANgAAAAAANgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAAACAAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAADdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAABCAAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 - tiles: HQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAACaAAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAADdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAaAAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADeQAAAAAAHQAAAAADdgAAAAADdgAAAAAAHQAAAAACHQAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAABWQAAAAAAHQAAAAADHQAAAAACHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAABdgAAAAADHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAdgAAAAABdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAABdgAAAAABdgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdgAAAAAATQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAADdgAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAABdgAAAAACdgAAAAADdgAAAAABdgAAAAADTQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAdgAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAdgAAAAABTQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAAATQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAADTQAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAACTQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAABTQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - -2,1: - ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 2,1: + ind: 2,1 + tiles: HQAAAAABHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - -2,0: - ind: -2,0 - tiles: WQAAAAACWQAAAAAAWQAAAAAAHQAAAAADHQAAAAABHQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADeQAAAAAALwAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAdgAAAAACdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABdgAAAAADdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABdgAAAAADdgAAAAADdgAAAAABdgAAAAABdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAA + 0,1: + ind: 0,1 + tiles: WQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAACTQAAAAAATQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 - -1,2: - ind: -1,2 - tiles: AAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -1,1: + ind: -1,1 + tiles: CgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADCgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADCgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAABDQAAAAABeQAAAAAAWQAAAAABWQAAAAACCgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAHQAAAAABHQAAAAABHQAAAAACDQAAAAACDQAAAAAADQAAAAACDQAAAAACAQAAAAAAWQAAAAADWQAAAAABCgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAHQAAAAABHQAAAAADHQAAAAAADQAAAAABDQAAAAABDQAAAAAADQAAAAABeQAAAAAAWQAAAAADWQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAACDQAAAAABDQAAAAADDQAAAAACDQAAAAAAAQAAAAAAWQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACDQAAAAADeQAAAAAAWQAAAAADeQAAAAAADQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADHQAAAAADDQAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAABWQAAAAACDQAAAAACeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAABWQAAAAAADQAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAADWQAAAAACDQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADWQAAAAAAWQAAAAABWQAAAAAC version: 6 - 2,1: - ind: 2,1 - tiles: HQAAAAADPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 1,2: + ind: 1,2 + tiles: CQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 - tiles: eQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAACHQAAAAADeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAACgAAAAAACgAAAAAAeQAAAAAACgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAeQAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 1,2: - ind: 1,2 - tiles: TQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -2,0: + ind: -2,0 + tiles: WQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAEAAAAAAAHQAAAAABdgAAAAADdgAAAAABdgAAAAADdgAAAAAAdgAAAAABHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAADwAAAAACDwAAAAABDwAAAAADDwAAAAACeQAAAAAAHQAAAAACHQAAAAADdgAAAAABdgAAAAACdgAAAAADPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAHQAAAAADHQAAAAABHQAAAAACdgAAAAADdgAAAAADdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAADHQAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAHQAAAAACHQAAAAADHQAAAAADdgAAAAADdgAAAAACdgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAABeQAAAAAADwAAAAACDwAAAAADDwAAAAABDwAAAAADeQAAAAAAHQAAAAADHQAAAAACdgAAAAABdgAAAAADdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAACPgAAAAAAPgAAAAAAHQAAAAADHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADPgAAAAAAPgAAAAAAHQAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABPgAAAAAAPgAAAAAAHQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAABbAAAAAADeQAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAWQAAAAAAHQAAAAABWQAAAAABHQAAAAACWQAAAAABHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAADHQAAAAADWQAAAAACHQAAAAADWQAAAAACHQAAAAACWQAAAAABHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACWQAAAAAANgAAAAAANgAAAAAAWQAAAAAAWQAAAAADHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAADHQAAAAABWQAAAAAAHQAAAAACWQAAAAACHQAAAAADWQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABWQAAAAACHQAAAAACWQAAAAADHQAAAAADWQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADHQAAAAAAHQAAAAACHQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAC + tiles: TQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAACDwAAAAADDwAAAAADDwAAAAAADwAAAAAAdgAAAAACDwAAAAABDwAAAAAADwAAAAACDwAAAAABeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAADwAAAAACdgAAAAADdgAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAAADwAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAADwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAADwAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAADwAAAAABeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAADwAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAADeQAAAAAADwAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAeQAAAAAADwAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAADeQAAAAAADwAAAAAAeQAAAAAAdgAAAAACdgAAAAADHQAAAAACHQAAAAADHQAAAAABdgAAAAACeQAAAAAADwAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAADwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAADwAAAAABDwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAGAwAAAAAIDwAAAAAADwAAAAABDwAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAA version: 6 - -3,-1: - ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + -2,1: + ind: -2,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADQAAAAACDQAAAAABDQAAAAADTQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABHQAAAAADHQAAAAACTQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAADHQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABHQAAAAAAHQAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABHQAAAAABHQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADHQAAAAAAHQAAAAABTQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABHQAAAAABHQAAAAACTQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - -3,0: - ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -1,2: + ind: -1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - -1,-3: - ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAA + -3,1: + ind: -3,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAA + tiles: HQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAABWQAAAAADHQAAAAACHQAAAAADHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAANgAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAAANgAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADDgAAAAADHQAAAAADdgAAAAADdgAAAAACHQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAACHQAAAAACdgAAAAADdgAAAAACHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAABdgAAAAACdgAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAdgAAAAABdgAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAD version: 6 - 1,-3: - ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + -1,-3: + ind: -1,-3 + tiles: HQAAAAADWQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABNgAAAAAANgAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAACNgAAAAAANgAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADDAAAAAABDAAAAAABHQAAAAACDgAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABDAAAAAADDAAAAAABHQAAAAADDgAAAAADDgAAAAABDgAAAAAADgAAAAADDgAAAAACDgAAAAAADgAAAAACDgAAAAADeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAACDAAAAAABDAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADDAAAAAABDAAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAB + version: 6 + -2,-2: + ind: -2,-2 + tiles: AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAADbAAAAAABWQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAADbAAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAABbAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAACwAAAAAACwAAAAAAeQAAAAAAbAAAAAACbAAAAAADeQAAAAAAHQAAAAADHQAAAAACEAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAACwAAAAAACwAAAAAAeQAAAAAAbAAAAAADbAAAAAAAeQAAAAAAHQAAAAABHQAAAAAD version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAACbAAAAAADWQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAACbAAAAAACWQAAAAAD version: 6 - -2,-2: - ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA + 1,-3: + ind: 1,-3 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAABeQAAAAAAAwAAAAAFeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAABeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAwAAAAAKeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAABbAAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-4: + ind: 1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-4: + ind: 0,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABWQAAAAACHQAAAAADHQAAAAAC + version: 6 + -1,-4: + ind: -1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAWQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAAB version: 6 - 2,-3: - ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -2,-4: + ind: -2,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAHQAAAAAC + version: 6 + -3,0: + ind: -3,0 + tiles: WQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAdgAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAACdgAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAABdgAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAAAdgAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAHQAAAAADHQAAAAACAAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAACEgAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAAANgAAAAAANgAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADEgAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACEgAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAEgAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAB + version: 6 + -3,-2: + ind: -3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAACgAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAeQAAAAAAEAAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAA + version: 6 + -4,0: + ind: -4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-3: + ind: -3,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -170,527 +217,1354 @@ entities: version: 2 nodes: - node: - angle: -1.5707963267948966 rad - color: '#DE3A3A96' + color: '#FFFFFFFF' id: Arrows decals: - 521: 8,28 + 374: 4,-1 + 1162: 4,27 + 1209: 35,8 + 1354: -6,14 + 1365: 0,23 + 2194: -26,-28 + 2195: -22,-28 + 2769: -30,-28 + 2770: -34,-28 + 2771: -38,-28 + 2936: -16,-43 + 2939: 14,-43 - node: - angle: 1.5707963267948966 rad - color: '#DE3A3A96' + angle: 3.141592653589793 rad + color: '#FFFFFFFF' id: Arrows decals: - 520: 10,28 + 1163: 1,27 + 2196: -26,-26 + 2197: -22,-26 + 2198: -18,-26 + 2199: -14,-26 + 2200: -10,-26 + 2201: -6,-26 + 2772: -38,-26 + 2773: -34,-26 + 2774: -30,-26 + 2937: -16,-40 + 2938: 14,-40 - node: - angle: -3.141592653589793 rad color: '#FFFFFFFF' - id: Arrows + id: Bot decals: - 786: 29,-22 - 787: 33,-27 - 799: 32,-14 + 226: 34,-3 + 227: 34,-4 + 228: 34,-5 + 229: 34,-6 + 230: 34,1 + 231: 34,2 + 232: 34,3 + 233: 34,4 + 295: -6,0 + 296: 4,0 + 476: 13,-3 + 477: 15,-3 + 546: 21,-9 + 1015: 12,23 + 1016: 12,25 + 1017: 14,25 + 1018: 14,23 + 1019: 14,27 + 1020: 12,27 + 1053: 15,18 + 1054: 16,18 + 1080: -7,26 + 1081: -6,27 + 1082: -5,26 + 1083: -6,25 + 1097: -7,21 + 1098: -7,19 + 1099: -5,19 + 1100: -5,21 + 1133: -1,28 + 1144: 7,27 + 1149: -1,27 + 1150: 1,29 + 1151: 1,28 + 1152: 2,28 + 1153: 2,29 + 1154: 3,29 + 1155: 3,28 + 1164: 1,26 + 1165: 2,26 + 1401: 3,21 + 1402: 4,21 + 1408: 7,19 + 1409: 8,19 + 1410: 7,20 + 1411: 8,20 + 1412: 7,21 + 1413: 8,21 + 1414: -2,32 + 1415: -2,31 + 1446: -16,26 + 1447: -16,23 + 1482: -24,28 + 1483: -24,29 + 1484: -24,30 + 1485: -23,30 + 1486: -23,29 + 1487: -23,28 + 1488: -22,28 + 1489: -21,28 + 1490: -21,29 + 1491: -22,29 + 1492: -22,30 + 1493: -21,30 + 1751: -6,-38 + 1752: -6,-45 + 1753: 4,-45 + 1754: 4,-38 + 2699: -55,1 + 2700: -55,-3 + 2701: -54,-3 + 2806: -40,-26 + 2807: -40,-28 + 2841: -52,-3 + 2842: -41,-11 + 2843: -24,7 + 2844: -4,1 + 2845: -7,12 + 2846: -1,23 + 2847: 17,3 + 2848: 30,14 + 2849: 12,-5 + 2850: 8,-9 + 2851: 4,-15 + 2852: 13,-18 + 2853: 32,-16 + 2854: -26,1 + 2855: -29,1 + 2892: -30,-5 + 2923: -32,1 + 2925: -29,-3 + 2926: -26,-3 - node: - angle: -1.5707963267948966 rad color: '#FFFFFFFF' - id: Arrows + id: BotGreyscale decals: - 400: -11,28 - 473: 15,31 - 475: 5,31 - 910: 19,-26 - 976: 3,-43 + 1107: -12,25 + 1108: -13,26 + 1109: -12,27 + 1110: -11,26 + 1130: 13,9 + 1167: 3,31 + 2839: -6,-10 - node: color: '#FFFFFFFF' - id: Arrows + id: BotLeft decals: - 780: 33,-21 - 781: 31,-21 - 785: 29,-26 - 914: 17,-31 + 1076: -5,27 + 1077: -7,25 - node: - angle: 1.5707963267948966 rad color: '#FFFFFFFF' - id: Arrows + id: BotRight decals: - 375: -6,15 - 399: -11,24 - 474: 3,31 - 476: 13,31 - 909: 21,-26 - 977: -5,-43 + 1078: -5,25 + 1079: -7,27 - node: - angle: 3.141592653589793 rad color: '#FFFFFFFF' - id: Arrows + id: Box decals: - 789: 31,-27 + 544: 20,-12 + 545: 22,-12 + 1044: -11,5 + 1103: -13,25 + 1104: -13,27 + 1105: -11,27 + 1106: -11,25 + 1448: -16,24 + 1449: -16,25 + 2840: -6,-11 - node: - angle: -3.141592653589793 rad - color: '#52B4E9C3' - id: ArrowsGreyscale + color: '#FFFFFFFF' + id: BrickLineOverlayN decals: - 307: 11,-15 + 2958: -27.001663,-17.373186 - node: - color: '#DE3A3A96' - id: Bot + color: '#FFFFFFFF' + id: BrickLineOverlayW decals: - 301: 9,6 - 302: 13,4 - 533: 8,31 - 534: 10,31 - 535: 12,31 - 537: 6,31 - 761: 22,-11 - 762: 19,-11 + 2957: -26.62042,-16.998186 - node: color: '#FFFFFFFF' - id: Bot + id: BrickTileDarkCornerNe decals: - 49: 31,-6 - 50: 31,-4 - 51: 30,-6 - 52: 30,-4 - 53: 31,2 - 54: 30,2 - 55: 31,4 - 56: 30,4 - 103: 14,-3 - 104: 12,-3 - 234: -3,-13 - 235: 1,-13 - 236: -1,-12 - 276: 4,0 - 277: -6,0 - 371: -4,10 - 372: -4,15 - 376: -6,16 - 377: -6,17 - 378: -6,14 - 381: -7,28 - 382: -8,28 - 383: -9,28 - 384: -7,26 - 385: -8,26 - 386: -9,26 - 387: -7,24 - 388: -8,24 - 389: -9,24 - 390: -7,22 - 391: -8,22 - 392: -9,22 - 564: 9,15 - 566: 14,13 - 567: 14,11 - 568: 6,11 - 569: 6,13 - 574: 11,25 - 575: 8,22 - 576: -1,13 - 577: -1,11 - 579: -34,1 - 580: -34,-3 - 583: -31,-2 - 584: -30,-2 - 585: -31,0 - 586: -30,0 - 618: -22,0 - 619: -21,-2 - 620: -23,-2 - 621: -14,-1 - 673: -15,-8 - 674: -15,-7 - 675: -15,-6 - 676: -12,-8 - 677: -12,-7 - 678: -12,-6 - 713: 4,25 - 714: 4,28 - 715: 14,28 - 716: 14,25 - 717: 14,22 - 782: 29,-23 - 783: 29,-25 - 790: 32,-12 - 795: 32,-13 - 796: 31,-12 - 797: 32,-11 - 798: 33,-12 - 895: 23,-24 - 896: 23,-23 - 897: 28,-14 - 898: 27,-14 - 899: 34,-19 - 900: 34,-16 - 907: 17,-26 - 908: 23,-26 - 911: 17,-32 - 912: 16,-32 - 931: -20,-27 - 932: -19,-27 - 933: -20,-25 - 934: -19,-25 - 978: -5,-41 - 979: -5,-44 - 986: 3,-41 - 987: 3,-44 - 1222: 21,-27 - 1223: 20,-27 - 1224: 19,-27 + 570: 29,-17 + 571: 30,-18 + 2679: -43,-6 - node: color: '#FFFFFFFF' - id: BotLeft + id: BrickTileDarkCornerNw decals: - 573: 8,25 - 791: 33,-11 - 792: 31,-13 - 982: -6,-42 - 983: -6,-43 - 984: 4,-43 - 985: 4,-42 + 565: 22,-21 + 566: 23,-20 + 567: 24,-19 + 568: 25,-18 + 569: 27,-17 + 2678: -45,-6 - node: color: '#FFFFFFFF' - id: BotRight + id: BrickTileDarkCornerSe decals: - 793: 33,-13 - 794: 31,-11 - 1151: 13,-15 - 1152: 13,-14 + 573: 29,-27 + 574: 30,-26 + 963: 30,15 + 964: 31,16 + 1886: 5,-49 + 1887: -3,-49 + 2681: -43,-10 - node: color: '#FFFFFFFF' - id: Box + id: BrickTileDarkCornerSw decals: - 1295: -12,4 + 561: 25,-26 + 562: 24,-25 + 563: 23,-24 + 564: 22,-23 + 572: 27,-27 + 961: 21,16 + 962: 22,15 + 1884: -7,-49 + 1885: 1,-49 + 2680: -45,-10 - node: color: '#FFFFFFFF' - id: BrickTileDarkCornerNe + id: BrickTileDarkInnerNe decals: - 1093: 19,15 + 580: 29,-18 - node: color: '#FFFFFFFF' - id: BrickTileDarkCornerNw + id: BrickTileDarkInnerNw decals: - 1099: 17,15 + 581: 27,-18 + 582: 25,-19 + 583: 24,-20 + 584: 23,-21 - node: color: '#FFFFFFFF' - id: BrickTileDarkCornerSe + id: BrickTileDarkInnerSe decals: - 1097: 19,11 + 589: 29,-26 + 970: 27,15 + 971: 30,16 + 972: 31,17 - node: color: '#FFFFFFFF' - id: BrickTileDarkCornerSw + id: BrickTileDarkInnerSw decals: - 1098: 17,11 + 585: 23,-23 + 586: 24,-24 + 587: 25,-25 + 588: 27,-26 + 969: 25,15 + 973: 22,16 + 974: 21,17 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 1094: 19,14 - 1095: 19,13 - 1096: 19,12 - 1107: 33,21 - 1108: 33,22 + 1876: -3,-47 + 1877: -3,-48 + 1878: 5,-47 + 1879: 5,-48 + 2675: -43,-9 + 2676: -43,-8 + 2677: -43,-7 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 1101: 18,15 + 578: 26,-18 + 579: 28,-17 + 2686: -44,-6 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 1100: 18,11 + 575: 28,-27 + 576: 26,-26 + 965: 23,15 + 966: 24,15 + 967: 29,15 + 968: 28,15 + 1888: -6,-49 + 1889: -5,-49 + 1890: -4,-49 + 1891: 2,-49 + 1892: 3,-49 + 1893: 4,-49 + 2682: -44,-10 + 2927: 0,-2 + 2928: -2,-2 + 2931: -1,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 1102: 17,12 - 1103: 17,13 - 1104: 17,14 - 1105: 23,21 - 1106: 23,22 + 577: 22,-22 + 1880: -7,-48 + 1881: -7,-47 + 1882: 1,-48 + 1883: 1,-47 + 2683: -45,-9 + 2684: -45,-8 + 2685: -45,-7 - node: - color: '#52B4E996' - id: BrickTileSteelCornerNe + color: '#FFFFFFFF' + id: BrickTileSteelInnerNe decals: - 1290: 7,-10 + 1959: -12,-37 - node: - color: '#52B4E996' - id: BrickTileSteelCornerNw + color: '#FFFFFFFF' + id: BrickTileSteelInnerSe decals: - 1118: 3,-10 + 1960: -12,-30 - node: - color: '#52B4E996' - id: BrickTileSteelCornerSe + color: '#FFFFFFFF' + id: BrickTileSteelLineE decals: - 1119: 5,-14 + 1951: -12,-31 + 1952: -12,-32 + 1953: -12,-33 + 1954: -12,-34 + 1955: -12,-35 + 1956: -12,-36 - node: - color: '#52B4E996' - id: BrickTileSteelCornerSw + color: '#FFFFFFFF' + id: BrickTileSteelLineN decals: - 1114: 3,-14 + 1957: -11,-37 + 1958: -10,-37 - node: - color: '#52B4E996' - id: BrickTileSteelInnerNe + color: '#FFFFFFFF' + id: BrickTileSteelLineS decals: - 1294: 7,-12 + 1961: -11,-30 + 1962: -10,-30 + 1963: -9,-30 + 1964: -8,-30 - node: - color: '#52B4E996' - id: BrickTileSteelInnerSe + color: '#334E6DC8' + id: BrickTileWhiteCornerNe decals: - 1141: 13,-12 - 1293: 5,-12 + 619: 34,-16 + 695: 34,-26 + 2689: -43,-6 - node: color: '#52B4E996' - id: BrickTileSteelInnerSw + id: BrickTileWhiteCornerNe decals: - 1134: 9,-12 + 832: 23,12 - node: - color: '#52B4E996' - id: BrickTileSteelLineE + color: '#79150096' + id: BrickTileWhiteCornerNe decals: - 1121: 5,-13 - 1138: 13,-15 - 1139: 13,-14 - 1140: 13,-13 - 1289: 7,-11 + 611: 34,-10 - node: - color: '#52B4E996' - id: BrickTileSteelLineN + color: '#9FED5896' + id: BrickTileWhiteCornerNe decals: - 1125: 15,-12 - 1126: 14,-12 - 1127: 13,-12 - 1128: 12,-12 - 1129: 11,-12 - 1130: 10,-12 - 1131: 9,-12 - 1132: 8,-12 - 1142: 16,-12 - 1291: 6,-10 - 1292: 5,-10 + 1804: 12,-39 + 1861: 17,-40 - node: - color: '#52B4E996' - id: BrickTileSteelLineS + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe decals: - 1120: 4,-14 - 1133: 8,-12 - 1143: 16,-12 - 1144: 15,-12 - 1145: 14,-12 - 1287: 6,-12 - 1288: 7,-12 + 821: 7,12 + 870: 17,12 + 986: 16,20 + 1494: 11,12 + 1763: -10,-39 + 1874: -18,-40 - node: - color: '#52B4E996' - id: BrickTileSteelLineW + color: '#EFD2415D' + id: BrickTileWhiteCornerNe decals: - 1115: 3,-13 - 1116: 3,-12 - 1117: 3,-11 - 1135: 9,-13 - 1136: 9,-14 - 1137: 9,-15 + 1229: -5,12 - node: - color: '#9FED5896' + color: '#FA750096' id: BrickTileWhiteCornerNe decals: - 1157: 1,-16 - 1162: 4,-19 + 778: 10,-9 - node: - color: '#9FED5896' + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 640: 19,-16 + 647: 19,-24 + 2653: -46,-5 + 2688: -45,-6 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 735: 9,-5 + 831: 19,12 + - node: + color: '#79150096' id: BrickTileWhiteCornerNw decals: - 1158: -3,-16 - 1161: -6,-19 + 610: 33,-10 - node: color: '#9FED5896' + id: BrickTileWhiteCornerNw + decals: + 1805: 8,-39 + 1860: 16,-40 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 820: 3,12 + 859: 9,12 + 985: 10,20 + 1495: 15,12 + 1764: -14,-39 + 1875: -19,-40 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + decals: + 621: 34,-18 + 693: 34,-28 + 2691: -43,-10 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 834: 23,10 + - node: + color: '#79150096' id: BrickTileWhiteCornerSe decals: - 1159: 4,-20 + 616: 34,-14 - node: color: '#9FED5896' + id: BrickTileWhiteCornerSe + decals: + 1807: 12,-44 + 1863: 17,-43 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 823: 7,10 + 843: 17,3 + 982: 16,18 + 1766: -10,-44 + 1873: -18,-43 + - node: + color: '#EFCC4163' + id: BrickTileWhiteCornerSe + decals: + 1123: -10,24 + - node: + color: '#EFD2415D' + id: BrickTileWhiteCornerSe + decals: + 1234: -5,7 + - node: + color: '#FA750096' + id: BrickTileWhiteCornerSe + decals: + 782: 10,-13 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 644: 19,-20 + 2659: -46,-11 + 2690: -45,-10 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 733: 9,-7 + 833: 19,10 + - node: + color: '#79150096' id: BrickTileWhiteCornerSw decals: - 1160: -6,-20 + 615: 33,-14 - node: color: '#9FED5896' + id: BrickTileWhiteCornerSw + decals: + 1806: 8,-44 + 1862: 16,-43 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 822: 3,10 + 848: 12,3 + 981: 10,18 + 1765: -14,-44 + 1872: -19,-43 + - node: + color: '#EFCC4163' + id: BrickTileWhiteCornerSw + decals: + 1122: -14,24 + - node: + color: '#EFD2415D' + id: BrickTileWhiteCornerSw + decals: + 1237: -8,7 + 1241: -10,9 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteEndN + decals: + 869: 13,12 + - node: + color: '#4399095A' id: BrickTileWhiteInnerNe decals: - 1164: 1,-19 + 2284: -3,-47 + 2287: 5,-47 - node: - color: '#9FED5896' + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + decals: + 864: 11,11 + 865: 13,11 + - node: + color: '#EFD2415D' + id: BrickTileWhiteInnerNe + decals: + 1266: -9,12 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNe + decals: + 2976: -21,-18 + - node: + color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 1163: -3,-19 + 652: 21,-24 - node: - color: '#9FED5896' + color: '#4399095A' + id: BrickTileWhiteInnerNw + decals: + 2285: 1,-47 + 2286: -7,-47 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNw + decals: + 863: 15,11 + 866: 13,11 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNw + decals: + 2975: -20,-18 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSe + decals: + 662: 26,-16 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + decals: + 881: 10,7 + - node: + color: '#EFD2415D' + id: BrickTileWhiteInnerSe + decals: + 1260: -17,21 + 1275: -9,18 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSe + decals: + 2974: -21,-17 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSw + decals: + 674: 21,-20 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSw + decals: + 730: 12,-7 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSw + decals: + 852: 12,7 + - node: + color: '#EFD2415D' + id: BrickTileWhiteInnerSw + decals: + 1239: -8,9 + 1253: -10,21 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSw + decals: + 2973: -20,-17 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 620: 34,-17 + 694: 34,-27 + 2693: -43,-9 + 2694: -43,-8 + 2695: -43,-7 + - node: + color: '#43990941' + id: BrickTileWhiteLineE + decals: + 1521: -3,7 + 1522: -3,8 + 1523: -3,9 + 1524: -3,10 + 1525: -3,11 + 1526: -3,12 + 1549: -3,-24 + 1550: -3,-23 + 1551: -3,-22 + 1552: -3,-21 + 1553: -3,-20 + 1554: -3,-19 + 1555: -3,-18 + 1556: -3,-17 + 1557: -3,-16 + 1558: -3,-15 + 1559: -3,-14 + 1560: -3,-13 + 1561: -3,-12 + 1562: -3,-11 + 1563: -3,-10 + 1564: -3,-9 + - node: + color: '#43990947' + id: BrickTileWhiteLineE + decals: + 553: 31,-13 + 554: 31,-12 + 555: 31,-11 + 556: 31,-10 + - node: + color: '#52B4E996' id: BrickTileWhiteLineE decals: - 1165: 1,-18 + 830: 23,11 - node: color: '#79150096' - id: BrickTileWhiteLineN + id: BrickTileWhiteLineE decals: - 1220: 33,-32 + 612: 34,-11 + 613: 34,-12 + 614: 34,-13 - node: color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 1815: 12,-43 + 1816: 12,-42 + 1817: 12,-41 + 1818: 12,-40 + 1864: 17,-42 + 1865: 17,-41 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 827: 7,11 + 871: 17,11 + 872: 17,9 + 873: 17,8 + 874: 17,7 + 875: 17,6 + 876: 17,5 + 877: 10,6 + 878: 10,5 + 879: 10,4 + 880: 10,3 + 983: 16,19 + 1770: -10,-43 + 1771: -10,-42 + 1772: -10,-41 + 1773: -10,-40 + 1870: -18,-42 + 1871: -18,-41 + - node: + color: '#EFCC4163' + id: BrickTileWhiteLineE + decals: + 1119: -10,25 + 1120: -10,26 + 1121: -10,27 + - node: + color: '#EFD2415D' + id: BrickTileWhiteLineE + decals: + 1230: -5,11 + 1231: -5,10 + 1232: -5,9 + 1233: -5,8 + 1261: -17,20 + 1262: -17,19 + 1264: -9,13 + 1267: -9,14 + 1268: -9,15 + 1269: -9,16 + 1270: -9,17 + - node: + color: '#FA750096' + id: BrickTileWhiteLineE + decals: + 779: 10,-10 + 780: 10,-11 + 781: 10,-12 + - node: + color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 1166: 2,-19 - 1176: 0,-16 - 1177: -2,-16 + 628: 32,-16 + 629: 31,-16 + 633: 26,-16 + 634: 25,-16 + 635: 24,-16 + 636: 23,-16 + 637: 22,-16 + 638: 21,-16 + 639: 20,-16 + 646: 20,-24 + 675: 27,-16 + 676: 28,-16 + 677: 29,-16 + 696: 32,-26 + 697: 31,-26 + 2646: -45,-5 + 2647: -44,-5 + 2648: -43,-5 + 2649: -42,-5 + 2650: -40,-5 + 2651: -38,-5 + 2652: -37,-5 + 2670: -36,-5 + 2687: -44,-6 - node: - color: '#A4610696' + color: '#3E8FFFB1' id: BrickTileWhiteLineN decals: - 1218: 30,-32 + 2945: -26,-17 + 2946: -26,-18 + 2947: -27,-18 - node: - color: '#D4D4D428' + color: '#43990941' id: BrickTileWhiteLineN decals: - 1221: 32,-32 + 1565: -10,-3 + 1566: -11,-3 + 1567: -12,-3 + 1568: -14,-3 + 1569: -13,-3 + 1570: -15,-3 + 1571: -16,-3 + 1572: -17,-3 + 1573: -18,-3 + 1574: -19,-3 + 1575: -20,-3 + 1576: -21,-3 + 1577: -22,-3 + 1578: -23,-3 + 1579: -24,-3 + 1580: -25,-3 + 1581: -26,-3 + 1582: -27,-3 + 1583: -28,-3 + 1584: -29,-3 + 1585: -30,-3 - node: - color: '#D4D4D496' + color: '#4399094A' + id: BrickTileWhiteLineN + decals: + 2602: -31,-3 + 2603: -32,-3 + 2604: -33,-3 + 2605: -34,-3 + 2606: -35,-3 + 2607: -36,-3 + 2608: -37,-3 + 2609: -38,-3 + 2610: -39,-3 + 2611: -40,-3 + 2612: -41,-3 + 2613: -42,-3 + 2614: -44,-3 + 2615: -43,-3 + 2616: -45,-3 + 2617: -46,-3 + 2618: -47,-3 + 2619: -48,-3 + 2620: -49,-3 + 2621: -50,-3 + 2622: -51,-3 + 2645: -52,-3 + - node: + color: '#4399095A' + id: BrickTileWhiteLineN + decals: + 2260: 8,-48 + 2261: 9,-48 + 2262: 10,-48 + 2263: 11,-48 + 2264: 12,-48 + 2265: -10,-48 + 2266: -11,-48 + 2267: -12,-48 + 2268: -13,-48 + 2269: -14,-48 + 2282: -2,-47 + 2283: 0,-47 + 2288: 6,-47 + 2289: -8,-47 + - node: + color: '#52B4E996' id: BrickTileWhiteLineN decals: - 1217: 29,-32 + 736: 10,-5 + 737: 11,-5 + 738: 12,-5 + 739: 13,-5 + 740: 14,-5 + 741: 15,-5 + 742: 16,-5 + 835: 20,12 + 836: 21,12 + 837: 22,12 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 1812: 9,-39 + 1813: 10,-39 + 1814: 11,-39 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 1219: 31,-32 + 817: 4,12 + 818: 5,12 + 819: 6,12 + 867: 12,11 + 868: 14,11 + 987: 15,20 + 988: 14,20 + 989: 12,20 + 990: 11,20 + 1778: -13,-39 + 1779: -12,-39 + 1780: -11,-39 + - node: + color: '#EFD2415D' + id: BrickTileWhiteLineN + decals: + 1228: -7,12 + 1276: -5,22 + 1277: -7,22 + 1278: -8,22 + 1279: -9,22 + 1280: -10,22 + 1281: -11,22 + 1282: -13,22 + 1283: -14,22 + 1284: -15,22 + - node: + color: '#EFD84147' + id: BrickTileWhiteLineN + decals: + 1607: -8,12 + - node: + color: '#FA750096' + id: BrickTileWhiteLineN + decals: + 775: 6,-9 + 776: 7,-9 + 777: 8,-9 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 2967: -24,-17 + 2968: -23,-17 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 1212: 29,-29 + 622: 33,-18 + 623: 32,-18 + 645: 20,-20 + 670: 31,-18 + 678: 19,-28 + 679: 20,-28 + 680: 21,-28 + 681: 22,-28 + 682: 23,-28 + 683: 24,-28 + 684: 25,-28 + 685: 26,-28 + 686: 27,-28 + 687: 28,-28 + 688: 29,-28 + 689: 30,-28 + 690: 31,-28 + 691: 32,-28 + 692: 33,-28 + 2660: -45,-11 + 2661: -44,-11 + 2662: -43,-11 + 2663: -42,-11 + 2664: -41,-11 + 2665: -40,-11 + 2666: -39,-11 + 2667: -38,-11 + 2668: -37,-11 + 2669: -36,-11 + 2692: -44,-10 + - node: + color: '#43990941' + id: BrickTileWhiteLineS + decals: + 1586: -30,1 + 1587: -29,1 + 1588: -28,1 + 1589: -27,1 + 1590: -26,1 + 1591: -24,1 + 1592: -25,1 + 1593: -23,1 + 1594: -22,1 + 1595: -21,1 + 1596: -20,1 + 1597: -19,1 + 1598: -18,1 + 1599: -17,1 + 1600: -16,1 + 1601: -14,1 + 1602: -15,1 + 1603: -13,1 + 1604: -12,1 + 1605: -11,1 + 1606: -10,1 + - node: + color: '#4399094A' + id: BrickTileWhiteLineS + decals: + 2623: -51,1 + 2624: -50,1 + 2625: -49,1 + 2626: -48,1 + 2627: -46,1 + 2628: -47,1 + 2629: -45,1 + 2630: -44,1 + 2631: -43,1 + 2632: -42,1 + 2633: -40,1 + 2634: -41,1 + 2635: -39,1 + 2636: -38,1 + 2637: -37,1 + 2638: -36,1 + 2639: -35,1 + 2640: -34,1 + 2641: -33,1 + 2642: -32,1 + 2643: -31,1 + 2644: -52,1 + - node: + color: '#4399095A' + id: BrickTileWhiteLineS + decals: + 2236: -7,-50 + 2237: -6,-50 + 2238: -5,-50 + 2239: -4,-50 + 2240: -3,-50 + 2241: -2,-50 + 2242: -1,-50 + 2243: 0,-50 + 2244: 1,-50 + 2245: 2,-50 + 2246: 3,-50 + 2247: 4,-50 + 2248: 5,-50 + 2249: 6,-50 + 2250: -8,-50 + 2270: -14,-49 + 2271: -13,-49 + 2274: -10,-49 + 2275: -11,-49 + 2276: -12,-49 + 2277: 12,-49 + 2278: 11,-49 + 2279: 9,-49 + 2280: 10,-49 + 2281: 8,-49 + - node: + color: '#439909FF' + id: BrickTileWhiteLineS + decals: + 2971: -23,-18 + 2972: -24,-18 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 1216: 33,-29 + 731: 11,-7 + 732: 10,-7 + 838: 20,10 + 839: 21,10 + 840: 22,10 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 1167: 2,-20 - 1168: 1,-20 - 1169: 0,-20 - 1170: -2,-20 - 1171: -3,-20 - 1172: -4,-20 - 1173: -5,-20 - 1184: 3,-20 - 1214: 31,-29 + 1819: 9,-44 + 1820: 10,-44 + 1821: 11,-44 - node: - color: '#D381C996' + color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1213: 30,-29 + 824: 6,10 + 825: 5,10 + 826: 4,10 + 844: 16,3 + 845: 15,3 + 846: 14,3 + 847: 13,3 + 853: 11,7 + 976: 12,18 + 977: 14,18 + 978: 15,18 + 980: 11,18 + 1767: -11,-44 + 1768: -12,-44 + 1769: -13,-44 - node: - color: '#EFB34196' + color: '#EFCC4163' id: BrickTileWhiteLineS decals: - 1215: 32,-29 + 1124: -13,24 + 1125: -11,24 + - node: + color: '#EFD2415D' + id: BrickTileWhiteLineS + decals: + 1235: -6,7 + 1236: -7,7 + 1240: -9,9 + 1254: -11,21 + 1255: -13,21 + 1256: -12,21 + 1257: -14,21 + 1258: -15,21 + 1259: -16,21 + 1271: -8,18 + 1272: -7,18 + 1273: -6,18 + 1274: -5,18 + - node: + color: '#FA750096' + id: BrickTileWhiteLineS + decals: + 783: 9,-13 + 784: 8,-13 + 785: 7,-13 + 786: 6,-13 + 787: 5,-13 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 2948: -26,-17 + 2949: -26,-18 + 2950: -27,-18 + 2969: -24,-18 + 2970: -23,-18 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 641: 19,-17 + 642: 19,-18 + 643: 19,-19 + 653: 19,-25 + 671: 21,-23 + 672: 21,-22 + 673: 21,-21 + 2654: -46,-6 + 2655: -46,-7 + 2656: -46,-8 + 2657: -46,-9 + 2658: -46,-10 + 2696: -45,-9 + 2697: -45,-8 + 2698: -45,-7 + - node: + color: '#43990941' + id: BrickTileWhiteLineW + decals: + 1527: 1,7 + 1528: 1,8 + 1529: 1,9 + 1530: 1,10 + 1531: 1,11 + 1532: 1,12 + 1533: 1,-9 + 1534: 1,-10 + 1535: 1,-11 + 1536: 1,-12 + 1537: 1,-14 + 1538: 1,-13 + 1539: 1,-15 + 1540: 1,-16 + 1541: 1,-17 + 1542: 1,-18 + 1543: 1,-24 + 1544: 1,-23 + 1545: 1,-22 + 1546: 1,-21 + 1547: 1,-20 + 1548: 1,-19 + - node: + color: '#43990947' + id: BrickTileWhiteLineW + decals: + 557: 29,-13 + 558: 29,-12 + 559: 29,-11 + 560: 29,-10 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 724: 12,-13 + 725: 12,-12 + 726: 12,-11 + 727: 12,-10 + 728: 12,-9 + 729: 12,-8 + 734: 9,-6 + 829: 19,11 + - node: + color: '#79150096' + id: BrickTileWhiteLineW + decals: + 607: 33,-12 + 608: 33,-11 + 609: 33,-13 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 1174: -3,-18 - 1175: -3,-17 + 1808: 8,-43 + 1809: 8,-42 + 1810: 8,-41 + 1811: 8,-40 + 1866: 16,-42 + 1867: 16,-41 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 828: 3,11 + 849: 12,4 + 850: 12,5 + 851: 12,6 + 857: 9,9 + 858: 9,11 + 882: 9,6 + 883: 9,5 + 884: 9,4 + 885: 9,3 + 984: 10,19 + 1774: -14,-43 + 1775: -14,-42 + 1776: -14,-41 + 1777: -14,-40 + 1868: -19,-41 + 1869: -19,-42 + - node: + color: '#EFCC4163' + id: BrickTileWhiteLineW + decals: + 1116: -14,26 + 1117: -14,27 + 1118: -14,25 + - node: + color: '#EFD2415D' + id: BrickTileWhiteLineW + decals: + 1238: -8,8 + 1242: -10,10 + 1243: -10,11 + 1244: -10,12 + 1245: -10,13 + 1246: -10,14 + 1247: -10,15 + 1248: -10,16 + 1249: -10,17 + 1250: -10,18 + 1251: -10,19 + 1252: -10,20 + - node: + color: '#FFFFFFFF' + id: BushAOne + decals: + 1902: -21,-42 + - node: + color: '#FFFFFFFF' + id: BushAThree + decals: + 1896: 19,-37 + - node: + color: '#FFFFFFFF' + id: BushATwo + decals: + 1906: -21,-39 + 2440: -11,3 + - node: + color: '#FFFFFFFF' + id: BushCOne + decals: + 1903: -21,-37 + - node: + color: '#FFFFFFFF' + id: BushCThree + decals: + 2438: -10,-5 + - node: + color: '#FFFFFFFF' + id: BushCTwo + decals: + 1899: 19,-46 + 1904: -21,-47 + 2439: -15,3 + - node: + color: '#FFFFFFFF' + id: BushDThree + decals: + 1457: 6.9084163,7.696661 + 1458: 6.4396663,7.352911 + - node: + color: '#FFFFFFFF' + id: BushDTwo + decals: + 1459: 3.2052913,7.727911 + 2185: -24,-21 + - node: + color: '#FFFFFFFF' + id: Busha1 + decals: + 1895: 19,-39 - node: color: '#FFFFFFFF' id: Bushb1 decals: - 1233: -9,6 + 2403: -26.20804,3.5499678 + - node: + color: '#FFFFFFFF' + id: Bushb2 + decals: + 2436: -15,-5 - node: color: '#FFFFFFFF' id: Bushb3 decals: - 451: 10,8 - 725: 9.488686,-17.018105 + 1894: 19,-42 + 2402: -28.567415,3.2062178 + 2437: -11,-5 - node: color: '#FFFFFFFF' - id: Bushc1 + id: Bushc2 decals: - 722: -11.564524,-16.986855 + 1905: -21,-44 + - node: + color: '#FFFFFFFF' + id: Bushc3 + decals: + 1900: 19,-44 - node: color: '#FFFFFFFF' id: Bushe1 decals: 150: 25.445843,7.7053776 - 179: 11.130266,-9.945588 - 316: -4,18 - 457: 10.845012,7.992337 - node: color: '#FFFFFFFF' id: Bushe2 decals: 149: 26.461468,7.8616276 - 180: 14.583391,-9.976838 - 181: 13.520891,-10.008088 - node: color: '#FFFFFFFF' id: Bushe3 decals: 151: 28.82894,6.877252 152: 23.178217,6.861627 - 315: 2,18 - 458: 9.048137,8.023587 - 1113: 17.154882,7.7859535 - node: color: '#FFFFFFFF' id: Bushe4 decals: 153: 18.801558,6.901756 154: 33.138065,6.979881 + 1456: 3.7990413,7.759161 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 178: 9.755266,-9.992463 - 456: 10.782512,8.007962 + 1455: 4.7990413,7.446661 + 2186: -12,-22 + 2187: -4,-22 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 177: 10.411516,-10.008088 - 314: -4,18 - 455: 9.141887,8.007962 + 2801: -36,-32 - node: color: '#FFFFFFFF' id: Bushf3 decals: - 176: 14.052141,-10.008088 - 313: 2,18 + 1460: 6.898539,6.962286 + 2183: -20,-22 + 2184: -24,-22 - node: color: '#FFFFFFFF' id: Bushg1 decals: - 648: -11.486805,2.0009332 + 2232: 2,-22 - node: color: '#FFFFFFFF' - id: Bushh1 + id: Bushg4 decals: - 312: -4,18 - 459: 13.141887,8.086087 - 460: 6.0012617,8.086087 - 467: 8.798137,7.961087 - 723: -10.814524,-16.955605 - 727: 8.848061,-16.97123 + 2229: 2,-15 - node: color: '#FFFFFFFF' - id: Bushh2 + id: Bushh1 decals: - 724: -12.142649,-17.03373 + 2230: 2,-21 - node: color: '#FFFFFFFF' - id: Bushh3 + id: Bushh2 decals: - 185: 10.099016,-9.945588 - 311: 2,18 - 466: 11.282512,7.929837 - 726: 10.098061,-16.97123 - 1110: 16.470638,7.9648323 + 2804: -32,-33 - node: color: '#FFFFFFFF' id: Bushi1 @@ -700,123 +1574,266 @@ entities: 143: 27.037664,6.330377 144: 29.052135,7.267877 145: 32.06776,8.049128 - 171: 32.98406,-8.985069 - 173: 17.014437,2.9736261 - 174: 16.998812,6.958001 - 175: 17.020891,-5.0002565 - 197: -3.9782841,6.046785 - 200: -8.985234,-13.989886 - 642: -16.924305,2.0790582 - 643: -10.93993,2.0321832 - 711: -5.975403,-22.996408 + 1916: 19,-47 + 1922: -21,-36 + 2414: -27.784859,7.037008 + 2416: -26.581734,7.037008 + 2450: -16,3 - node: color: '#FFFFFFFF' id: Bushi2 decals: - 172: 19.006546,-8.953819 - 195: 6.9877787,-14.02815 - 196: -8.025159,5.99991 - 201: -9.047734,-10.021136 - 712: 3.9464722,-22.996408 + 1453: 3.0802913,6.946661 + 1454: 6.2677913,7.806036 + 1915: 19,-41 + 1978: 4.0082064,-31.102646 + 2179: -4,-21 + 2211: -28,-32 + 2227: 2,-23 + 2228: 2,-16 + 2413: -28.456734,7.005758 + 2417: -25.925484,7.068258 + 2793: -36,-33 + 2794: -40,-32 + 2795: -32,-31 + 2796: -32,-23 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 644: -12.93993,1.9853082 + 1920: -21,-46 + 1977: -5.9761686,-31.14952 + 2176: -28,-21 + 2177: -20,-22 + 2178: -12,-23 + 2212: -24,-32 + 2412: -29.066109,7.037008 + 2447: -10,3 + 2448: -16,-5 + - node: + color: '#FFFFFFFF' + id: Bushi4 + decals: + 1914: 19,-36 + 1921: -21,-41 + 2180: -20,-23 + 2181: -28,-23 + 2182: -16,-21 + 2415: -27.128609,7.052633 + 2418: -28.78415,6.990133 + 2449: -10,-5 + 2799: -40,-23 + 2800: -36,-32 - node: color: '#FFFFFFFF' id: Bushj1 decals: - 170: 30.968433,-8.891319 + 2409: -29.004915,3.0343428 - node: color: '#FFFFFFFF' id: Bushj2 decals: - 169: 20.959995,-9.000694 - 461: 13.579387,8.023587 + 2411: -26.27054,4.378093 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 463: 6.5325117,8.164212 + 2410: -25.942415,2.9874678 + 2805: -32,-22 + - node: + color: '#FFFFFFFF' + id: Bushk1 + decals: + 1981: -6.0230436,-30.258896 - node: color: '#FFFFFFFF' id: Bushk2 decals: - 310: 4,16 + 1982: 3.9925814,-30.27452 + 2188: -4,-21 + 2189: -8,-22 + 2191: -28,-22 + 2797: -36,-22 - node: color: '#FFFFFFFF' id: Bushk3 decals: 148: 20.972792,7.5335026 - 646: -16.03368,2.0478082 + 2190: -16,-23 - node: color: '#FFFFFFFF' id: Bushl1 decals: - 190: 7.116846,-5.379048 + 2231: 2,-17 + 2451: -13,3 - node: color: '#FFFFFFFF' - id: Bushl2 + id: Bushl3 decals: - 645: -15.03368,2.0165582 + 2452: -13,-5 - node: color: '#FFFFFFFF' id: Bushl4 decals: - 647: -12.00243,1.9853082 - 710: -6.022278,-23.574533 + 2213: -28,-32 - node: color: '#FFFFFFFF' id: Bushm1 decals: 147: 31.989635,7.5335026 + 2214: -24,-32 + 2802: -40,-31 - node: color: '#FFFFFFFF' id: Bushm2 decals: - 222: 3.9493294,6.054844 - 707: 4.008972,-23.668283 + 1979: -6.0542936,-31.602646 - node: color: '#FFFFFFFF' id: Bushm3 decals: 146: 30.208385,7.5960026 - 223: -9.056177,3.4392257 - 708: 4.008972,-22.558908 + 1980: 4.0238314,-31.74327 - node: color: '#FFFFFFFF' id: Bushm4 decals: - 709: -6.022278,-22.512033 + 2803: -32,-32 - node: color: '#FFFFFFFF' - id: Bushn1 + id: Caution decals: - 199: 34.054134,-1.0223641 + 1021: 13,28 - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Caution + color: '#52B4E973' + id: CheckerNESW decals: - 1286: 23,-27 + 519: 19,-13 + 520: 20,-13 + 521: 21,-13 + 522: 22,-13 + 523: 23,-13 + 524: 23,-12 + 525: 22,-12 + 526: 21,-12 + 527: 20,-12 + 528: 19,-12 + 529: 19,-11 + 530: 20,-11 + 531: 21,-11 + 532: 22,-11 + 533: 23,-11 + 534: 23,-10 + 535: 22,-10 + 536: 21,-10 + 537: 20,-10 + 538: 19,-10 - node: - color: '#52B4E996' + color: '#EFD84130' id: CheckerNESW decals: - 68: 12,-5 - 69: 13,-5 - 70: 14,-5 - 71: 15,-5 - 72: 15,-6 - 73: 15,-7 - 74: 15,-8 - 75: 11,-5 - 76: 10,-5 - 77: 9,-5 - 78: 9,-6 - 79: 9,-7 - 80: 9,-8 + 759: 4,-10 + 760: 3,-10 + 761: 3,-9 + 762: 4,-9 + 763: 4,-11 + 764: 3,-11 + 765: 3,-12 + 766: 4,-12 + 767: 4,-13 + 768: 3,-13 + - node: + color: '#334E6DC8' + id: CheckerNWSE + decals: + 2896: -34,-10 + 2897: -33,-10 + 2898: -32,-10 + 2899: -31,-10 + 2900: -29,-10 + 2901: -30,-10 + 2902: -30,-9 + 2903: -30,-8 + 2904: -30,-7 + 2905: -30,-6 + 2906: -29,-6 + 2907: -31,-9 + 2908: -31,-8 + 2909: -31,-7 + 2910: -31,-6 + 2911: -32,-6 + 2912: -32,-7 + 2913: -32,-8 + 2914: -32,-9 + 2915: -33,-9 + 2916: -33,-8 + 2917: -33,-7 + 2918: -33,-6 + 2919: -34,-6 + 2920: -34,-7 + 2921: -34,-8 + 2922: -34,-9 + - node: + color: '#43990950' + id: CheckerNWSE + decals: + 2507: -21,-14 + 2508: -22,-14 + 2509: -20,-14 + 2510: -19,-14 + 2511: -18,-14 + 2512: -17,-14 + 2513: -16,-14 + 2515: -15,-14 + 2516: -14,-14 + 2517: -13,-14 + 2518: -12,-14 + 2519: -11,-14 + 2520: -10,-14 + 2521: -9,-14 + 2522: -8,-14 + 2523: -7,-14 + 2524: -6,-14 + 2527: -23,-14 + 2528: -24,-14 + 2529: -25,-14 + 2530: -26,-14 + 2531: -27,-14 + 2532: -28,-14 + 2533: -30,-14 + 2534: -29,-14 + 2535: -31,-14 + 2536: -32,-14 + 2537: -33,-14 + 2538: -34,-14 + 2539: -35,-14 + 2540: -37,-14 + 2541: -36,-14 + 2542: -38,-14 + - node: + color: '#D381C95D' + id: CheckerNWSE + decals: + 2862: 20,-30 + 2863: 19,-30 + 2864: 19,-31 + 2865: 20,-31 + 2866: 21,-31 + 2867: 21,-30 + 2868: 22,-30 + 2869: 22,-31 + 2870: 22,-32 + 2871: 21,-32 + 2872: 20,-32 + 2873: 19,-32 + 2874: 19,-33 + 2875: 20,-33 + 2876: 21,-33 + 2877: 22,-33 + 2878: 22,-34 + 2879: 21,-34 + 2880: 20,-34 + 2881: 19,-34 - node: color: '#D4D4D428' id: CheckerNWSE @@ -827,153 +1844,267 @@ entities: 30: 21,1 31: 22,0 32: 23,-1 - 1185: -1,-19 - 1186: -1,-18 - 1187: -1,-17 - 1188: 0,-18 - 1189: -2,-18 - 1190: 0,-17 - 1191: -2,-17 - 1192: -2,-19 - 1193: 0,-19 + - node: + color: '#FA750096' + id: CheckerNWSE + decals: + 744: 5,-12 + 745: 5,-11 + 746: 5,-10 + 747: 6,-10 + 748: 6,-11 + 749: 6,-12 + 750: 7,-12 + 751: 7,-11 + 752: 7,-10 + 753: 8,-10 + 754: 8,-11 + 755: 8,-12 + 756: 9,-12 + 757: 9,-11 + 758: 9,-10 - node: color: '#DE3A3A96' id: Delivery decals: - 524: 13,32 - 525: 12,32 - 526: 6,32 - 527: 5,32 - 528: 3,32 - 529: 3,30 - 530: 15,30 - 532: 15,32 + 617: 33,-15 + - node: + color: '#FA750096' + id: Delivery + decals: + 791: 5,-8 - node: color: '#FFFFFFFF' id: Delivery decals: - 45: 32,4 - 46: 32,2 - 47: 32,-4 - 48: 32,-6 - 99: 12,1 - 100: 14,1 - 379: -8,17 - 380: -8,16 - 393: -10,22 - 394: -10,24 - 395: -10,26 - 396: -10,28 - 401: -14,30 - 402: -14,31 - 405: -14,22 - 406: -14,21 - 407: -14,20 - 581: -32,-2 - 582: -32,0 - 718: 6,-16 - 719: 7,-16 - 720: -9,-16 - 721: -8,-16 - 784: 29,-24 - 904: 32,-15 - 905: 16,-24 - 913: 15,-32 - 929: -21,-27 - 930: -21,-25 - 980: -6,-41 - 981: -6,-44 - 988: 4,-44 - 989: 4,-41 - 1231: 22,-26 - 1232: 18,-26 - 1242: -4,-35 - 1243: -5,-35 - 1244: -6,-35 - 1245: 2,-35 - 1246: 3,-35 - 1247: 4,-35 - 1248: 12,-30 - 1249: 13,-30 - 1250: 12,-21 - 1251: 13,-21 - 1252: -15,-21 - 1253: -14,-21 - 1254: -14,-30 - 1255: -15,-30 - 1256: -5,-6 - 1257: -5,-5 - 1258: -6,-4 - 1259: -7,-4 - 1260: -7,2 - 1261: -6,2 - 1262: -5,3 - 1263: -5,4 - 1264: 3,3 - 1265: 3,4 - 1266: 4,2 - 1267: 5,2 - 1268: 5,-4 - 1269: 4,-4 - 1270: 3,-5 - 1271: 3,-6 - 1272: -9,-12 - 1273: -14,-17 - 1279: -10,33 + 373: 4,-2 + 472: 13,1 + 473: 15,1 + 547: 29,-14 + 548: 30,-14 + 549: 31,-14 + 550: 31,-9 + 551: 30,-9 + 552: 29,-9 + 743: 17,-5 + 792: 7,-2 + 793: 7,-1 + 794: 7,0 + 795: 18,-2 + 796: 18,-1 + 797: 18,0 + 798: 0,-8 + 799: -1,-8 + 800: -2,-8 + 801: -9,-2 + 802: -9,-1 + 803: -9,0 + 804: -2,6 + 805: -1,6 + 806: 0,6 + 893: 15,5 + 894: 15,6 + 895: 8,4 + 995: 12,24 + 996: 14,24 + 997: 14,22 + 998: 12,22 + 999: 12,26 + 1000: 14,26 + 1022: 13,29 + 1023: 16,32 + 1024: 15,32 + 1025: 11,32 + 1026: 10,32 + 1101: -5,20 + 1102: -7,20 + 1128: 15,8 + 1129: 15,9 + 1143: 7,28 + 1145: 5,19 + 1146: 5,20 + 1147: 9,19 + 1148: -1,26 + 1156: 4,28 + 1157: 4,29 + 1158: 5,29 + 1159: 5,28 + 1160: 4,26 + 1161: 5,26 + 1198: -2,13 + 1199: -1,13 + 1200: 0,13 + 1202: -1,17 + 1203: 0,17 + 1204: -2,17 + 1205: 18,14 + 1206: 18,15 + 1207: 18,16 + 1208: 35,7 + 1350: -6,23 + 1352: -6,13 + 1364: 0,22 + 1403: 2,21 + 1480: -22,18 + 1705: -14,-45 + 1706: -13,-45 + 1707: -12,-45 + 1708: -11,-45 + 1709: -10,-45 + 1716: 8,-45 + 1717: 9,-45 + 1718: 10,-45 + 1719: 11,-45 + 1720: 12,-45 + 1727: 7,-44 + 1728: 7,-43 + 1729: 7,-42 + 1730: 7,-41 + 1731: 7,-40 + 1732: 7,-39 + 1733: -9,-44 + 1734: -9,-43 + 1735: -9,-42 + 1736: -9,-41 + 1737: -9,-40 + 1738: -9,-39 + 1739: -6,-39 + 1740: -6,-40 + 1741: -6,-41 + 1742: -6,-42 + 1743: -6,-43 + 1744: -6,-44 + 1745: 4,-44 + 1746: 4,-43 + 1747: 4,-42 + 1748: 4,-41 + 1749: 4,-40 + 1750: 4,-39 + 1755: -11,-43 + 1756: -13,-43 + 1757: -13,-40 + 1758: -11,-40 + 1759: 9,-43 + 1760: 11,-43 + 1761: 11,-40 + 1762: 9,-40 + 1785: -8,-45 + 1786: -8,-38 + 1787: 6,-45 + 1788: 6,-38 + 1923: 17,-45 + 1924: 16,-45 + 1925: 13,-49 + 1926: 13,-48 + 1927: 17,-38 + 1928: 16,-38 + 1929: -18,-38 + 1930: -19,-38 + 1931: -18,-45 + 1932: -19,-45 + 1933: -15,-49 + 1934: -15,-48 + 2004: 13,-29 + 2005: 12,-29 + 2006: -14,-29 + 2007: -15,-29 + 2702: -54,1 + 2808: -10,14 + 2809: -9,14 + 2810: -4,-15 + 2811: -4,-14 + 2812: -4,-13 + 2832: -5,-10 + 2882: -30,-11 + 2883: -29,-11 + 2884: -33,-11 + 2885: -34,-11 + 2886: -33,-5 + 2887: -34,-5 + 2888: -29,-5 + 2889: -29,-9 + 2890: -29,-8 + 2891: -29,-7 + 2893: -35,-9 + 2894: -35,-8 + 2895: -35,-7 + 2932: 14,-39 + 2933: 14,-44 + 2934: -16,-44 + 2935: -16,-39 - node: color: '#52B4E996' id: DeliveryGreyscale decals: - 1122: 4,-7 - 1123: 17,-7 - 1124: 17,-12 - 1146: 16,-12 - 1147: 8,-12 - 1148: 16,-7 - 1149: 12,-4 - 1150: 14,-4 + 841: 18,10 + 1497: 15,12 + - node: + color: '#DE3A3A96' + id: DeliveryGreyscale + decals: + 842: 8,10 + 891: 10,13 + 892: 16,13 + 1496: 11,12 - node: color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 1274: 4,-8 - 1275: -6,-8 - 1276: -6,6 - 1277: 7,3 - 1278: 17,5 + 2673: -41,-4 + 2674: -39,-4 - node: + cleanable: True color: '#FFFFFFFF' - id: DirtLight + id: DirtHeavy decals: - 57: 32,2 - 58: 32,-5 + 2835: -8,-11 + 2836: -6,-9 + 2837: -7,-10 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 59: 31,-6 - 60: 32,3 - 61: 31,4 - 62: 29,4 + 2833: -7,-11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 2834: -6,-11 + - node: + color: '#FFFFFFFF' + id: FlowersBRThree + decals: + 2790: -40,-31 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 2206: -24,-31 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 189: 7.054346,-5.972798 - 217: -8.98181,3.039219 - 218: 4.0382257,5.992344 - 640: -12.455555,2.0009332 - 704: -5.959778,-23.277658 + 1467: -7,6 + 1468: -4,9 + 1974: -6.06651,-30.071396 + 2225: 2,-23 + 2786: -36,-31 + 2787: -32,-33 + 2788: -32,-23 + 2789: -40,-22 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: 140: 25.64704,7.7835026 - 163: 21.006866,-8.969444 - 164: 21.928741,-8.985069 - 165: 32.30374,-9.031944 - 639: -17.09618,2.0009332 + 2171: -28,-22 + 2172: -20,-23 + 2173: -12,-22 + 2174: -8,-21 + 2175: -4,-22 + 2224: 2,-16 - node: color: '#FFFFFFFF' id: Flowersbr3 @@ -981,27 +2112,27 @@ entities: 137: 31.017263,7.330377 138: 20.33454,7.330377 139: 26.99079,6.721002 - 188: 6.991846,-5.004048 - 209: -4.0670047,-7.975866 + 1976: 4.0011315,-31.977646 - node: color: '#FFFFFFFF' - id: Flowerspv1 + id: Flowerspv2 decals: - 166: 31.131866,-9.000694 - 167: 20.241241,-8.953819 - 168: 32.80374,-9.000694 - 219: 7.0694757,4.992344 - 220: 3.9757257,7.992344 - 1156: 7,-8 + 1471: -4,8 + 1973: -5.988385,-31.05577 + 1975: 4.0323815,-31.165146 + 2167: -8,-23 + 2168: -12,-21 + 2169: -16,-23 + 2170: -24,-23 + 2226: 2,-21 + 2791: -40,-32 + 2792: -36,-23 - node: + angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Flowerspv2 decals: - 194: 5.962157,-7.9708443 - 206: -7.8673525,-7.959863 - 641: -14.90868,2.0634332 - 705: 4.102722,-23.308908 - 706: -5.991028,-22.152658 + 2202: -28,-31 - node: color: '#FFFFFFFF' id: Flowerspv3 @@ -1009,25 +2140,37 @@ entities: 134: 21.940147,6.877252 135: 26.987022,7.6116276 136: 32.829765,6.955377 - 207: -8.9611025,-5.006738 - 309: 4,16 - 1155: -9,-8 + 1472: -4,12 - node: + angle: 3.141592653589793 rad color: '#FFFFFFFF' - id: Flowersy1 + id: Flowerspv3 decals: - 193: 2.0246568,-7.9552193 + 2203: -24,-33 - node: color: '#FFFFFFFF' - id: Flowersy2 + id: Flowersy1 decals: - 216: -8.91931,3.929844 + 1469: -6,6 + 1470: -4,11 + 2204: -28,-33 + 2222: 2,-17 + 2441: -14,-5 + 2444: -12,3 + 2781: -40,-33 + 2782: -40,-21 + 2783: -36,-22 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 221: 1.9913507,6.023594 - 703: -5.975403,-23.949533 + 1972: -5.988385,-31.977646 + 2205: -24,-32 + 2223: 2,-15 + 2408: -29.08304,3.9874678 + 2442: -12,-5 + 2784: -32,-22 + 2785: -36,-32 - node: color: '#FFFFFFFF' id: Flowersy4 @@ -1037,17 +2180,16 @@ entities: 131: 32.737022,7.9397526 132: 21.674522,8.017878 133: 19.190147,7.174127 - 161: 30.038116,-9.047569 - 162: 18.959991,-8.985069 - 182: 15.052141,-10.039338 - 183: 9.052141,-9.976838 - 184: 13.005266,-9.992463 - 208: -9.0236025,-5.991113 - 462: 6.6731367,7.961087 - 638: -13.12743,2.0009332 - 702: 4.024597,-22.012033 - 1111: 6.9923015,5.882874 - 1112: 6.0391765,5.945374 + 1971: 4.0385942,-30.383896 + 2162: -28,-23 + 2163: -20,-21 + 2164: -16,-22 + 2165: -8,-22 + 2166: -4,-23 + 2221: 2,-22 + 2407: -27.89554,2.9093428 + 2443: -14,3 + 2780: -32,-32 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale @@ -1057,72 +2199,243 @@ entities: 11: 25,-1 12: 27,-2 39: 25,0 - 679: -24,-5 - 680: -22,-5 - 681: -20,-5 - 682: -18,-5 - 683: -19,-6 - 684: -18,-7 - 685: -19,-8 - 686: -18,-9 - 687: -20,-9 - 688: -22,-9 - 689: -21,-8 - 690: -21,-6 - 691: -20,-7 - 692: -23,-8 - 693: -23,-6 - 694: -24,-7 - 695: -24,-9 + 2813: -16,-7 + 2814: -15,-7 + - node: + color: '#3E8FFFB1' + id: FullTileOverlayGreyscale + decals: + 2956: -27,-17 + - node: + color: '#52B4E973' + id: FullTileOverlayGreyscale + decals: + 502: 14,-13 + 503: 15,-12 + 504: 16,-13 + 505: 17,-12 + 506: 18,-13 + 507: 18,-11 + 508: 16,-11 + 509: 14,-11 + 510: 15,-10 + 511: 17,-10 + 512: 18,-9 + 513: 16,-9 + 514: 14,-9 + 515: 15,-8 + 516: 17,-8 + 517: 16,-7 + 518: 14,-7 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 63: 10,-7 - 64: 11,-6 - 65: 12,-7 - 66: 13,-6 - 67: 14,-7 + 2823: -13,-9 + 2824: -12,-9 - node: - color: '#DE3A3A96' + color: '#79150096' + id: FullTileOverlayGreyscale + decals: + 2817: -16,-9 + 2818: -15,-9 + - node: + color: '#8C347F66' + id: FullTileOverlayGreyscale + decals: + 2475: -18,-17 + 2476: -17,-17 + 2477: -17,-18 + 2478: -18,-18 + - node: + color: '#9FED5896' + id: FullTileOverlayGreyscale + decals: + 2827: -10,-11 + 2828: -10,-10 + - node: + color: '#A4610696' id: FullTileOverlayGreyscale decals: - 479: 14,28 - 480: 14,25 - 481: 14,22 - 482: 4,25 - 483: 4,28 - 499: 9,27 - 500: 9,28 - 501: 9,29 - 502: 9,30 - 503: 9,31 - 504: 9,32 + 2821: -13,-7 + 2822: -12,-7 + - node: + color: '#D381C996' + id: FullTileOverlayGreyscale + decals: + 2825: -13,-11 + 2826: -12,-11 + - node: + color: '#D4D4D428' + id: FullTileOverlayGreyscale + decals: + 2296: -3,-42 + 2297: -3,-41 + 2298: -3,-40 + 2299: -2,-40 + 2300: -1,-40 + 2301: 0,-40 + 2302: 1,-40 + 2303: 1,-41 + 2304: 1,-42 + 2305: 1,-43 + 2306: 0,-43 + 2307: -1,-43 + 2308: -2,-43 + 2309: -3,-43 + 2310: 2,-43 + 2311: 2,-42 + 2312: 2,-41 + 2313: 2,-40 + 2314: -4,-43 + 2315: -4,-42 + 2316: -4,-41 + 2317: -4,-40 + 2318: -4,-39 + 2319: -3,-39 + 2320: -2,-39 + 2321: -1,-39 + 2322: 0,-39 + 2323: 1,-39 + 2324: 2,-39 + 2325: 2,-44 + 2326: 1,-44 + 2327: 0,-44 + 2328: -1,-44 + 2329: -2,-44 + 2330: -3,-44 + 2332: -4,-44 + 2333: 10,-43 + 2334: 10,-42 + 2335: 10,-41 + 2336: 10,-40 + 2337: 11,-42 + 2338: 11,-41 + 2339: 9,-42 + 2340: 9,-41 + 2341: -12,-43 + 2342: -12,-42 + 2343: -12,-41 + 2344: -12,-40 + 2345: -11,-42 + 2346: -11,-41 + 2347: -13,-42 + 2348: -13,-41 + 2545: -42,-9 + 2546: -42,-7 + 2547: -41,-8 + 2548: -40,-7 + 2549: -40,-9 + 2550: -38,-7 + 2551: -38,-9 + 2552: -37,-8 + 2553: -36,-9 + 2554: -36,-7 + 2555: -37,-10 + 2556: -39,-10 + 2557: -41,-10 + 2558: -41,-6 + 2559: -39,-6 + 2560: -37,-6 + 2561: -36,-11 + 2562: -37,-11 + 2563: -38,-11 + 2564: -39,-11 + 2565: -41,-11 + 2566: -40,-11 + 2567: -42,-11 + 2568: -43,-11 + 2569: -44,-11 + 2570: -45,-11 + 2571: -46,-11 + 2572: -46,-10 + 2573: -46,-9 + 2574: -46,-7 + 2575: -46,-8 + 2576: -46,-6 + 2577: -46,-5 + 2578: -45,-5 + 2579: -44,-5 + 2580: -43,-5 + 2581: -42,-5 + 2582: -41,-5 + 2583: -39,-5 + 2584: -40,-5 + 2585: -37,-5 + 2586: -36,-5 + 2587: -38,-5 + 2588: -34,-11 + 2589: -33,-11 + 2590: -32,-11 + 2591: -31,-11 + 2592: -30,-11 + 2593: -29,-11 + 2594: -29,-5 + 2595: -30,-5 + 2596: -31,-5 + 2597: -32,-5 + 2598: -33,-5 + 2599: -34,-5 + - node: + color: '#D4D4D496' + id: FullTileOverlayGreyscale + decals: + 2829: -10,-8 + 2830: -10,-7 - node: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 823: 19,-23 - 824: 20,-23 - 825: 21,-23 + 2819: -16,-11 + 2820: -15,-11 + - node: + color: '#FFFFFFFF' + id: Grassa1 + decals: + 1461: -4,8 + 1897: 19,-36 + - node: + color: '#FFFFFFFF' + id: Grassa2 + decals: + 2445: -13,-5 + - node: + color: '#FFFFFFFF' + id: Grassa3 + decals: + 2446: -13,3 - node: color: '#FFFFFFFF' - id: Grassa4 + id: Grassa5 decals: - 454: 14,8 + 1917: -21,-36 - node: color: '#FFFFFFFF' id: Grassb1 decals: - 452: 9,8 - 464: 11.391887,8.179837 - 465: 7.2825117,8.054837 + 1466: -7,6 + 1898: 19,-41 + 2433: -16,-5 + - node: + color: '#FFFFFFFF' + id: Grassb2 + decals: + 1919: -21,-46 + 2404: -26.567415,3.0187178 + 2434: -10,3 + - node: + color: '#FFFFFFFF' + id: Grassb3 + decals: + 1901: 19,-47 + 1918: -21,-41 + 2405: -28.27054,3.9562178 + 2435: -16,3 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 453: 13,8 - 1109: 16.017513,8.027332 + 2406: -29.067415,4.049968 - node: color: '#FFFFFFFF' id: Grassd1 @@ -1133,15 +2446,33 @@ entities: 126: 26.85236,8.13236 127: 24.842615,8.147985 128: 19.093754,6.9448605 - 160: 32.92874,-8.891319 - 635: -12.75243,1.9384332 + 1464: -4,12 + 1465: -6,6 + 1969: 4,-32 + 2218: 2,-16 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 2161: -4,-21 + 2401: -27,3 + 2431: -12,3 + 2432: -13,-5 + 2777: -40,-23 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 192: 2.0715318,-7.9395943 - 634: -14.955555,2.0165582 - 701: 3.9620972,-23.215158 + 2158: -24,-21 + 2159: -20,-23 + 2160: -8,-22 + 2209: -24,-31 + 2210: -28,-31 + 2220: 2,-23 + 2429: -11,-5 + 2430: -15,3 + 2778: -32,-23 + 2779: -32,-31 - node: color: '#FFFFFFFF' id: Grasse1 @@ -1152,13 +2483,20 @@ entities: 120: 25.163973,7.1167355 121: 26.195223,6.1636105 122: 29.242098,7.9917355 - 156: 20.2297,-9.031944 - 157: 30.694366,-8.953819 - 203: -8.907109,-5.8244467 - 212: 1.9943819,6.0206404 - 213: 3.947507,8.005015 - 636: -11.986805,1.9696832 - 700: -6.084778,-23.808908 + 1968: -6,-31 + 2153: -4,-22 + 2154: -12,-21 + 2155: -16,-23 + 2156: -24,-22 + 2157: -28,-21 + 2215: 2,-22 + 2219: 2,-15 + 2395: -26,3 + 2396: -27,7 + 2397: -29,4 + 2426: -16,3 + 2427: -10,3 + 2428: -16,-5 - node: color: '#FFFFFFFF' id: Grasse2 @@ -1167,18 +2505,25 @@ entities: 114: 26.992098,6.2724113 115: 21.070223,7.2411613 116: 20.007723,6.9442863 - 187: 7.054346,-5.004048 - 204: -8.985234,-5.0900717 - 205: -3.9383593,-7.9338217 - 210: -8.996265,3.0206404 - 211: -8.965015,3.9112654 - 215: 6.954139,4.9425154 - 633: -15.861805,1.9071832 - 637: -11.049305,1.8915582 - 698: 3.9464722,-22.418283 - 699: -5.928528,-22.652658 - 1153: 7,-8 - 1154: -9,-8 + 1462: -4,9 + 1965: -6,-32 + 1967: -6,-30 + 1970: 4,-30 + 2148: -28,-23 + 2149: -20,-22 + 2150: -16,-21 + 2151: -12,-22 + 2152: -8,-23 + 2207: -28,-32 + 2216: 2,-21 + 2390: -29,3 + 2391: -26,4 + 2392: -28,7 + 2423: -13,3 + 2424: -14,-5 + 2425: -10,-5 + 2775: -36,-23 + 2798: -36,-21 - node: color: '#FFFFFFFF' id: Grasse3 @@ -1191,156 +2536,91 @@ entities: 110: 29.420387,7.0224113 111: 30.092262,7.5849113 112: 32.41404,7.2099113 - 155: 19.2922,-8.953819 - 158: 31.506866,-8.985069 - 159: 21.444366,-8.953819 - 186: 7.023096,-5.941548 - 191: 5.962157,-8.002094 - 198: 34.00726,-1.0379891 - 202: -7.9071093,-7.9963217 - 214: 4.041257,6.0675154 - 308: 4,16 - 632: -16.674305,2.0478082 - 696: 4,-24 - 697: -6,-22 + 1463: -4,11 + 1966: 4,-31 + 2141: -28,-22 + 2142: -24,-23 + 2143: -20,-21 + 2144: -16,-22 + 2145: -12,-23 + 2146: -8,-21 + 2147: -4,-23 + 2208: -24,-33 + 2217: 2,-17 + 2393: -29,7 + 2394: -27,4 + 2398: -28,3 + 2399: -28,4 + 2400: -26,7 + 2419: -15,-5 + 2420: -12,-5 + 2421: -14,3 + 2422: -11,3 + 2776: -40,-22 - node: - color: '#334E6DC8' + color: '#9FED5866' id: HalfTileOverlayGreyscale decals: - 288: -1,1 - 655: -11,-5 - 656: -12,-5 - 657: -13,-5 - 658: -14,-5 - 659: -15,-5 - 660: -16,-5 + 498: 8,1 + 499: 17,1 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 88: 10,1 - 361: 1,16 - 362: 0,16 - 363: -1,16 - 364: -2,16 - 365: -3,16 - 562: 7,15 - 731: 8,-20 - 734: 10,-20 - 735: 12,-20 - 740: -10,-20 - 741: -12,-20 - 742: -14,-20 + 1337: 9,16 + 1849: 15,-37 + 1850: 13,-37 - node: - color: '#A4610696' + color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 321: -8,11 - 322: -9,11 - 323: -10,11 - 324: -11,11 - 333: -12,16 - 334: -13,16 - 335: -14,16 - 423: -7,31 - 424: -8,31 - 425: -9,31 - 426: -11,31 + 464: 11,1 + 465: 12,1 + 466: 14,1 + 467: 16,1 + 1843: -15,-37 + 1845: -17,-37 - node: - color: '#DE3A3A96' + color: '#EFD2415D' id: HalfTileOverlayGreyscale decals: - 86: 13,1 - 87: 11,1 - 556: 13,15 - 557: 10,15 - 558: 8,15 - 752: 28,-9 - 753: 27,-9 - 754: 26,-9 - 755: 25,-9 - 756: 24,-9 + 1217: -8,9 + 1218: -7,9 + 1219: -7,11 + 1220: -7,10 - node: - color: '#334E6DC8' + color: '#3E8FFFB1' id: HalfTileOverlayGreyscale180 decals: - 617: -22,-2 - 649: -16,-9 - 650: -15,-9 - 651: -14,-9 - 652: -13,-9 - 653: -12,-9 - 654: -11,-9 + 2940: -26,-17 + 2942: -26,-18 + 2943: -27,-18 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 84: 13,-3 - 85: 11,-3 + 468: 11,-3 + 469: 12,-3 + 470: 14,-3 + 471: 16,-3 - node: - color: '#9FED5896' + color: '#9FED5866' id: HalfTileOverlayGreyscale180 decals: - 353: 1,8 - 354: 0,8 - 355: -1,8 - 356: -2,8 - 357: -3,8 - 547: 13,10 - 548: 12,10 - 549: 11,10 - 550: 10,10 - 551: 9,10 - 552: 8,10 - 553: 7,10 - 578: 10,-3 - 732: 9,-19 - 733: 11,-19 - 743: -11,-19 - 744: -13,-19 + 500: 8,-3 + 501: 17,-3 - node: - color: '#A4610696' + color: '#9FED5896' id: HalfTileOverlayGreyscale180 decals: - 327: -8,9 - 328: -10,9 - 329: -11,9 - 330: -9,9 - 331: -13,15 - 332: -14,15 - 340: -12,15 - 440: -8,19 - 441: -9,19 - 442: -10,19 + 1851: 16,-36 + 1852: 14,-36 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 decals: - 291: 13,3 - 292: 15,3 - 293: 11,3 - 518: 10,21 - 519: 9,21 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 817: 15,-22 - 818: 16,-22 - 819: 17,-22 - 820: 18,-22 - 821: 19,-22 - 822: 20,-22 - 826: 21,-22 - 842: 26,-27 - 843: 25,-27 - 844: 24,-27 - 865: 28,-19 - 866: 27,-19 - 867: 23,-19 - 868: 22,-19 - 869: 30,-19 - 870: 34,-19 + 1844: -16,-36 + 1846: -18,-36 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 @@ -1354,70 +2634,48 @@ entities: 19: 29,-2 33: 25,-3 44: 25,-2 + 1427: 0,4 + 1437: 0,-6 + - node: + color: '#4399095A' + id: HalfTileOverlayGreyscale270 + decals: + 2292: 0,-49 + 2293: 0,-48 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 decals: - 96: 9,-2 - 97: 9,-1 - 98: 9,0 - 563: 6,14 - 601: -26,-1 - 738: -8,-18 - 917: -14,-24 - 919: -14,-26 - 920: -14,-28 + 1856: 13,-35 + 1857: 13,-33 + 1858: 13,-31 - node: - color: '#A4610696' + color: '#D4D4D428' id: HalfTileOverlayGreyscale270 decals: - 326: -12,10 - 341: -4,11 - 342: -4,12 - 343: -4,13 - 428: -12,30 - 429: -12,29 - 430: -12,28 - 431: -12,27 - 432: -12,26 - 433: -12,25 - 434: -12,24 - 435: -12,23 - 436: -12,22 - 437: -12,21 - 438: -12,20 + 594: 22,-18 + 601: 22,-26 + 602: 22,-25 + 698: 22,-19 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 484: 5,24 - 485: 5,25 - 486: 5,26 - 487: 5,27 - 488: 5,28 - 489: 5,29 - 505: 11,16 - 506: 11,17 - 507: 11,18 - 508: 11,19 - 509: 11,20 - 554: 6,12 - 571: 8,22 - 572: 8,23 + 1783: -8,-44 + 1784: -8,-39 + 1831: -19,-34 + 1832: -19,-33 + 1833: -19,-32 + 1834: -19,-31 + 1835: -19,-30 + 1839: -14,-34 + 1840: -14,-32 + 1841: -14,-36 - node: - color: '#EFB34196' + color: '#EFD2415D' id: HalfTileOverlayGreyscale270 decals: - 827: 23,-21 - 828: 23,-22 - 829: 23,-23 - 830: 23,-24 - 831: 23,-25 - 832: 23,-27 - 891: 19,-19 - 892: 19,-17 - 893: 19,-16 - 894: 19,-14 + 1216: -8,10 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 @@ -1431,465 +2689,707 @@ entities: 14: 23,0 22: 29,-3 38: 27,0 + 1426: -2,4 + 1436: -2,-6 - node: - color: '#9FED5896' + color: '#4399095A' id: HalfTileOverlayGreyscale90 decals: - 93: 15,-2 - 94: 15,-1 - 95: 15,0 - 351: 2,9 - 359: 2,15 - 560: 14,14 - 587: -11,-1 - 729: 6,-18 - 916: -15,-23 - 918: -15,-25 - 921: -15,-27 + 2290: -2,-49 + 2291: -2,-48 - node: - color: '#A4610696' + color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 325: -7,10 - 412: -6,20 - 413: -6,22 - 414: -6,23 - 415: -6,24 - 416: -6,25 - 417: -6,26 - 418: -6,27 - 419: -6,28 - 420: -6,29 - 421: -6,30 + 1822: 6,-44 + 1823: 6,-39 + 1826: 17,-34 + 1827: 17,-33 + 1828: 17,-32 + 1829: 17,-31 + 1830: 17,-30 + 1853: 12,-36 + 1854: 12,-34 + 1855: 12,-32 - node: - color: '#DE3A3A96' + color: '#D4D4D428' id: HalfTileOverlayGreyscale90 decals: - 239: -5,-14 - 240: -5,-13 - 241: -5,-12 - 242: -5,-11 - 243: -5,-10 - 366: 2,10 - 367: 2,11 - 368: 2,12 - 369: 2,13 - 370: 2,14 - 490: 13,21 - 491: 13,22 - 492: 13,23 - 493: 13,24 - 494: 13,25 - 495: 13,27 - 496: 13,26 - 497: 13,28 - 498: 13,29 - 510: 12,16 - 511: 12,17 - 512: 12,18 - 513: 12,19 - 514: 12,20 - 555: 14,12 + 591: 20,-18 + 592: 20,-19 + 599: 20,-26 + 600: 20,-25 - node: - color: '#EFB34196' + color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 833: 27,-27 - 834: 27,-26 - 835: 27,-22 - 836: 27,-21 - 837: 27,-24 - 838: 27,-23 - 839: 27,-25 - 846: 21,-21 + 1836: -15,-31 + 1837: -15,-33 + 1838: -15,-35 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 373: -4,9 - 374: -4,14 + 377: 34,0 + 1132: 7,29 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 397: -14,25 - 398: -14,27 - 403: -13,30 - 404: -13,31 - 408: -13,20 - 409: -13,21 - 410: -13,22 + 378: 34,5 + 379: 34,-7 + 1791: 6,-42 + 1792: 6,-41 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 375: 4,-3 + 376: 34,-2 + 474: 13,0 + 475: 15,0 + 1131: -1,29 + 1363: 0,21 - node: + angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 101: 14,0 - 102: 12,0 - 237: 1,-12 - 238: -3,-12 - 565: 9,14 - 906: 16,-25 + 1789: -8,-42 + 1790: -8,-41 + - node: + color: '#FFFFFFFF' + id: MiniTileInnerOverlaySE + decals: + 2959: -27.375637,-16.637075 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: 15: 23,0 35: 28,-3 - 278: -4,1 - 279: -4,-1 - 280: -4,-2 - 285: -3,1 - 286: -2,1 - 290: -4,-3 - 615: -23,0 - 972: -3,-42 + 1430: 0,3 + 1433: -1,4 + 1434: 1,3 + 1438: 0,-7 + 1443: -1,-6 + 1473: 1,-7 - node: - color: '#52B4E996' + color: '#4399093E' id: QuarterTileOverlayGreyscale decals: - 306: 10,-13 + 267: -4,-3 + 268: -4,-2 + 269: -4,-1 + 270: -4,1 + 271: -3,1 + 272: -2,1 + - node: + color: '#43990985' + id: QuarterTileOverlayGreyscale + decals: + 2717: -28,-26 + 2718: -29,-26 + 2719: -30,-26 + 2720: -31,-26 + 2721: -32,-26 + 2722: -33,-26 + 2723: -34,-26 + 2724: -35,-26 + 2725: -36,-26 + 2726: -37,-26 + 2727: -38,-26 + 2728: -39,-26 + 2729: -40,-26 + - node: + color: '#43990996' + id: QuarterTileOverlayGreyscale + decals: + 2008: -3,-26 + 2009: -4,-26 + 2010: -5,-26 + 2011: -6,-26 + 2012: -7,-26 + 2013: -8,-26 + 2014: -9,-26 + 2015: -10,-26 + 2016: -11,-26 + 2017: -12,-26 + 2018: -13,-26 + 2019: -14,-26 + 2020: -15,-26 + 2021: -16,-26 + 2022: -17,-26 + 2023: -18,-26 + 2024: -19,-26 + 2025: -20,-26 + 2026: -21,-26 + 2027: -22,-26 + 2028: -23,-26 + 2029: -24,-26 + 2030: -25,-26 + 2031: -26,-26 + 2032: -27,-26 + - node: + color: '#8C347F96' + id: QuarterTileOverlayGreyscale + decals: + 2462: -2,-11 + 2463: -2,-10 + 2464: -2,-9 + - node: + color: '#9FED5876' + id: QuarterTileOverlayGreyscale + decals: + 431: -4,5 + 432: -5,5 + 438: -8,2 + 439: -8,1 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: - 231: -2,-10 - 256: -7,1 - 257: -7,0 - 258: -4,4 - 259: -3,4 - 260: -2,4 - 598: -26,0 - 599: -25,0 - 600: -24,0 - 624: -33,5 - 625: -32,5 - 924: -21,-23 - 939: 8,-31 - 940: 9,-31 - 941: 10,-31 - 942: 11,-31 - 943: 12,-22 - 955: 2,-32 - 956: 3,-32 - 957: 4,-32 - 958: 6,-32 - 959: 7,-32 + 1848: 17,-37 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale decals: - 253: -7,3 - 254: -7,4 - 255: -6,4 - 346: -8,17 - 349: -8,16 + 1366: -2,18 + 1367: -2,19 + 1368: -2,20 + 1369: -2,21 + 1370: -2,22 + 1371: -2,23 + 1372: -2,24 + 1373: -2,25 + 1374: -2,26 + 1375: -2,27 + 1376: -2,28 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 1197: 0,-20 - 1198: -1,-20 - 1199: -2,-20 - 1200: -3,-20 - 1201: -4,-20 - 1202: -5,-20 - 1203: 1,-20 - 1204: 2,-20 - 1205: 3,-20 + 350: 0,-5 + 351: 1,-5 + 352: 2,-5 + 353: 3,-5 + 354: 4,-5 + 355: 4,-4 + 356: 4,-3 + 357: 4,-2 + 358: 4,-1 + 2124: 2,-26 + 2125: 3,-26 + 2126: 4,-26 + 2127: 5,-26 + 2128: 6,-26 + 2129: 7,-26 + 2130: 8,-26 + 2131: 9,-26 + 2132: 10,-26 + 2133: 11,-26 + 2134: 12,-26 + 2135: 13,-26 + 2136: 14,-26 + 2137: 15,-26 + 2138: 16,-26 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale + decals: + 2366: -2,-24 + 2367: -2,-23 + 2368: -2,-22 + 2369: -2,-21 + 2370: -2,-20 + 2371: -2,-19 + 2374: -2,-16 + 2375: -2,-15 + 2376: -2,-14 + 2377: -2,-13 + 2378: -2,-12 + 2600: -2,-18 + 2601: -2,-17 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 232: -3,-11 - 544: 11,15 - 758: 19,-11 - 759: 20,-11 + 1317: 12,16 + 1318: 11,16 + 1319: 10,16 + 1782: -8,-40 - node: - color: '#EFB34196' + color: '#EFD2415D' + id: QuarterTileOverlayGreyscale + decals: + 1210: -8,3 + 1211: -8,4 + 1212: -8,5 + 1213: -7,5 + 1214: -6,5 + 1286: -7,16 + 1287: -6,16 + 1288: -5,16 + 1289: -4,16 + 1290: -3,16 + - node: + color: '#EFD84150' id: QuarterTileOverlayGreyscale decals: - 871: 30,-16 - 872: 31,-16 - 876: 19,-25 + 1508: -2,7 + 1509: -2,8 + 1510: -2,9 + 1511: -2,10 + 1512: -2,11 + 1513: -2,12 + - node: + color: '#FF3A3AEF' + id: QuarterTileOverlayGreyscale + decals: + 2467: -20,-18 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: 20: 29,-2 34: 24,1 - 960: 1,-38 - 961: 2,-38 - 962: 3,-38 - 963: 4,-38 - 970: 4,-37 - 971: 4,-36 - 973: 1,-44 + 1429: -2,5 + 1432: -1,4 + 1435: -3,5 + 1441: -2,-5 + 1442: -1,-6 + 1445: -3,-5 + - node: + color: '#43990950' + id: QuarterTileOverlayGreyscale180 + decals: + 2544: -39,-14 + - node: + color: '#43990996' + id: QuarterTileOverlayGreyscale180 + decals: + 2001: 16,-28 + 2002: 15,-28 + 2003: 14,-28 + 2051: -7,-28 + 2052: -8,-28 + 2053: -9,-28 + 2054: -10,-28 + 2055: -11,-28 + 2056: -12,-28 + 2057: -13,-28 + 2058: 0,-28 + 2059: 1,-28 + 2060: 2,-28 + 2061: 3,-28 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 244: 4,-6 - 245: 5,-6 - 246: 5,-5 - 303: 12,-15 + 807: 4,-7 + 808: 5,-7 + 809: 6,-7 + 810: 6,-6 + 811: 6,-5 + - node: + color: '#9FED5876' + id: QuarterTileOverlayGreyscale180 + decals: + 451: 2,-7 + 452: 3,-7 + 458: 6,-4 + 459: 6,-3 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 229: 0,-14 - 271: 0,-6 - 272: 1,-6 - 273: 2,-6 - 274: 5,-3 - 275: 5,-2 - 605: -20,-2 - 606: -19,-2 - 607: -18,-2 - 608: -17,-2 - 609: -16,-2 - 610: -15,-2 - 611: -14,-2 - 612: -13,-2 - 613: -12,-2 - 614: -11,-2 - 628: -30,4 - 629: -31,4 - 737: -9,-17 - 745: -15,-19 - 746: 0,-24 - 747: 0,-23 - 748: 0,-22 - 927: -19,-29 + 1824: 6,-43 + 1859: 12,-30 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 decals: - 344: -6,14 + 1355: 1,18 + 1356: 2,18 + 1357: 3,18 + 1358: 4,18 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 1194: -2,-16 - 1195: -1,-16 - 1196: 0,-16 - 1206: 1,-19 - 1207: 2,-19 - 1208: 3,-19 - 1209: -3,-19 - 1210: -4,-19 - 1211: -5,-19 + 359: -6,1 + 360: -6,2 + 361: -6,3 + 362: -5,3 + 363: -4,3 + 364: -3,3 + 2095: -27,-28 + 2096: -26,-28 + 2097: -25,-28 + 2098: -24,-28 + 2099: -23,-28 + 2100: -22,-28 + 2101: -21,-28 + 2102: -20,-28 + 2103: -19,-28 + 2104: -18,-28 + 2105: -17,-28 + 2112: -5,-28 + 2113: -4,-28 + 2114: -3,-28 + 2118: 5,-28 + 2119: 6,-28 + 2120: 7,-28 + 2121: 8,-28 + 2122: 9,-28 + 2123: 10,-28 + 2756: -40,-28 + 2757: -39,-28 + 2758: -38,-28 + 2759: -37,-28 + 2760: -36,-28 + 2761: -35,-28 + 2762: -34,-28 + 2763: -33,-28 + 2764: -32,-28 + 2765: -31,-28 + 2766: -30,-28 + 2767: -29,-28 + 2768: -28,-28 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: - 294: 10,3 - 515: 12,21 + 1308: 17,14 + 1309: 11,14 + 1310: 12,14 - node: - color: '#EFB34196' + color: '#EFD2415D' + id: QuarterTileOverlayGreyscale180 + decals: + 1292: -5,14 + 1293: -4,14 + - node: + color: '#FF3A3AEF' id: QuarterTileOverlayGreyscale180 decals: - 807: 13,-29 - 808: 17,-28 - 809: 16,-28 - 810: 15,-28 - 811: 14,-28 - 812: 17,-27 - 840: 23,-27 - 877: 21,-27 - 928: -19,-30 + 2470: -21,-17 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: 40: 28,-3 - 964: -3,-38 - 965: -4,-38 - 966: -6,-38 - 967: -5,-38 - 968: -6,-37 - 969: -6,-36 - 974: -3,-44 + 1428: 0,5 + 1440: 0,-5 - node: - color: '#52B4E996' + color: '#4399095A' id: QuarterTileOverlayGreyscale270 decals: - 304: 10,-15 + 2294: -1,-48 - node: - color: '#9FED5896' + color: '#43990985' id: QuarterTileOverlayGreyscale270 decals: - 228: -2,-14 - 266: -7,-2 - 267: -7,-3 - 268: -4,-6 - 269: -3,-6 - 270: -2,-6 - 602: -26,-2 - 603: -25,-2 - 604: -24,-2 - 630: -32,4 - 631: -33,4 - 728: 7,-17 - 736: 13,-19 - 749: -2,-24 - 750: -2,-23 - 751: -2,-22 - 915: -14,-22 - 925: -21,-30 - 926: -21,-29 - 944: 12,-29 - 945: 12,-28 - 946: 12,-24 - 947: 12,-25 - 948: 12,-26 - 949: 12,-27 + 2730: -40,-28 + 2731: -39,-28 + 2732: -38,-28 + 2733: -37,-28 + 2734: -36,-28 + 2735: -35,-28 + 2736: -34,-28 + 2737: -33,-28 + 2738: -32,-28 + 2739: -31,-28 + 2740: -30,-28 + 2741: -29,-28 + 2742: -28,-28 - node: - color: '#A4610696' + color: '#43990996' + id: QuarterTileOverlayGreyscale270 + decals: + 2035: -27,-28 + 2036: -26,-28 + 2037: -25,-28 + 2038: -24,-28 + 2039: -23,-28 + 2040: -22,-28 + 2041: -21,-28 + 2042: -20,-28 + 2043: -19,-28 + 2044: -18,-28 + 2045: -17,-28 + 2046: -16,-28 + 2047: -2,-28 + 2048: -3,-28 + 2049: -4,-28 + 2050: -5,-28 + 2062: 11,-28 + 2063: 10,-28 + 2064: 9,-28 + 2065: 8,-28 + 2066: 6,-28 + 2067: 7,-28 + 2068: 5,-28 + - node: + color: '#9FED5876' + id: QuarterTileOverlayGreyscale270 + decals: + 440: -8,-3 + 441: -8,-4 + 442: -8,-5 + 443: -8,-6 + 444: -8,-7 + 445: -7,-7 + 446: -6,-7 + 447: -5,-7 + 448: -4,-7 + - node: + color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 decals: - 345: -8,14 + 368: 2,3 + 369: 3,3 + 370: 4,3 + 371: 4,2 + 372: 4,1 + 595: 21,-18 + 603: 21,-25 + 606: 23,-26 + 699: 23,-19 + 2106: -12,-28 + 2107: -11,-28 + 2108: -10,-28 + 2109: -9,-28 + 2110: -8,-28 + 2111: -7,-28 + 2115: 1,-28 + 2116: 2,-28 + 2117: 3,-28 + 2139: 16,-28 + 2140: 15,-28 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 247: -6,-6 - 248: -7,-6 - 249: -7,-5 - 516: 13,21 - 517: 11,21 + 1300: 2,14 + 1301: 3,14 + 1302: 4,14 + 1303: 5,14 + 1304: 6,14 + 1305: 7,14 + 1306: 8,14 + 1307: 9,14 + 1311: 14,14 + 1312: 15,14 + 1781: -8,-43 + 1842: -14,-30 - node: - color: '#EFB34196' + color: '#EFD2415D' + id: QuarterTileOverlayGreyscale270 + decals: + 1291: -7,14 + - node: + color: '#FF3A3AEF' id: QuarterTileOverlayGreyscale270 decals: - 841: 27,-27 - 878: 19,-27 + 2468: -20,-17 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: 41: 24,1 - 281: 2,-2 - 282: 2,-1 - 283: 2,1 - 284: 1,1 - 287: 0,1 - 289: 2,-3 - 616: -21,0 - 975: 1,-42 + 1431: -2,3 + 1439: -2,-7 + - node: + color: '#4399093E' + id: QuarterTileOverlayGreyscale90 + decals: + 261: 0,1 + 262: 1,1 + 263: 2,1 + 264: 2,-1 + 265: 2,-2 + 277: 2,-3 + - node: + color: '#4399095A' + id: QuarterTileOverlayGreyscale90 + decals: + 2295: -1,-49 + - node: + color: '#43990996' + id: QuarterTileOverlayGreyscale90 + decals: + 1983: 16,-26 + 1984: 15,-26 + 1985: 14,-26 + 1986: 13,-26 + 1987: 12,-26 + 1988: 11,-26 + 1991: 10,-26 + 1992: 9,-26 + 1993: 8,-26 + 1994: 7,-26 + 1995: 6,-26 + 1996: 5,-26 + 1997: 3,-26 + 1998: 4,-26 + 1999: 2,-26 + 2000: 1,-26 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 233: 1,-11 - 305: 12,-13 + 2360: 0,-14 + 2361: 0,-13 + 2362: 0,-12 + 2363: 0,-11 + 2364: 0,-10 + 2365: 0,-9 + - node: + color: '#9FED5876' + id: QuarterTileOverlayGreyscale90 + decals: + 420: 6,1 + 421: 6,2 + 427: 2,5 + 428: 3,5 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 decals: - 230: 0,-10 - 261: 0,4 - 262: 1,4 - 263: 2,4 - 264: 5,1 - 265: 5,0 - 588: -11,0 - 589: -12,0 - 590: -13,0 - 591: -14,0 - 592: -15,0 - 593: -16,0 - 594: -17,0 - 595: -18,0 - 596: -20,0 - 597: -19,0 - 626: -31,5 - 627: -30,5 - 922: -15,-29 - 923: -19,-23 - 935: -10,-31 - 936: -12,-31 - 937: -11,-31 - 938: -13,-31 - 950: -4,-32 - 951: -5,-32 - 952: -6,-32 - 953: -8,-32 - 954: -9,-32 + 1825: 6,-40 + 2349: 0,-24 + 2350: 0,-23 + 2351: 0,-22 + 2352: 0,-21 + 2354: 0,-20 + 2355: 0,-19 + 2356: 0,-18 + 2357: 0,-17 + 2358: 0,-16 + 2359: 0,-15 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 347: -6,17 - 348: -6,16 + 1328: 1,16 + 1329: 2,16 + 1330: 3,16 + 1331: 4,16 + 1332: 5,16 + 1333: 6,16 + 1334: 7,16 + 1335: 8,16 + 1377: 8,27 + 1378: 8,26 + 1379: 8,25 + 1380: 8,24 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale90 + decals: + 341: -6,-1 + 342: -6,-2 + 343: -6,-3 + 344: -6,-4 + 345: -6,-5 + 346: -5,-5 + 347: -4,-5 + 348: -3,-5 + 349: -2,-5 + 596: 21,-19 + 597: 19,-18 + 604: 21,-26 + 605: 19,-25 + 2069: -4,-26 + 2070: -5,-26 + 2071: -6,-26 + 2072: -7,-26 + 2073: -8,-26 + 2074: -9,-26 + 2075: -10,-26 + 2076: -11,-26 + 2077: -12,-26 + 2078: -13,-26 + 2079: -14,-26 + 2080: -15,-26 + 2081: -16,-26 + 2082: -17,-26 + 2083: -18,-26 + 2084: -19,-26 + 2085: -20,-26 + 2086: -21,-26 + 2087: -22,-26 + 2088: -23,-26 + 2089: -24,-26 + 2090: -25,-26 + 2091: -26,-26 + 2092: -27,-26 + 2743: -28,-26 + 2744: -29,-26 + 2745: -30,-26 + 2746: -31,-26 + 2747: -32,-26 + 2748: -33,-26 + 2749: -34,-26 + 2750: -35,-26 + 2751: -36,-26 + 2752: -37,-26 + 2753: -38,-26 + 2754: -39,-26 + 2755: -40,-26 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 250: 5,3 - 251: 5,4 - 252: 4,4 - 295: 15,6 - 296: 14,6 - 297: 13,6 - 298: 12,6 - 299: 11,6 - 300: 10,6 - 543: 12,15 - 757: 22,-11 - 760: 21,-11 + 812: 6,3 + 813: 6,4 + 814: 6,5 + 815: 5,5 + 816: 4,5 + 1313: 17,16 + 1314: 16,16 + 1315: 15,16 + 1316: 14,16 + 1502: 0,7 + 1503: 0,8 + 1504: 0,9 + 1505: 0,10 + 1506: 0,11 + 1507: 0,12 + 1847: -19,-37 - node: - color: '#EFB34196' + color: '#EFD2415D' id: QuarterTileOverlayGreyscale90 decals: - 805: 13,-22 - 806: 13,-23 - 813: 17,-25 - 814: 17,-24 - 815: 15,-24 - 816: 14,-24 - 845: 21,-22 - 873: 34,-16 - 874: 33,-16 - 875: 21,-25 + 1221: -8,10 - node: - color: '#FFFFFFFF' - id: StandClear + color: '#FF3A3AEF' + id: QuarterTileOverlayGreyscale90 decals: - 779: 32,-21 + 2469: -21,-18 - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale + color: '#FFFFFFFF' + id: Remains decals: - 91: 9,1 - 225: -3,-10 - 358: -4,16 - 561: 6,15 - 622: -34,5 + 2479: -23,-5 - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale + color: '#FFFFFFFF' + id: Rock01 decals: - 318: -12,11 - 337: -15,16 - 427: -12,31 + 1474: -3,19 - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale180 + color: '#FFFFFFFF' + id: Rock02 decals: - 92: 15,-3 - 227: 1,-14 - 352: 2,8 - 546: 14,10 - 739: -9,-19 + 1475: -3,21 - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale180 + color: '#EFD2415D' + id: ThreeQuarterTileOverlayGreyscale decals: - 319: -7,9 - 339: -11,15 - 411: -6,19 + 1215: -8,11 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale270 @@ -1897,28 +3397,6 @@ entities: 21: 30,-3 36: 25,1 37: 26,0 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 90: 9,-3 - 226: -3,-14 - 350: -4,8 - 545: 6,10 - 623: -34,4 - 730: 7,-19 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 320: -12,9 - 336: -15,15 - 439: -12,19 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 570: 8,21 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 @@ -1927,936 +3405,1267 @@ entities: 42: 27,-3 43: 26,-2 - node: + angle: -1.5707963267948966 rad color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 89: 15,1 - 224: 1,-10 - 360: 2,16 - 559: 14,15 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 317: -7,11 - 338: -11,16 - 422: -6,31 - - node: - color: '#FFFFFFFF' id: WarnBox decals: - 23: 34,-6 - 24: 34,-4 - 25: 34,2 - 26: 34,4 + 1793: 8,-46 + 1794: 9,-46 + 1795: 10,-46 + 1796: 11,-46 + 1797: 12,-46 - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 1281: 20,-30 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW + color: '#DE3A3A96' + id: WarnBoxGreyscale decals: - 1280: 24,-30 + 1691: -14,-46 + 1692: -13,-46 + 1693: -12,-46 + 1694: -11,-46 + 1695: -10,-46 - node: color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleNE + id: WarnCornerGreyscaleNE decals: - 1241: 28,-32 + 1184: 7,32 - node: color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleNW + id: WarnCornerGreyscaleNW decals: - 1240: 34,-32 + 1183: -1,32 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleSE decals: - 1239: 28,-29 + 723: 13,-6 + 1192: -1,32 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleSW decals: - 1238: 34,-29 + 1187: 7,32 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 890: 21,-19 - 903: 31,-16 + 1172: 0,32 + 1173: 3,32 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 889: 23,-19 - 902: 33,-16 + 1174: 3,32 + 1175: 6,32 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 773: 29,-21 - 887: 21,-15 + 1072: -16,20 - node: - angle: 1.5707963267948966 rad color: '#FFFFFFFF' - id: WarnCornerSmallSE + id: WarnCornerSmallSW + decals: + 1071: -11,20 + - node: + color: '#52B4E996' + id: WarnFullGreyscale + decals: + 484: 10,-4 + 485: 9,-4 + - node: + color: '#DE3A3A96' + id: WarnFullGreyscale + decals: + 482: 9,2 + 483: 10,2 + 993: 13,17 + 994: 13,21 + - node: + color: '#FA750096' + id: WarnFullGreyscale decals: - 767: 29,-27 + 790: 9,-8 - node: color: '#FFFFFFFF' - id: WarnCornerSmallSW + id: WarnFullGreyscale decals: - 888: 23,-15 + 1127: -12,23 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 468: 3,30 - 469: 3,31 - 472: 3,32 - 477: 10,28 - 774: 29,-26 - 775: 29,-25 - 776: 29,-24 - 777: 29,-23 - 778: 29,-22 - 859: 29,-19 - 860: 29,-18 - 861: 29,-17 - 884: 21,-18 - 885: 21,-17 - 886: 21,-16 - 1284: 20,-29 + 200: 35,-7 + 201: 35,-6 + 202: 35,-5 + 203: 35,-4 + 204: 35,-3 + 205: 35,-2 + 206: 35,-1 + 207: 35,0 + 208: 35,1 + 209: 35,2 + 210: 35,3 + 211: 35,4 + 212: 35,5 + 769: 4,-13 + 770: 4,-12 + 771: 4,-11 + 772: 4,-10 + 774: 4,-9 + 1008: 16,22 + 1009: 16,23 + 1010: 16,24 + 1011: 16,25 + 1012: 16,26 + 1013: 16,27 + 1014: 16,28 + 1066: -16,15 + 1067: -16,16 + 1068: -16,17 + 1069: -16,18 + 1070: -16,19 + 1404: 4,19 + 1405: 4,20 + 1498: 7,7 + 1499: 7,8 - node: - color: '#FFFFFFFF' + color: '#DE3A3A96' id: WarnLineGreyscaleE decals: - 1181: 1,-17 - 1236: 28,-31 - 1237: 28,-30 + 887: 17,10 + 888: 17,4 - node: color: '#FFFFFFFF' + id: WarnLineGreyscaleE + decals: + 712: 13,-13 + 713: 13,-12 + 714: 13,-11 + 715: 13,-9 + 716: 13,-10 + 717: 13,-8 + 718: 13,-7 + 1179: -1,30 + 1180: -1,31 + 1181: 7,30 + 1182: 7,31 + 1195: 5,34 + 1196: 5,35 + 1391: -21,19 + 1392: -21,20 + 1393: -21,21 + 1394: -21,22 + 1395: -21,23 + 1396: -21,24 + 1397: -21,25 + 1398: -21,26 + 1399: -21,27 + - node: + color: '#9FED5896' + id: WarnLineGreyscaleN + decals: + 700: 33,-26 + 701: 30,-16 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleN + decals: + 480: 9,1 + 481: 10,1 + 702: 33,-16 + 889: 10,12 + 890: 16,12 + 992: 13,20 + - node: + color: '#FA750096' id: WarnLineGreyscaleN decals: - 1179: 3,-19 - 1180: -1,-16 - 1182: -4,-19 - 1183: -5,-19 + 788: 5,-9 + 789: 9,-9 - node: color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 1348: -12,22 + 2671: -41,-5 + 2672: -39,-5 + 2924: -6,12 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleS + decals: + 478: 9,-3 + 479: 10,-3 + - node: + color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 1178: -1,-20 + 991: 13,18 - node: color: '#FFFFFFFF' - id: WarnLineGreyscaleW + id: WarnLineGreyscaleS decals: - 1234: 34,-31 - 1235: 34,-30 + 719: 14,-6 + 720: 15,-6 + 721: 16,-6 + 722: 17,-6 + 1126: -12,24 + 1188: 6,32 + 1189: 5,32 + 1190: 1,32 + 1191: 0,32 - node: color: '#DE3A3A96' - id: WarnLineN + id: WarnLineGreyscaleW + decals: + 886: 9,10 + 1500: 9,7 + 1501: 9,8 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleW decals: - 522: 13,31 - 523: 5,31 - 536: 12,31 - 538: 12,31 - 539: 13,31 - 540: 5,31 - 541: 6,31 - 542: 6,31 + 213: 35,-7 + 214: 35,-6 + 215: 35,-5 + 216: 35,-4 + 217: 35,-3 + 218: 35,-2 + 219: 35,-1 + 220: 35,0 + 221: 35,1 + 222: 35,2 + 223: 35,3 + 224: 35,4 + 225: 35,5 + 1176: -1,30 + 1177: -1,31 + 1185: 7,30 + 1186: 7,31 + 1193: 1,34 + 1194: 1,35 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 667: -11,-9 - 668: -12,-9 - 669: -13,-9 - 670: -14,-9 - 671: -15,-9 - 672: -16,-9 - 768: 34,-21 - 769: 33,-21 - 770: 32,-21 - 771: 31,-21 - 772: 30,-21 - 800: 34,-14 - 801: 33,-14 - 802: 32,-14 - 803: 31,-14 - 804: 30,-14 - 853: 26,-20 - 854: 25,-20 - 855: 24,-20 - 856: 21,-20 - 857: 20,-20 - 858: 19,-20 - 882: 22,-15 - 1225: 19,-26 - 1226: 20,-26 - 1227: 21,-26 - 1282: 19,-30 - 1283: 25,-30 + 1062: -12,20 + 1063: -13,20 + 1064: -14,20 + 1065: -15,20 + 1092: -8,24 + 1093: -7,24 + 1094: -6,24 + 1095: -5,24 + 1096: -4,24 + 1481: -22,19 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 443: -14,25 - 444: -14,27 - 445: -14,26 - 446: -14,24 - 447: -14,28 - 448: -14,29 - 449: -14,23 - 470: 15,30 - 471: 15,31 - 478: 8,28 - 531: 15,32 - 862: 29,-19 - 863: 29,-18 - 864: 29,-17 - 879: 23,-18 - 880: 23,-17 - 881: 23,-16 - 1285: 24,-29 + 1001: 10,22 + 1002: 10,23 + 1003: 10,24 + 1004: 10,25 + 1005: 10,26 + 1006: 10,27 + 1007: 10,28 + 1057: -11,15 + 1058: -11,16 + 1059: -11,17 + 1060: -11,18 + 1061: -11,19 + 1406: 6,19 + 1407: 6,20 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 81: 11,-8 - 82: 12,-8 - 83: 13,-8 - 450: -10,31 - 661: -11,-5 - 662: -12,-5 - 663: -13,-5 - 664: -14,-5 - 665: -15,-5 - 666: -16,-5 - 763: 34,-27 - 764: 33,-27 - 765: 32,-27 - 766: 30,-27 - 788: 31,-27 - 847: 26,-20 - 848: 24,-20 - 849: 25,-20 - 850: 21,-20 - 851: 20,-20 - 852: 19,-20 - 883: 22,-19 - 901: 32,-16 - 1228: 21,-26 - 1229: 20,-26 - 1230: 19,-26 + 1168: 2,32 + 1169: 4,32 + 1170: 5,32 + 1171: 1,32 + 1349: -6,22 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 289: 0,-1 + 1935: 9,-31 + 2703: -48,6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 291: -2,-1 + 1936: 6,-31 + 2704: -52,6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 1041: -20,11 + 1939: 9,-36 + 2474: -21,-7 + 2706: -48,3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 1042: -22,11 + 1937: 6,-32 + 1938: 8,-36 + 2473: -23,-7 + 2705: -52,3 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 1030: 24,21 - 1063: -24,2 - 1091: 22,10 + 944: 22,19 + 960: 25,10 + 2459: -20,3 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 1031: 32,21 - 1089: 34,10 + 709: 21,-24 + 943: 30,19 + 959: 34,10 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 1082: -3,-28 - 1090: 22,13 + 282: -4,1 + 945: 22,22 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 1081: 1,-28 - 1092: 34,13 + 281: 2,1 + 706: 21,-20 + 946: 30,22 + 1950: 8,-32 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 990: 20,19 - 991: 20,20 - 992: 20,21 - 993: 20,22 - 994: 20,18 - 1000: 18,18 - 1001: 18,19 - 1002: 18,20 - 1003: 18,21 - 1004: 18,22 - 1013: 30,18 - 1014: 30,17 - 1015: 30,16 - 1021: 24,22 - 1059: -24,3 - 1060: -24,4 - 1061: -24,5 - 1062: -24,6 - 1064: -23,10 - 1065: -23,11 - 1085: 22,11 - 1086: 22,12 + 237: -4,0 + 273: -4,-3 + 274: -4,-2 + 275: -4,-1 + 287: 0,-3 + 925: 22,20 + 926: 22,21 + 955: 25,11 + 956: 25,12 + 1040: -20,12 + 1048: -23,3 + 1049: -23,4 + 1050: -23,5 + 1051: -23,6 + 1052: -23,7 + 1943: 9,-35 + 1944: 9,-34 + 1945: 9,-33 + 1946: 9,-32 + 2455: -20,4 + 2456: -20,5 + 2457: -20,6 + 2458: -20,7 + 2707: -48,4 + 2708: -48,5 + 2929: 0,-2 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 1008: 26,18 - 1009: 27,18 - 1010: 28,18 - 1011: 29,18 - 1012: 30,18 - 1023: 31,21 - 1024: 30,21 - 1025: 29,21 - 1026: 28,21 - 1027: 27,21 - 1028: 26,21 - 1029: 25,21 - 1043: 23,10 - 1044: 24,10 - 1045: 25,10 - 1046: 26,10 - 1047: 27,10 - 1048: 28,10 - 1049: 29,10 - 1050: 30,10 - 1051: 31,10 - 1052: 32,10 - 1053: 33,10 - 1054: -19,2 - 1055: -20,2 - 1056: -21,2 - 1057: -22,2 - 1058: -23,2 - 1073: -22,8 - 1074: -23,8 - 1075: -24,8 - 1076: -25,8 - 1077: -26,8 + 290: -1,-1 + 710: 20,-24 + 711: 19,-24 + 936: 23,19 + 937: 24,19 + 938: 25,19 + 939: 26,19 + 940: 27,19 + 941: 28,19 + 942: 29,19 + 947: 26,10 + 948: 27,10 + 949: 28,10 + 950: 29,10 + 951: 30,10 + 952: 31,10 + 953: 32,10 + 954: 33,10 + 1032: -23,9 + 1033: -22,9 + 1034: -21,9 + 1035: -20,9 + 1036: -19,9 + 1947: 8,-31 + 1948: 7,-31 + 2453: -18,3 + 2454: -19,3 + 2499: -26,-11 + 2500: -25,-11 + 2501: -24,-11 + 2502: -23,-11 + 2503: -22,-11 + 2504: -21,-11 + 2505: -20,-11 + 2506: -19,-11 + 2711: -51,6 + 2712: -50,6 + 2713: -49,6 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1016: 30,16 - 1017: 29,16 - 1018: 28,16 - 1019: 27,16 - 1020: 26,16 - 1032: 33,13 - 1033: 32,13 - 1034: 31,13 - 1035: 30,13 - 1036: 29,13 - 1037: 28,13 - 1038: 27,13 - 1039: 26,13 - 1040: 23,13 - 1041: 24,13 - 1042: 25,13 - 1068: -22,12 - 1069: -23,12 - 1070: -24,12 - 1071: -25,12 - 1072: -26,12 - 1078: 0,-28 - 1079: -1,-28 - 1080: -2,-28 - 1083: 1,0 - 1084: -3,0 + 240: -1,1 + 283: -3,1 + 284: -2,1 + 285: 0,1 + 286: 1,1 + 707: 20,-20 + 708: 19,-20 + 927: 23,22 + 928: 24,22 + 929: 25,22 + 930: 26,22 + 931: 27,22 + 932: 28,22 + 933: 29,22 + 1027: -23,13 + 1028: -22,13 + 1029: -21,13 + 1030: -20,13 + 1031: -19,13 + 1043: -21,11 + 1949: 7,-32 + 2472: -22,-7 + 2714: -51,3 + 2715: -50,3 + 2716: -49,3 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 995: 19,18 - 996: 19,19 - 997: 19,20 - 998: 19,21 - 999: 19,22 - 1005: 26,16 - 1006: 26,17 - 1007: 26,18 - 1022: 32,22 - 1066: -25,10 - 1067: -25,11 - 1087: 34,11 - 1088: 34,12 + 245: 2,0 + 278: 2,-3 + 279: 2,-2 + 280: 2,-1 + 292: -2,-3 + 703: 21,-23 + 704: 21,-22 + 705: 21,-21 + 934: 30,21 + 935: 30,20 + 957: 34,11 + 958: 34,12 + 1037: -22,12 + 1940: 8,-35 + 1941: 8,-34 + 1942: 8,-33 + 2709: -52,4 + 2710: -52,5 + 2930: -2,-2 + - node: + color: '#FFFFFFFF' + id: b + decals: + 1479: -34,26 + - node: + color: '#FFFFFFFF' + id: engie + decals: + 2235: -16,15 + - node: + color: '#DE3A3A96' + id: largebrush + decals: + 1478: -34,26 + - node: + color: '#D4D4D496' + id: matt + decals: + 2234: -16,-46 - type: GridAtmosphere version: 2 data: tiles: - -1,-1: - 0: 65535 - 0,-1: - 0: 65535 -4,-4: - 0: 52431 + 0: 65520 + -5,-4: + 0: 65520 -4,-3: - 0: 65532 + 0: 65524 -4,-2: - 0: 65535 + 0: 61695 + -5,-2: + 0: 62549 -4,-1: - 0: 65535 + 0: 65520 + -5,-1: + 0: 65520 + -4,0: + 0: 61695 + -4,-5: + 0: 26112 -3,-4: - 0: 64719 + 0: 65520 -3,-3: - 0: 65535 + 0: 30576 -3,-2: - 0: 65535 + 0: 28791 -3,-1: - 0: 65535 + 0: 65392 + -3,-5: + 0: 47872 + -3,0: + 0: 28799 -2,-4: - 0: 65535 + 0: 65520 -2,-3: - 0: 65535 + 0: 65520 -2,-2: - 0: 65535 + 0: 65520 -2,-1: - 0: 65535 + 0: 30583 + -2,-5: + 0: 56576 + -2,0: + 0: 63351 -1,-4: - 0: 65535 + 0: 65534 -1,-3: - 0: 65535 + 0: 61422 -1,-2: - 0: 65535 + 0: 65532 + -1,-1: + 0: 65520 + -1,0: + 0: 61695 + -1,-5: + 0: 61422 0,-4: - 0: 65535 + 0: 46079 0,-3: - 0: 65535 + 0: 49151 0,-2: + 0: 65521 + 0,-1: + 0: 32624 + 0,-5: 0: 65535 + 0,0: + 0: 61559 1,-4: - 0: 65023 - 1: 512 + 0: 61695 1,-3: 0: 65535 1,-2: - 0: 65535 + 0: 30578 1,-1: + 0: 65399 + 1,-5: 0: 65535 + 1,0: + 0: 30591 2,-4: - 0: 65535 + 0: 29303 2,-3: 0: 65535 2,-2: - 0: 65535 + 0: 65522 2,-1: - 0: 65535 + 0: 65526 + 2,-5: + 0: 32767 + 2,0: + 0: 63231 3,-4: - 0: 65535 + 0: 65295 3,-3: 0: 65535 3,-2: 0: 65535 3,-1: + 0: 65530 + 3,-5: 0: 65535 - -4,0: + 3,0: + 0: 64255 + 4,-4: + 0: 65291 + 4,-3: 0: 65535 + 4,-2: + 0: 49075 + 4,-1: + 0: 65464 + -5,0: + 0: 61695 -4,1: - 0: 65535 + 0: 56784 + -5,1: + 0: 65527 -4,2: - 0: 65535 + 0: 56784 + -5,2: + 0: 65528 -4,3: - 0: 65535 - -3,0: + 0: 61663 + -5,3: + 0: 25343 + -4,4: 0: 65535 -3,1: - 0: 65535 + 0: 30576 -3,2: - 0: 65535 + 0: 56784 -3,3: - 0: 65535 - -2,0: + 0: 64733 + -3,4: 0: 65535 -2,1: - 0: 65535 + 0: 63231 -2,2: 0: 65535 -2,3: - 0: 65535 - -1,0: - 0: 65535 + 0: 61007 + -2,4: + 0: 65486 -1,1: - 0: 65535 + 0: 60671 -1,2: - 0: 65535 + 0: 65279 -1,3: - 0: 65535 - 0,0: - 0: 65535 + 0: 65487 + -1,4: + 0: 64975 0,1: - 0: 65535 + 0: 45567 0,2: - 0: 65535 + 0: 47931 0,3: - 0: 65535 - 1,0: - 0: 65535 + 0: 65307 + 0,4: + 0: 65311 1,1: - 0: 65535 + 0: 61559 1,2: - 0: 65535 + 0: 65295 1,3: - 0: 65535 - 2,0: - 0: 65535 + 0: 65295 + 1,4: + 0: 56591 2,1: - 0: 65535 + 0: 63231 2,2: - 0: 65535 + 0: 61423 2,3: - 0: 65535 - 3,0: - 0: 65535 + 0: 65359 + 2,4: + 0: 64783 3,1: 0: 65535 3,2: 0: 65535 3,3: - 0: 65535 - 4,-4: - 0: 65535 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 + 0: 65407 + 3,4: + 0: 65327 + 4,0: + 0: 47295 + 4,1: + 0: 46015 + 4,2: + 0: 48955 + 4,3: + 0: 65311 + 4,-5: + 0: 49151 5,-4: - 0: 65535 + 0: 65295 5,-3: 0: 65535 5,-2: - 0: 65535 + 0: 65520 5,-1: 0: 65535 - 6,-4: + 5,-5: 0: 65535 - 6,-3: + 5,0: 0: 65535 + 6,-4: + 0: 15 + 1: 3584 6,-2: - 0: 65535 + 0: 65520 6,-1: 0: 65535 - 7,-4: + 6,-5: 0: 65535 - 7,-3: + 6,-3: + 1: 57344 + 6,0: 0: 65535 + 7,-4: + 0: 61007 7,-2: - 0: 65535 + 0: 65524 7,-1: 0: 65535 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,0: + 7,-5: + 0: 65407 + 7,-3: + 0: 61166 + 7,0: 0: 65535 + 8,-4: + 0: 30247 + 8,-3: + 0: 26487 + 8,-2: + 0: 65520 + 8,-1: + 0: 56831 + 4,4: + 0: 56719 5,1: - 0: 65535 + 0: 61695 5,2: - 0: 65535 + 0: 65295 5,3: - 0: 65535 - 6,0: - 0: 65535 + 0: 65295 + 5,4: + 0: 61167 6,1: - 0: 65535 - 6,2: - 0: 65535 + 0: 61183 6,3: - 0: 65535 - 7,0: + 0: 65294 + 6,2: + 0: 60942 + 6,4: 0: 65535 7,1: - 0: 65535 + 0: 57599 7,2: - 0: 65535 + 0: 65294 7,3: + 0: 65327 + 7,4: 0: 65535 - 0,-8: - 0: 65535 - 0,-7: - 0: 65535 - 0,-6: - 0: 65535 - 0,-5: - 0: 65535 - 1,-8: - 0: 65535 - 1,-7: - 0: 65535 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-8: - 0: 65535 - 2,-7: - 0: 65535 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 + 8,0: + 0: 65533 + 8,1: + 0: 45311 + 8,2: + 0: 30475 + 8,3: + 0: 30471 + 8,4: + 0: 26183 + 8,-5: + 0: 30471 + 4,-8: + 0: 3003 + 4,-9: + 0: 47899 3,-8: - 0: 65535 + 0: 15291 + 4,-7: + 0: 36863 3,-7: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 + 0: 36863 4,-6: - 0: 65535 - 4,-5: + 2: 819 + 0: 34952 + 3,-6: + 2: 4095 + 0: 16384 + 5,-8: + 0: 6007 + 5,-7: 0: 65535 5,-6: 0: 65535 - 5,-5: + 5,-9: + 0: 30464 + 6,-7: 0: 65535 6,-6: 0: 65535 - 6,-5: - 0: 65535 + 7,-7: + 0: 32767 7,-6: + 0: 30583 + 8,-7: + 0: 10103 + 8,-6: + 0: 30583 + 0,-8: + 0: 1365 + -1,-8: + 0: 36317 + 0,-7: + 0: 8191 + -1,-7: + 0: 53247 + 0,-6: 0: 65535 - 7,-5: + -1,-6: + 0: 65534 + 1,-8: + 0: 3549 + 1,-7: + 0: 4095 + 1,-6: 0: 65535 + 1,-9: + 0: 20479 + 2,-8: + 0: 2039 + 2,-7: + 0: 4095 + 2,-6: + 0: 30583 + 2,-9: + 0: 30583 + 3,-9: + 0: 47935 -4,-8: - 0: 65535 + 0: 26342 + -5,-8: + 0: 3822 -4,-7: - 0: 65535 + 0: 20479 + -5,-7: + 0: 20479 -4,-6: - 0: 65535 - -4,-5: - 0: 65535 + 0: 4368 + -5,-5: + 0: 56576 + -4,-9: + 0: 26215 -3,-8: - 0: 65535 + 0: 4095 -3,-7: - 0: 65535 + 0: 20479 + -3,-9: + 0: 32767 -3,-6: - 0: 65535 - -3,-5: - 0: 65535 + 0: 4368 -2,-8: - 0: 65535 + 0: 1365 -2,-7: - 0: 65535 + 0: 20479 + -2,-9: + 0: 8191 -2,-6: + 0: 4368 + -1,-9: + 0: 36863 + 4,5: + 0: 56781 + 3,5: + 0: 65295 + 4,6: + 0: 40413 + 3,6: 0: 65535 - -2,-5: - 0: 65535 - -1,-8: - 0: 65535 - -1,-7: - 0: 65535 - -1,-6: + 4,7: + 0: 20749 + 3,7: + 0: 65295 + 4,8: + 0: 345 + 5,5: + 0: 45055 + 5,6: + 0: 61182 + 5,7: + 0: 4096 + 6,5: 0: 65535 - -1,-5: + 6,6: 0: 65535 - 8,0: + 7,5: + 0: 49151 + 7,6: 0: 65535 - 8,1: + 8,5: + 0: 26487 + 8,6: + 0: 30583 + 0,5: + 0: 64767 + -1,5: + 0: 50685 + 0,6: 0: 65535 - 8,2: + -1,6: + 0: 56797 + 0,7: 0: 65535 - 8,3: + -1,7: + 0: 65260 + 0,8: + 0: 30543 + 1,5: + 0: 40157 + 1,6: 0: 65535 - 8,-4: + 1,7: 0: 65535 - 8,-3: - 0: 65535 - 8,-2: - 0: 65535 - 8,-1: - 0: 65535 - -4,4: - 0: 61439 + 1,8: + 0: 65311 + 2,5: + 0: 56605 + 2,6: + 0: 56797 + 2,7: + 0: 52236 + 2,8: + 0: 3276 + 3,8: + 0: 4095 + -5,4: + 0: 65030 -4,5: - 0: 65262 + 0: 8191 + -5,5: + 0: 65535 -4,6: + 0: 56797 + -5,6: 0: 65535 -4,7: - 0: 61183 - -3,4: - 0: 65535 + 1: 240 + -5,7: + 1: 224 -3,5: - 0: 65535 + 0: 8191 -3,6: - 0: 65535 + 0: 30583 -3,7: - 0: 65535 - -2,4: - 0: 65535 + 1: 240 -2,5: - 0: 65535 + 0: 20479 -2,6: 0: 65535 -2,7: - 0: 65535 - -1,4: - 0: 65535 - -1,5: - 0: 65535 - -1,6: - 0: 12287 - -1,7: - 0: 12079 - 0,4: - 0: 65535 - 0,5: - 0: 65535 - 0,6: - 0: 65535 - 0,7: - 0: 65535 - 1,4: - 0: 65535 - 1,5: - 0: 65535 - 1,6: - 0: 65535 - 1,7: - 0: 65535 - 2,4: - 0: 65535 - 2,5: - 0: 65535 - 2,6: - 0: 65535 - 2,7: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 0: 65535 - 3,6: - 0: 65535 - 3,7: - 0: 65535 - 8,-6: - 0: 65535 - 8,-5: - 0: 65535 - 4,4: - 0: 65535 - 4,5: - 0: 65535 - 4,6: - 0: 30719 - 4,7: - 0: 30583 - 5,4: - 0: 65535 - 5,5: - 0: 65535 - 5,6: - 0: 255 - 6,4: - 0: 65535 - 6,5: - 0: 65535 - 6,6: - 0: 255 - 7,4: - 0: 65535 - 7,5: - 0: 65535 - 7,6: - 0: 255 - -6,4: - 0: 14 - -5,4: - 0: 2185 - -5,5: - 0: 32768 - -5,6: - 0: 34952 - -5,7: - 0: 136 + 1: 240 + -1,8: + 0: 34830 + 1: 4352 + 5,8: + 0: 16 + 0,9: + 0: 4 + 1,9: + 0: 1 -8,0: - 0: 65535 + 0: 45311 + -8,-1: + 0: 65520 + -9,0: + 0: 62719 -8,1: + 0: 49147 + -9,1: 0: 65535 + -8,2: + 0: 13104 + -9,2: + 0: 65528 + -8,3: + 0: 51 + 1: 2048 + -9,3: + 0: 255 -7,0: - 0: 65535 + 0: 28927 -7,1: - 0: 65535 - -7,2: - 0: 65535 + 0: 32759 -7,3: - 0: 255 + 1: 1792 + -7,-1: + 0: 65520 -6,0: - 0: 65535 + 0: 63743 -6,1: 0: 65535 -6,2: - 0: 65535 + 0: 65524 -6,3: - 0: 61183 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - -4,8: - 0: 14 - -3,8: - 0: 4095 - -2,8: - 0: 287 - -1,8: - 0: 15 - 8,4: - 0: 65535 - 8,5: - 0: 65535 - 8,6: 0: 255 - 0,8: - 0: 4095 - 1,8: - 0: 4095 - 2,8: - 0: 4095 - 3,8: - 0: 4095 - 4,8: - 0: 1911 - -8,-1: - 0: 65535 - -8,-3: - 0: 34944 - -8,-2: - 0: 34952 - -7,-3: + -6,-1: 0: 65520 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-3: + -8,-4: 0: 65520 - -6,-2: - 0: 65535 - -6,-1: - 0: 65535 - -5,-3: + -8,-5: + 0: 56576 + -9,-4: 0: 65520 - -5,-2: - 0: 65535 - -5,-1: + -8,-3: + 0: 65520 + -9,-3: + 0: 56784 + -8,-2: 0: 65535 + -9,-2: + 0: 56797 -9,-1: - 0: 61166 - -9,0: - 0: 61166 - -9,1: - 0: 61166 - -4,-9: 0: 65520 - -3,-9: + -7,-4: 0: 65520 - -2,-9: - 0: 65535 - -1,-9: - 0: 65535 - 0,-9: - 0: 65535 - 1,-9: - 0: 65535 - 2,-9: - 0: 65535 - 3,-9: - 0: 65535 - 4,-8: - 0: 30719 - 2: 34816 - 4,-7: - 0: 65535 - 5,-8: - 0: 61183 - 2: 4352 - 5,-7: - 0: 65535 - 6,-8: - 0: 52479 - 3: 13056 - 6,-7: - 0: 65535 - 7,-8: - 0: 65535 - 7,-7: - 0: 65535 - 8,-8: - 0: 65535 - 8,-7: - 0: 65535 - 4,-9: - 0: 65280 - 5,-9: - 0: 65280 - 6,-9: - 0: 65280 - 7,-9: - 0: 61440 - 8,-9: - 0: 61440 - -5,-4: - 0: 8 - -2,-12: - 0: 61440 - -2,-11: - 0: 65535 - -2,-10: - 0: 65535 - -1,-12: + -7,-3: + 0: 41710 + -7,-2: + 0: 58026 + -7,-5: + 0: 26112 + -6,-4: 0: 65520 - -1,-11: + -6,-3: + 0: 61695 + -6,-2: + 0: 61695 + -6,-5: + 0: 47872 + -5,-3: + 0: 21623 + -8,4: + 1: 240 + 3: 28672 + -9,4: + 1: 17600 + -8,5: + 3: 119 + 1: 61440 + -9,5: + 1: 50244 + -8,6: + 4: 30576 + -8,7: + 1: 240 + -9,7: + 1: 196 + -7,4: + 1: 4592 + 0: 49152 + -7,5: + 1: 4369 + 0: 52428 + -7,6: + 1: 4369 + 0: 52428 + -7,7: + 1: 113 + -6,4: + 1: 240 + 0: 62464 + -6,5: 0: 65535 - -1,-10: + -6,6: 0: 65535 + -6,7: + 0: 4095 + -1,9: + 1: 1 + -9,6: + 1: 16452 + 0: 1024 0,-12: - 0: 63344 + 0: 61695 + 0,-13: + 0: 65280 + -1,-12: + 0: 61695 0,-11: 0: 65535 - 0,-10: + -1,-11: 0: 65535 + 0,-10: + 0: 4095 + -1,-10: + 0: 4095 + 0,-9: + 0: 4095 1,-12: - 0: 28672 + 0: 28791 1,-11: 0: 30583 1,-10: - 0: 30583 - -6,-9: - 0: 52352 + 0: 1911 + 1,-13: + 0: 63232 + 2,-12: + 0: 3855 + 2,-11: + 0: 65535 + 2,-10: + 0: 28927 + 2,-13: + 0: 61440 + 3,-12: + 0: 3535 + 3,-11: + 0: 21845 + 3,-10: + 0: 61525 + 3,-13: + 0: 61440 + 4,-12: + 0: 15280 + 4,-11: + 0: 47931 + 4,-10: + 0: 46003 + -4,-12: + 0: 3359 + -4,-13: + 0: 61440 + -5,-12: + 0: 28392 + -4,-11: + 0: 56797 + -4,-10: + 0: 28893 + -5,-10: + 0: 58982 -5,-9: - 0: 65520 - -6,-8: - 0: 65484 - -6,-7: + 0: 61006 + -3,-12: + 0: 1799 + -3,-11: + 0: 30583 + -3,-10: + 0: 28791 + -3,-13: + 0: 61440 + -2,-12: + 0: 61695 + -2,-11: 0: 65535 + -2,-10: + 0: 4095 + -2,-13: + 0: 65280 + -1,-13: + 0: 65280 + -8,-8: + 0: 16401 + -8,-9: + 0: 4096 + -8,-7: + 0: 20479 + -9,-7: + 0: 20479 + -8,-6: + 0: 4368 + -9,-5: + 0: 47872 + -7,-7: + 0: 20479 + -7,-8: + 0: 16401 + -7,-9: + 0: 4096 + -7,-6: + 0: 4368 + -6,-7: + 0: 20479 + -6,-8: + 0: 16401 + -6,-9: + 0: 4104 -6,-6: + 0: 4368 + -5,-6: + 0: 4368 + -6,-13: + 0: 57344 + -6,-12: + 0: 2176 + -6,-11: + 0: 34824 + -6,-10: + 0: 32896 + -5,-13: + 0: 61440 + -5,-11: + 0: 26214 + 4,-13: + 0: 61440 + 5,-13: + 0: 12288 + -12,0: + 0: 53503 + -12,-1: + 0: 65520 + -13,0: + 0: 62719 + -12,1: + 0: 3549 + -13,1: 0: 4095 - -5,-8: + -11,0: + 0: 29183 + -11,1: + 0: 1911 + -11,-1: + 0: 65528 + -10,0: + 0: 61695 + -10,1: + 0: 61439 + -10,-1: + 0: 65522 + -10,2: + 0: 61152 + -10,3: + 0: 238 + -12,-2: + 0: 56797 + -13,-2: 0: 65535 - -5,-7: + -13,-1: + 0: 65524 + -12,-3: + 0: 52416 + -11,-3: + 0: 65520 + -11,-2: 0: 65535 - -5,-6: - 0: 36863 - -5,-5: - 0: 34952 + -10,-3: + 0: 65520 + -10,-2: + 0: 65535 + -10,-4: + 0: 61152 + -10,-5: + 0: 26112 + -11,-7: + 0: 224 + -10,-7: + 0: 20479 + -10,-8: + 0: 16401 + -10,-9: + 0: 4096 + -10,-6: + 0: 4368 + -9,-8: + 0: 16401 + -9,-9: + 0: 4096 + -9,-6: + 0: 4368 + -14,-1: + 0: 65376 + -14,0: + 0: 111 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -2874,10 +4683,25 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14975 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 moles: - - 20.078888 - - 75.53487 + - 27.225372 + - 102.419266 - 0 - 0 - 0 @@ -2927,39162 +4751,56377 @@ entities: - type: GasTileOverlay - type: SpreaderGrid - type: GridPathfinding -- proto: AcousticGuitarInstrument + - type: NavMap +- proto: AccessConfiguratorUniversal entities: - - uid: 1455 - components: - - type: Transform - pos: 15.537778,1.6263883 - parent: 1668 - - uid: 2742 + - uid: 2056 components: - type: Transform - pos: 4.5448904,18.624214 + pos: -23.741184,9.797313 parent: 1668 -- proto: AirCanister +- proto: AcousticGuitarInstrument entities: - - uid: 3695 + - uid: 809 components: - type: Transform - pos: -16.5,4.5 + pos: 16.5,1.5 parent: 1668 -- proto: Airlock +- proto: AdminHypo entities: - - uid: 5314 + - uid: 797 components: - type: Transform - pos: 5.5,-16.5 + pos: 18.301601,-13.340228 parent: 1668 -- proto: AirlockArmoryLocked +- proto: AdvMopItem entities: - - uid: 2555 + - uid: 9082 components: - type: Transform - pos: 7.5,19.5 + pos: -5.9092855,-8.453645 parent: 1668 -- proto: AirlockAtmosphericsLocked +- proto: AirAlarmFreezer entities: - - uid: 4746 + - uid: 8314 components: - type: Transform - pos: 14.5,-30.5 + pos: 15.5,-20.5 parent: 1668 - - uid: 5403 +- proto: AirCanister + entities: + - uid: 4115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-30.5 + pos: -23.5,30.5 parent: 1668 - - uid: 5404 +- proto: AirlockBarLocked + entities: + - uid: 1217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-27.5 + pos: 33.5,-24.5 parent: 1668 -- proto: AirlockBarLocked - entities: - - uid: 4343 + - uid: 1279 components: - type: Transform - pos: 11.5,-22.5 + pos: 31.5,-19.5 parent: 1668 - proto: AirlockBrigGlassLocked entities: - - uid: 736 + - uid: 554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,20.5 + rot: 3.141592653589793 rad + pos: 10.5,2.5 parent: 1668 - - uid: 816 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,20.5 + rot: 3.141592653589793 rad + pos: 9.5,2.5 parent: 1668 - - uid: 856 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,16.5 + rot: 3.141592653589793 rad + pos: 10.5,6.5 parent: 1668 - - uid: 898 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,16.5 + rot: 3.141592653589793 rad + pos: 9.5,6.5 parent: 1668 - - uid: 2299 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 1604 components: - type: Transform - pos: 28.5,14.5 + pos: 16.5,13.5 parent: 1668 - - uid: 2316 + - uid: 1605 components: - type: Transform - pos: 23.5,20.5 + pos: 10.5,13.5 parent: 1668 - - uid: 2340 +- proto: AirlockBrigLocked + entities: + - uid: 1094 components: - type: Transform - pos: 24.5,18.5 + pos: 20.5,25.5 parent: 1668 - - uid: 2342 + - uid: 1955 components: - type: Transform - pos: 22.5,14.5 + pos: 19.5,17.5 parent: 1668 -- proto: AirlockBrigLocked +- proto: AirlockCargoGlassLocked entities: - - uid: 2343 + - uid: 2611 components: - type: Transform - pos: 33.5,20.5 + pos: -1.5,22.5 parent: 1668 -- proto: AirlockCargoGlassLocked +- proto: AirlockCargoLocked entities: - - uid: 1191 + - uid: 3731 components: - type: Transform - pos: -5.5,7.5 + pos: 7.5,23.5 parent: 1668 - - uid: 1629 + - uid: 3911 components: - type: Transform - pos: -6.5,13.5 + pos: 8.5,23.5 parent: 1668 - - uid: 1630 +- proto: AirlockCentralCommand + entities: + - uid: 1128 components: - type: Transform - pos: -10.5,13.5 + pos: 30.5,-7.5 parent: 1668 - - uid: 1631 + - uid: 1134 components: + - type: MetaData + name: The After Hours Bar - type: Transform - pos: -8.5,15.5 + pos: 30.5,-14.5 parent: 1668 -- proto: AirlockCargoLocked - entities: - - uid: 1192 + - uid: 1271 components: - type: Transform - pos: -5.5,5.5 + rot: -1.5707963267948966 rad + pos: 18.5,-25.5 parent: 1668 - - uid: 1632 + - uid: 1272 components: - type: Transform - pos: -10.5,18.5 + rot: -1.5707963267948966 rad + pos: 18.5,-26.5 parent: 1668 - - uid: 1633 + - uid: 1273 components: - type: Transform - pos: -6.5,18.5 + rot: -1.5707963267948966 rad + pos: 18.5,-27.5 parent: 1668 - proto: AirlockCentralCommandGlass entities: - - uid: 48 + - uid: 152 components: - type: Transform - pos: -1.5,-38.5 + pos: 0.5,-7.5 parent: 1668 - - uid: 49 + - uid: 153 components: - type: Transform - pos: -1.5,-40.5 + pos: -1.5,-7.5 parent: 1668 - - uid: 566 + - uid: 164 components: - type: Transform - pos: -0.5,-14.5 + pos: -0.5,-7.5 parent: 1668 - - uid: 567 + - uid: 310 components: - type: Transform - pos: 5.5,-18.5 + pos: 7.5,-1.5 parent: 1668 - - uid: 568 + - uid: 311 components: - type: Transform - pos: -0.5,-20.5 + pos: 18.5,-0.5 parent: 1668 - - uid: 569 + - uid: 312 components: - type: Transform - pos: -0.5,-24.5 + pos: 18.5,-1.5 parent: 1668 - - uid: 570 + - uid: 313 components: - type: Transform - pos: -6.5,-30.5 + pos: 7.5,-0.5 parent: 1668 - - uid: 571 + - uid: 316 components: - type: Transform - pos: 5.5,-30.5 + pos: 7.5,0.5 parent: 1668 - - uid: 572 + - uid: 317 components: - type: Transform - pos: -6.5,-18.5 + pos: 18.5,0.5 parent: 1668 - - uid: 573 + - uid: 587 components: - type: Transform - pos: -26.5,0.5 + pos: -8.5,-1.5 parent: 1668 - - uid: 3861 + - uid: 588 components: - type: Transform - pos: 0.5,-40.5 + pos: -8.5,-0.5 parent: 1668 - - uid: 3862 + - uid: 589 components: - type: Transform - pos: 0.5,-38.5 + pos: -8.5,0.5 parent: 1668 - - uid: 4287 + - uid: 590 components: - type: Transform - pos: 8.5,0.5 + pos: 0.5,6.5 parent: 1668 - - uid: 4339 + - uid: 591 components: - type: Transform - pos: 6.5,0.5 + pos: -0.5,6.5 parent: 1668 - - uid: 4575 + - uid: 592 components: - type: Transform - pos: 6.5,-1.5 + pos: -1.5,6.5 parent: 1668 - - uid: 4639 + - uid: 4310 components: - type: Transform - pos: 8.5,-1.5 + pos: 0.5,-24.5 parent: 1668 - - uid: 4640 + - uid: 4311 components: - type: Transform - pos: 18.5,-1.5 + pos: -0.5,-24.5 parent: 1668 - - uid: 5253 + - uid: 4312 components: - type: Transform - pos: 18.5,0.5 + pos: -1.5,-24.5 parent: 1668 - - uid: 5414 + - uid: 4625 components: - type: Transform - pos: 16.5,0.5 + pos: 16.5,-38.5 parent: 1668 - - uid: 5420 + - uid: 4626 components: - type: Transform - pos: 16.5,-1.5 + pos: 17.5,-38.5 parent: 1668 - - uid: 5853 + - uid: 4627 components: - type: Transform - pos: -0.5,-6.5 + pos: 16.5,-43.5 parent: 1668 - - uid: 5945 + - uid: 4628 components: - type: Transform - pos: -0.5,-8.5 + pos: 17.5,-43.5 parent: 1668 - - uid: 5946 + - uid: 8595 components: - type: Transform - pos: -7.5,-1.5 + rot: 3.141592653589793 rad + pos: -3.5,-14.5 parent: 1668 - - uid: 6276 + - uid: 8596 components: - type: Transform - pos: -9.5,-1.5 + rot: 3.141592653589793 rad + pos: -3.5,-13.5 parent: 1668 - - uid: 6278 + - uid: 8597 components: - type: Transform - pos: -9.5,0.5 + rot: 3.141592653589793 rad + pos: -3.5,-12.5 parent: 1668 - - uid: 6279 - components: - - type: Transform - pos: -7.5,0.5 - parent: 1668 - - uid: 6313 +- proto: AirlockCentralCommandGlassLocked + entities: + - uid: 2899 components: - type: Transform - pos: -0.5,7.5 + pos: -21.5,8.5 parent: 1668 - - uid: 6395 + - uid: 2900 components: - type: Transform - pos: -0.5,5.5 + pos: -16.5,8.5 parent: 1668 - - uid: 6396 + - uid: 4614 components: - type: Transform - pos: 15.5,13.5 + pos: 7.5,-48.5 parent: 1668 - - uid: 6475 + - uid: 4624 components: - type: Transform - pos: 15.5,11.5 + pos: -8.5,-48.5 parent: 1668 - - uid: 6476 + - uid: 7283 components: - type: Transform - pos: 5.5,11.5 + pos: -43.5,2.5 parent: 1668 - - uid: 6477 + - uid: 7284 components: - type: Transform - pos: 5.5,13.5 + pos: -49.5,2.5 parent: 1668 - - uid: 6478 + - uid: 7285 components: - type: Transform - pos: 3.5,13.5 + pos: -49.5,-3.5 parent: 1668 - - uid: 6479 + - uid: 7331 components: - type: Transform - pos: 3.5,11.5 + pos: -32.5,8.5 parent: 1668 - - uid: 6480 +- proto: AirlockCentralCommandLocked + entities: + - uid: 2663 components: - type: Transform - pos: -28.5,0.5 + pos: -16.5,3.5 parent: 1668 - - uid: 6481 + - uid: 2828 components: - type: Transform - pos: -28.5,-1.5 + pos: -14.5,12.5 parent: 1668 - - uid: 6482 + - uid: 2829 components: + - type: MetaData + name: Admiralty Office - type: Transform - pos: -26.5,-1.5 + pos: -20.5,2.5 parent: 1668 - - uid: 6484 + - uid: 3368 components: - type: Transform - pos: -15.5,-26.5 + pos: -16.5,-4.5 parent: 1668 - - uid: 6485 + - uid: 7183 components: + - type: MetaData + name: Head Administration Office - type: Transform - pos: -17.5,-26.5 + pos: -33.5,2.5 parent: 1668 - - uid: 6486 +- proto: AirlockChemistryGlassLocked + entities: + - uid: 786 components: - type: Transform - pos: -17.5,-24.5 + pos: 9.5,-7.5 parent: 1668 - - uid: 6487 +- proto: AirlockChemistryLocked + entities: + - uid: 190 components: - type: Transform - pos: -15.5,-24.5 + pos: 5.5,-7.5 parent: 1668 -- proto: AirlockCentralCommandGlassLocked +- proto: AirlockCommandGlassLocked entities: - - uid: 3572 + - uid: 6753 components: - type: Transform - pos: -23.5,7.5 + pos: -40.5,-3.5 parent: 1668 -- proto: AirlockCentralCommandLocked - entities: - - uid: 3781 + - uid: 6754 components: - type: Transform - pos: -17.5,11.5 + pos: -38.5,-3.5 parent: 1668 - - uid: 3782 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 3028 components: - type: Transform - pos: -17.5,5.5 + pos: -5.5,13.5 parent: 1668 - - uid: 3792 + - uid: 3303 components: - type: Transform - pos: -21.5,1.5 + pos: -5.5,23.5 parent: 1668 - - uid: 3793 + - uid: 3357 components: - type: Transform - pos: -19.5,7.5 + pos: -11.5,23.5 parent: 1668 -- proto: AirlockChemistryGlassLocked +- proto: AirlockEngineeringLocked entities: - - uid: 731 + - uid: 3029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-8.5 + pos: 19.5,27.5 parent: 1668 -- proto: AirlockChemistryLocked + - uid: 4165 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 1668 + - uid: 8797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-11.5 + parent: 1668 +- proto: AirlockExternal entities: - - uid: 732 + - uid: 4615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-6.5 + pos: 16.5,-48.5 parent: 1668 - - uid: 734 + - uid: 4616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-11.5 + pos: -17.5,-48.5 parent: 1668 -- proto: AirlockEngineeringGlassLocked +- proto: AirlockExternalEngineeringLocked entities: - - uid: 5175 + - uid: 4090 components: - type: Transform - pos: 32.5,-19.5 + pos: -21.5,18.5 parent: 1668 -- proto: AirlockEngineeringLocked +- proto: AirlockExternalGlass entities: - - uid: 1131 + - uid: 3660 components: - type: Transform - pos: 17.5,-12.5 + rot: 3.141592653589793 rad + pos: 2.5,33.5 parent: 1668 - - uid: 1177 + - uid: 3661 components: - type: Transform - pos: 18.5,-14.5 + rot: 3.141592653589793 rad + pos: 4.5,33.5 parent: 1668 - - uid: 1534 + - uid: 7171 components: - type: Transform - pos: -0.5,17.5 + pos: -52.5,-1.5 parent: 1668 - - uid: 2522 + - uid: 7172 components: - type: Transform - pos: 14.5,16.5 + pos: -52.5,-0.5 parent: 1668 - - uid: 3948 + - uid: 7173 components: - type: Transform - pos: -28.5,4.5 + pos: -52.5,0.5 parent: 1668 - - uid: 4258 + - uid: 7486 components: - type: Transform - pos: 27.5,-27.5 + pos: -40.5,-26.5 parent: 1668 - - uid: 4755 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 25 components: - type: Transform - pos: 18.5,-25.5 + rot: 1.5707963267948966 rad + pos: 35.5,-1.5 parent: 1668 - - uid: 4756 + - uid: 27 components: - type: Transform - pos: 22.5,-25.5 + rot: 1.5707963267948966 rad + pos: 35.5,-0.5 parent: 1668 - - uid: 4763 + - uid: 69 components: - type: Transform - pos: 16.5,-19.5 + rot: 1.5707963267948966 rad + pos: 35.5,0.5 parent: 1668 - - uid: 6005 + - uid: 72 components: - type: Transform - pos: -17.5,-29.5 + rot: 1.5707963267948966 rad + pos: 35.5,1.5 parent: 1668 -- proto: AirlockExternalGlass - entities: - - uid: 481 + - uid: 76 components: - type: Transform - pos: 33.5,4.5 + rot: 1.5707963267948966 rad + pos: 35.5,-3.5 parent: 1668 - - uid: 482 + - uid: 79 components: - type: Transform - pos: 33.5,2.5 + rot: 1.5707963267948966 rad + pos: 35.5,-4.5 parent: 1668 - - uid: 483 + - uid: 100 components: - type: Transform - pos: 33.5,-3.5 + rot: 1.5707963267948966 rad + pos: 35.5,-2.5 parent: 1668 - - uid: 484 + - uid: 114 components: - type: Transform - pos: 33.5,-5.5 + rot: 1.5707963267948966 rad + pos: 35.5,-5.5 parent: 1668 - - uid: 3970 + - uid: 122 components: - type: Transform - pos: -32.5,-1.5 + rot: 1.5707963267948966 rad + pos: 35.5,-6.5 parent: 1668 - - uid: 3971 + - uid: 202 components: - type: Transform - pos: -32.5,0.5 + rot: 1.5707963267948966 rad + pos: 35.5,2.5 parent: 1668 - - uid: 6284 + - uid: 203 components: - type: Transform - pos: -1.5,-44.5 + rot: 1.5707963267948966 rad + pos: 35.5,3.5 parent: 1668 - - uid: 6285 + - uid: 204 components: - type: Transform - pos: 0.5,-44.5 + rot: 1.5707963267948966 rad + pos: 35.5,4.5 parent: 1668 -- proto: AirlockExternalGlassCargoLocked - entities: - - uid: 620 + - uid: 205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,27.5 + rot: 1.5707963267948966 rad + pos: 35.5,5.5 parent: 1668 - - uid: 688 + - uid: 5531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,25.5 + rot: 3.141592653589793 rad + pos: -9.5,-24.5 parent: 1668 - - uid: 729 + - uid: 5532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,32.5 + rot: 3.141592653589793 rad + pos: -13.5,-24.5 parent: 1668 -- proto: AirlockExternalGlassEngineeringLocked - entities: - - uid: 730 + - uid: 5533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,22.5 + rot: 3.141592653589793 rad + pos: -5.5,-24.5 parent: 1668 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 2011: - - DoorStatus: DoorBolt -- proto: AirlockExternalGlassLocked - entities: - - uid: 4243 + - uid: 5539 components: - type: Transform - pos: -13.5,-17.5 + rot: 3.141592653589793 rad + pos: -17.5,-24.5 parent: 1668 - - uid: 5961 + - uid: 5611 components: - type: Transform - pos: -21.5,-26.5 + pos: -21.5,-28.5 parent: 1668 - - uid: 5962 + - uid: 5612 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 1668 + - uid: 5613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-24.5 + parent: 1668 + - uid: 5614 components: - type: Transform + rot: 3.141592653589793 rad pos: -21.5,-24.5 parent: 1668 -- proto: AirlockExternalGlassShuttleEmergencyLocked - entities: - - uid: 434 + - uid: 7436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,4.5 + rot: 3.141592653589793 rad + pos: -29.5,-24.5 parent: 1668 - - uid: 435 + - uid: 7441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,2.5 + rot: 3.141592653589793 rad + pos: -33.5,-24.5 parent: 1668 - - uid: 436 + - uid: 7442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-3.5 + rot: 3.141592653589793 rad + pos: -37.5,-24.5 parent: 1668 - - uid: 437 + - uid: 7443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-5.5 + pos: -37.5,-28.5 + parent: 1668 + - uid: 7444 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 1668 + - uid: 7445 + components: + - type: Transform + pos: -29.5,-28.5 parent: 1668 -- proto: AirlockExternalGlassShuttleLocked +- proto: AirlockFreezer entities: - - uid: 1613 + - uid: 2798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,25.5 + rot: 3.141592653589793 rad + pos: -18.5,14.5 parent: 1668 - - uid: 1614 +- proto: AirlockFreezerLocked + entities: + - uid: 1068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,27.5 + pos: 15.5,-24.5 parent: 1668 - - uid: 1672 + - uid: 1073 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 1668 +- proto: AirlockGlassShuttle + entities: + - uid: 3642 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,34.5 + pos: 4.5,36.5 parent: 1668 - - uid: 3968 + - uid: 3643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,36.5 + parent: 1668 + - uid: 7168 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-1.5 + pos: -55.5,-1.5 parent: 1668 - - uid: 3969 + - uid: 7169 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,0.5 + pos: -55.5,-0.5 parent: 1668 - - uid: 5959 + - uid: 7170 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-24.5 + pos: -55.5,0.5 parent: 1668 - - uid: 5960 + - uid: 7485 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-26.5 + pos: -42.5,-26.5 parent: 1668 - - uid: 6282 +- proto: AirlockHatch + entities: + - uid: 2351 components: - type: Transform - pos: -1.5,-46.5 + pos: -0.5,-32.5 parent: 1668 - - uid: 6283 + - uid: 2352 components: - type: Transform - pos: 0.5,-46.5 + pos: -7.5,-32.5 parent: 1668 -- proto: AirlockExternalLocked - entities: - - uid: 777 + - uid: 4292 components: - type: Transform - pos: -9.5,-11.5 + pos: -0.5,-28.5 parent: 1668 - - uid: 2011 + - uid: 4304 components: - type: Transform - pos: -2.5,25.5 + pos: 6.5,-32.5 parent: 1668 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 730: - - DoorStatus: DoorBolt - - uid: 4242 + - uid: 4305 components: - type: Transform - pos: -13.5,-15.5 + pos: -12.5,-30.5 parent: 1668 -- proto: AirlockFreezer - entities: - - uid: 3419 + - uid: 4306 components: - type: Transform - pos: -21.5,13.5 + pos: 11.5,-30.5 parent: 1668 -- proto: AirlockGlass - entities: - - uid: 3947 + - uid: 4629 components: - type: Transform - pos: -30.5,2.5 + pos: 16.5,-34.5 parent: 1668 - - uid: 4259 + - uid: 4630 components: - type: Transform - pos: 21.5,12.5 + pos: -17.5,-34.5 parent: 1668 - - uid: 4260 +- proto: AirlockHydroGlassLocked + entities: + - uid: 968 components: - type: Transform - pos: 21.5,11.5 + pos: 2.5,-23.5 parent: 1668 -- proto: AirlockKitchenGlassLocked +- proto: AirlockJanitorLocked entities: - - uid: 4342 + - uid: 4158 components: - type: Transform - pos: -7.5,-24.5 + pos: -3.5,-9.5 parent: 1668 -- proto: AirlockKitchenLocked +- proto: AirlockLawyerLocked entities: - - uid: 4341 + - uid: 1950 components: - type: Transform - pos: -12.5,-22.5 + pos: 29.5,13.5 parent: 1668 - proto: AirlockMedicalGlassLocked entities: - - uid: 557 + - uid: 552 components: - type: Transform - pos: 12.5,-3.5 + pos: 10.5,-3.5 parent: 1668 - - uid: 558 + - uid: 553 components: - type: Transform - pos: 14.5,-3.5 + pos: 9.5,-3.5 parent: 1668 - proto: AirlockMedicalLocked entities: - - uid: 574 - components: - - type: Transform - pos: 16.5,-6.5 - parent: 1668 - - uid: 852 + - uid: 191 components: - type: Transform - pos: 16.5,-11.5 + rot: -1.5707963267948966 rad + pos: 18.5,-5.5 parent: 1668 - - uid: 854 +- proto: AirlockScienceGlassLocked + entities: + - uid: 9130 components: - type: Transform - pos: 12.5,-17.5 + rot: 3.141592653589793 rad + pos: 20.5,-28.5 parent: 1668 -- proto: AirlockSecurityGlassLocked +- proto: AirlockSecurityGlass entities: - - uid: 130 + - uid: 4613 components: - type: Transform - pos: -7.5,-11.5 + pos: -17.5,-38.5 parent: 1668 - - uid: 774 + - uid: 4621 components: - type: Transform - pos: -5.5,-8.5 + pos: -17.5,-43.5 parent: 1668 - - uid: 974 + - uid: 4622 components: - type: Transform - pos: 23.5,-11.5 + pos: -18.5,-38.5 parent: 1668 -- proto: AirlockSecurityLawyerLocked - entities: - - uid: 349 + - uid: 4623 components: - type: Transform - pos: 19.5,17.5 + pos: -18.5,-43.5 parent: 1668 - - uid: 354 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 1581 components: - type: Transform - pos: 21.5,22.5 + rot: 1.5707963267948966 rad + pos: 8.5,10.5 parent: 1668 - - uid: 356 + - uid: 1582 components: - type: Transform - pos: 21.5,18.5 + rot: 1.5707963267948966 rad + pos: 18.5,10.5 parent: 1668 - proto: AirlockSecurityLocked entities: - - uid: 509 + - uid: 556 components: - type: Transform - pos: 18.5,-11.5 + pos: 18.5,4.5 parent: 1668 - - uid: 549 + - uid: 598 components: - type: Transform - pos: 18.5,5.5 + pos: 33.5,-14.5 parent: 1668 - - uid: 550 + - uid: 784 components: - type: Transform - pos: 16.5,5.5 + pos: 13.5,17.5 parent: 1668 - - uid: 551 + - uid: 3243 components: - type: Transform - pos: 8.5,3.5 + pos: 9.5,19.5 parent: 1668 - - uid: 552 +- proto: AirlockShuttle + entities: + - uid: 4617 components: - type: Transform - pos: 6.5,3.5 + rot: 1.5707963267948966 rad + pos: 21.5,-48.5 parent: 1668 - - uid: 775 + - uid: 4618 components: - type: Transform - pos: -5.5,-6.5 + rot: -1.5707963267948966 rad + pos: -22.5,-48.5 parent: 1668 - - uid: 2825 +- proto: AlwaysPoweredLightSodium + entities: + - uid: 4660 components: - type: Transform - pos: 5.5,23.5 + pos: 19.5,33.5 parent: 1668 -- proto: APCHyperCapacity +- proto: AmmoniaCanister entities: - - uid: 905 + - uid: 4116 components: - type: Transform - pos: -3.5,5.5 + pos: -23.5,29.5 parent: 1668 - - uid: 963 +- proto: AmmoTechFab + entities: + - uid: 2161 components: - type: Transform - pos: 20.5,6.5 + pos: 15.5,20.5 parent: 1668 - - uid: 977 +- proto: AnomalyLocatorWide + entities: + - uid: 9396 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-7.5 + pos: -22.533813,-17.224167 parent: 1668 - - uid: 978 +- proto: AnomalyScanner + entities: + - uid: 9394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-10.5 + pos: -22.492147,-17.432499 parent: 1668 - - uid: 979 +- proto: APCBasic + entities: + - uid: 2865 components: - type: Transform - pos: 9.5,2.5 + pos: -19.5,14.5 parent: 1668 - - uid: 1088 + - uid: 2943 components: - type: Transform - pos: 12.5,7.5 + pos: -19.5,8.5 parent: 1668 - - uid: 1185 +- proto: APCHyperCapacity + entities: + - uid: 215 components: - type: Transform - pos: 10.5,-3.5 + rot: 1.5707963267948966 rad + pos: 18.5,3.5 parent: 1668 - - uid: 1188 + - uid: 338 components: - type: Transform pos: -2.5,2.5 parent: 1668 - - uid: 1201 + - uid: 471 components: - type: Transform - pos: 12.5,-10.5 + rot: -1.5707963267948966 rad + pos: 7.5,3.5 parent: 1668 - - uid: 1235 + - uid: 743 components: - type: Transform - pos: 3.5,-8.5 + rot: -1.5707963267948966 rad + pos: 18.5,-7.5 parent: 1668 - - uid: 1341 + - uid: 873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-9.5 + pos: 8.5,2.5 parent: 1668 - - uid: 1615 + - uid: 874 components: - type: Transform - pos: -14.5,18.5 + pos: 8.5,-7.5 parent: 1668 - - uid: 1616 + - uid: 1391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,17.5 + rot: 3.141592653589793 rad + pos: 3.5,-24.5 parent: 1668 - - uid: 1673 + - uid: 1392 components: - type: Transform - pos: -8.5,13.5 + rot: 3.141592653589793 rad + pos: 14.5,-24.5 parent: 1668 - - uid: 1674 + - uid: 1393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,19.5 + pos: 23.5,-14.5 parent: 1668 - - uid: 1675 + - uid: 1394 components: - type: Transform - pos: 1.5,17.5 + rot: -1.5707963267948966 rad + pos: 32.5,-13.5 parent: 1668 - - uid: 1676 + - uid: 1395 components: - type: Transform - pos: -1.5,22.5 + rot: 1.5707963267948966 rad + pos: 31.5,-20.5 parent: 1668 - - uid: 1677 + - uid: 1637 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,18.5 + pos: 18.5,8.5 parent: 1668 - - uid: 1955 + - uid: 3041 components: - type: Transform - pos: 17.5,17.5 + pos: 14.5,17.5 parent: 1668 - - uid: 2010 + - uid: 3080 components: - type: Transform - pos: 24.5,14.5 - parent: 1668 - - uid: 2235 + rot: 1.5707963267948966 rad + pos: 20.5,19.5 + parent: 1668 + - uid: 3144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,21.5 + rot: 3.141592653589793 rad + pos: 28.5,9.5 parent: 1668 - - uid: 2300 + - uid: 3211 components: - type: Transform - pos: 9.5,26.5 + rot: 3.141592653589793 rad + pos: -11.5,14.5 parent: 1668 - - uid: 2317 + - uid: 3538 components: - type: Transform - pos: 7.5,16.5 + rot: 3.141592653589793 rad + pos: -19.5,18.5 parent: 1668 - - uid: 2344 + - uid: 3620 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,30.5 + pos: -2.5,28.5 parent: 1668 - - uid: 2497 + - uid: 3989 components: - type: Transform - pos: -22.5,7.5 + pos: 3.5,17.5 parent: 1668 - - uid: 2498 + - uid: 4852 components: - type: Transform - pos: -16.5,13.5 + rot: 3.141592653589793 rad + pos: -3.5,-50.5 parent: 1668 - - uid: 2499 + - uid: 4853 components: - type: Transform - pos: -22.5,13.5 + pos: -16.5,-44.5 parent: 1668 - - uid: 2500 + - uid: 4854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,6.5 + pos: 15.5,-44.5 parent: 1668 - - uid: 2556 + - uid: 4855 components: - type: Transform - pos: -31.5,2.5 + pos: 14.5,-34.5 parent: 1668 - - uid: 2558 + - uid: 4856 components: - type: Transform - pos: -31.5,7.5 + pos: -15.5,-34.5 parent: 1668 - - uid: 2562 + - uid: 4857 components: - type: Transform - pos: -21.5,-2.5 + pos: -1.5,-32.5 parent: 1668 - - uid: 2563 + - uid: 5276 components: - type: Transform - pos: -13.5,-2.5 + pos: 11.5,-37.5 parent: 1668 - - uid: 2564 + - uid: 5277 components: - type: Transform - pos: -17.5,1.5 + pos: -12.5,-37.5 parent: 1668 - - uid: 2565 + - uid: 5657 components: - type: Transform - pos: 34.5,-9.5 + pos: -7.5,-24.5 parent: 1668 - - uid: 2566 + - uid: 6479 components: - type: Transform - pos: -2.5,-24.5 + pos: -16.5,-11.5 parent: 1668 - - uid: 2755 + - uid: 6958 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-24.5 + rot: 3.141592653589793 rad + pos: -39.5,-11.5 parent: 1668 - - uid: 2771 + - uid: 6959 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-24.5 + pos: -29.5,-3.5 parent: 1668 - - uid: 2776 + - uid: 7050 components: - type: Transform - pos: -9.5,-17.5 + pos: -29.5,2.5 parent: 1668 - - uid: 2790 + - uid: 7185 components: - type: Transform - pos: 8.5,-17.5 + pos: -47.5,-3.5 parent: 1668 - - uid: 2823 + - uid: 7186 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-20.5 + pos: -51.5,2.5 parent: 1668 - - uid: 2832 + - uid: 7187 components: - type: Transform - pos: 20.5,-12.5 + rot: 3.141592653589793 rad + pos: -45.5,2.5 parent: 1668 - - uid: 2858 + - uid: 8796 components: - type: Transform - pos: 18.5,-19.5 + rot: 3.141592653589793 rad + pos: -10.5,-11.5 parent: 1668 - - uid: 2859 + - uid: 9134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-23.5 + pos: 22.5,-28.5 parent: 1668 - - uid: 2862 + - uid: 9220 components: - type: Transform - pos: 29.5,-19.5 + pos: -34.5,8.5 parent: 1668 - - uid: 2863 + - uid: 9221 components: - type: Transform - pos: 30.5,-14.5 + pos: -34.5,14.5 parent: 1668 - - uid: 2876 +- proto: Ash + entities: + - uid: 2918 components: + - type: MetaData + desc: This is Renault + name: Renault - type: Transform - pos: 32.5,-27.5 + pos: -9.525765,7.7783265 parent: 1668 - - uid: 2886 +- proto: Ashtray + entities: + - uid: 2024 components: - type: Transform - pos: 16.5,-28.5 + pos: 27.892197,27.53823 parent: 1668 - - uid: 2920 + - uid: 2025 components: - type: Transform - pos: -16.5,-30.5 + pos: 25.547268,-20.43761 parent: 1668 - - uid: 2925 + - uid: 2026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-22.5 + pos: 27.562893,-24.359486 parent: 1668 - - uid: 2926 + - uid: 6765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-28.5 + pos: -44.54551,-4.239232 parent: 1668 - - uid: 2927 + - uid: 9159 components: - type: Transform - pos: 7.5,-30.5 + pos: 20.807465,-32.49228 parent: 1668 - - uid: 2928 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 16 components: - type: Transform - pos: -8.5,-30.5 + rot: 1.5707963267948966 rad + pos: 33.5,2.5 parent: 1668 - - uid: 2944 + - uid: 18 components: - type: Transform - pos: -2.5,-34.5 + rot: 1.5707963267948966 rad + pos: 33.5,1.5 parent: 1668 - - uid: 2945 + - uid: 20 components: - type: Transform - pos: -2.5,-40.5 + rot: 1.5707963267948966 rad + pos: 33.5,-2.5 parent: 1668 - - uid: 6977 + - uid: 21 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,19.5 + rot: 1.5707963267948966 rad + pos: 33.5,-5.5 parent: 1668 -- proto: Ash - entities: - - uid: 3828 + - uid: 29 components: - type: Transform - pos: -10.652057,6.7775984 + rot: 1.5707963267948966 rad + pos: 33.5,5.5 parent: 1668 -- proto: AtmosDeviceFanTiny - entities: - - uid: 438 + - uid: 106 components: - type: Transform - pos: 35.5,-5.5 + rot: 1.5707963267948966 rad + pos: 33.5,-4.5 parent: 1668 - - uid: 439 + - uid: 123 components: - type: Transform - pos: 35.5,-3.5 + rot: 1.5707963267948966 rad + pos: 33.5,4.5 parent: 1668 - - uid: 440 + - uid: 139 components: - type: Transform - pos: 35.5,2.5 + rot: 1.5707963267948966 rad + pos: 33.5,-3.5 parent: 1668 - - uid: 441 + - uid: 140 components: - type: Transform - pos: 35.5,4.5 + rot: 1.5707963267948966 rad + pos: 33.5,-6.5 parent: 1668 - - uid: 553 + - uid: 150 components: - type: Transform - pos: 7.5,3.5 + rot: 1.5707963267948966 rad + pos: 33.5,3.5 parent: 1668 - - uid: 554 + - uid: 2548 components: - type: Transform - pos: 17.5,5.5 + rot: 3.141592653589793 rad + pos: 5.5,36.5 parent: 1668 - - uid: 555 + - uid: 2567 components: - type: Transform - pos: 17.5,-6.5 + rot: 3.141592653589793 rad + pos: 1.5,36.5 parent: 1668 - - uid: 556 + - uid: 3886 components: - type: Transform - pos: 4.5,-7.5 + rot: -1.5707963267948966 rad + pos: -3.5,31.5 parent: 1668 - - uid: 763 +- proto: AtmosDeviceFanTiny + entities: + - uid: 1 components: - type: Transform - pos: -8.5,-11.5 + pos: 35.5,-6.5 parent: 1668 - - uid: 1473 + - uid: 2 components: - type: Transform - pos: -5.5,6.5 + pos: 35.5,-5.5 parent: 1668 - - uid: 1474 + - uid: 89 components: - type: Transform - pos: -5.5,-7.5 + pos: 35.5,-0.5 parent: 1668 - - uid: 1634 + - uid: 92 components: - type: Transform - pos: -16.5,25.5 + pos: 35.5,-1.5 parent: 1668 - - uid: 1635 + - uid: 104 components: - type: Transform - pos: -16.5,27.5 + pos: 35.5,0.5 parent: 1668 - - uid: 1671 + - uid: 105 components: - type: Transform - pos: -9.5,33.5 + pos: 35.5,-4.5 parent: 1668 - - uid: 2012 + - uid: 108 components: - type: Transform - pos: -2.5,25.5 + pos: 35.5,4.5 parent: 1668 - - uid: 2921 + - uid: 135 components: - type: Transform - pos: 17.5,-11.5 + pos: 35.5,-2.5 parent: 1668 - - uid: 4144 + - uid: 146 components: - type: Transform - pos: -34.5,-1.5 + pos: 35.5,5.5 parent: 1668 - - uid: 4145 + - uid: 147 components: - type: Transform - pos: -34.5,0.5 + pos: 35.5,-3.5 parent: 1668 - - uid: 4241 + - uid: 195 components: - type: Transform - pos: -13.5,-16.5 + pos: 35.5,2.5 parent: 1668 - - uid: 5996 + - uid: 197 components: - type: Transform - pos: -23.5,-26.5 + pos: 35.5,1.5 parent: 1668 - - uid: 5997 + - uid: 199 components: - type: Transform - pos: -23.5,-24.5 + pos: 35.5,3.5 parent: 1668 - - uid: 6286 + - uid: 834 components: - type: Transform - pos: -1.5,-46.5 + pos: 18.5,-5.5 parent: 1668 - - uid: 6287 + - uid: 835 components: - type: Transform - pos: 0.5,-46.5 + pos: 18.5,4.5 parent: 1668 -- proto: AtmosFixNitrogenMarker - entities: - - uid: 6789 + - uid: 1054 components: - type: Transform - pos: 25.5,-28.5 + pos: 15.5,-24.5 parent: 1668 - - uid: 6963 + - uid: 1064 components: - type: Transform - pos: 24.5,-29.5 + pos: 14.5,-20.5 parent: 1668 - - uid: 6964 + - uid: 1274 components: - type: Transform - pos: 24.5,-29.5 + pos: 30.5,-7.5 parent: 1668 - - uid: 6965 + - uid: 1275 components: - type: Transform - pos: 24.5,-28.5 + pos: 30.5,-14.5 parent: 1668 - - uid: 6966 + - uid: 2536 components: - type: Transform - pos: 25.5,-29.5 + pos: 2.5,36.5 parent: 1668 -- proto: AtmosFixOxygenMarker - entities: - - uid: 5051 + - uid: 2566 components: - type: Transform - pos: 19.5,-28.5 + pos: 4.5,36.5 parent: 1668 - - uid: 6967 + - uid: 2676 components: - type: Transform - pos: 19.5,-28.5 + pos: 13.5,29.5 parent: 1668 - - uid: 6968 + - uid: 3020 components: - type: Transform - pos: 19.5,-29.5 + pos: -21.5,18.5 parent: 1668 - - uid: 6969 + - uid: 4619 components: - type: Transform - pos: 20.5,-28.5 + pos: 21.5,-48.5 parent: 1668 - - uid: 6970 + - uid: 4620 components: - type: Transform - pos: 20.5,-29.5 + pos: -22.5,-48.5 parent: 1668 -- proto: Autolathe - entities: - - uid: 5310 + - uid: 5646 components: - type: Transform - pos: 19.5,-22.5 + pos: -25.5,-28.5 parent: 1668 -- proto: BarSignTheLooseGoose - entities: - - uid: 4345 + - uid: 5647 components: - type: Transform - pos: 4.5,-24.5 + pos: -21.5,-28.5 parent: 1668 - - uid: 4346 + - uid: 5648 components: - type: Transform - pos: -5.5,-24.5 + pos: -25.5,-24.5 parent: 1668 -- proto: BaseGasCondenser - entities: - - uid: 640 + - uid: 5649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-32.5 + pos: -21.5,-24.5 parent: 1668 -- proto: Bed - entities: - - uid: 2718 + - uid: 5650 components: - type: Transform - pos: 5.5,18.5 + pos: -17.5,-24.5 parent: 1668 - - uid: 2763 + - uid: 5651 components: - type: Transform - pos: 16.5,21.5 + pos: -13.5,-24.5 parent: 1668 - - uid: 2774 + - uid: 5652 components: - type: Transform - pos: 16.5,24.5 + pos: -9.5,-24.5 parent: 1668 - - uid: 2864 + - uid: 5653 components: - type: Transform - pos: 3.5,24.5 + pos: -5.5,-24.5 parent: 1668 - - uid: 2865 + - uid: 7165 components: - type: Transform - pos: 3.5,27.5 + pos: -55.5,-1.5 parent: 1668 - - uid: 2866 + - uid: 7166 components: - type: Transform - pos: 16.5,27.5 + pos: -55.5,-0.5 parent: 1668 - - uid: 3624 + - uid: 7167 components: - type: Transform - pos: -15.5,8.5 + pos: -55.5,0.5 parent: 1668 -- proto: BedsheetCentcom - entities: - - uid: 3625 + - uid: 7386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,8.5 + pos: -29.5,-24.5 parent: 1668 - - uid: 6643 + - uid: 7387 components: - type: Transform - pos: 13.5,-7.5 + pos: -29.5,-28.5 parent: 1668 -- proto: BedsheetHOS - entities: - - uid: 2719 + - uid: 7388 components: - - type: MetaData - name: Warden's - type: Transform - pos: 5.5,18.5 + pos: -33.5,-28.5 parent: 1668 -- proto: BedsheetMedical - entities: - - uid: 1199 + - uid: 7389 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-14.5 + pos: -33.5,-24.5 parent: 1668 - - uid: 1200 + - uid: 7390 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-13.5 + pos: -37.5,-24.5 parent: 1668 -- proto: BedsheetOrange - entities: - - uid: 2764 + - uid: 7391 components: - type: Transform - pos: 16.5,21.5 + pos: -37.5,-28.5 parent: 1668 - - uid: 2775 + - uid: 7483 components: - type: Transform - pos: 16.5,24.5 + pos: -42.5,-26.5 parent: 1668 - - uid: 2867 +- proto: AtmosFixFreezerMarker + entities: + - uid: 1074 components: - type: Transform - pos: 3.5,24.5 + pos: 12.5,-23.5 parent: 1668 - - uid: 2868 + - uid: 1075 components: - type: Transform - pos: 3.5,27.5 + pos: 12.5,-22.5 parent: 1668 - - uid: 2869 + - uid: 1076 components: - type: Transform - pos: 16.5,27.5 + pos: 12.5,-21.5 parent: 1668 -- proto: BiomassReclaimer - entities: - - uid: 6604 + - uid: 1077 components: - type: Transform - pos: 13.5,-15.5 + pos: 13.5,-23.5 parent: 1668 -- proto: BlastDoor - entities: - - uid: 1552 + - uid: 1078 components: - type: Transform - pos: -4.5,21.5 + pos: 13.5,-22.5 parent: 1668 - - uid: 1607 + - uid: 1079 components: - type: Transform - pos: -16.5,24.5 + pos: 13.5,-21.5 parent: 1668 - - uid: 1608 + - uid: 1080 components: - type: Transform - pos: -16.5,28.5 + pos: 14.5,-23.5 parent: 1668 - - uid: 1609 + - uid: 1081 components: - type: Transform - pos: -14.5,28.5 + pos: 14.5,-22.5 parent: 1668 - - uid: 1610 + - uid: 1082 components: - type: Transform - pos: -14.5,24.5 + pos: 14.5,-21.5 parent: 1668 - - uid: 3787 + - uid: 1083 components: - type: Transform - pos: -16.5,-7.5 + pos: 15.5,-23.5 parent: 1668 - - uid: 3788 + - uid: 1084 components: - type: Transform - pos: -16.5,-6.5 + pos: 15.5,-22.5 parent: 1668 - - uid: 3789 + - uid: 1085 components: - type: Transform - pos: -16.5,-5.5 + pos: 15.5,-21.5 parent: 1668 - - uid: 4762 + - uid: 1086 components: - type: Transform - pos: 18.5,-17.5 + pos: 16.5,-23.5 parent: 1668 -- proto: BlastDoorCentralCommand - entities: - - uid: 2946 + - uid: 1087 components: - type: Transform - pos: 4.5,31.5 + pos: 16.5,-22.5 parent: 1668 - - uid: 3420 + - uid: 1088 components: - type: Transform - pos: 7.5,31.5 + pos: 16.5,-21.5 parent: 1668 - - uid: 3431 + - uid: 1089 components: - type: Transform - pos: 11.5,31.5 + pos: 17.5,-23.5 parent: 1668 - - uid: 4476 + - uid: 1090 components: - type: Transform - pos: 14.5,31.5 + pos: 17.5,-22.5 parent: 1668 -- proto: BlastDoorExterior1Open - entities: - - uid: 710 + - uid: 1091 components: - type: Transform - pos: 17.5,1.5 + pos: 17.5,-21.5 parent: 1668 - - uid: 711 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 3384 components: - type: Transform - pos: 17.5,0.5 + pos: -31.5,25.5 parent: 1668 - - uid: 712 + - uid: 3385 components: - type: Transform - pos: 17.5,-0.5 + pos: -31.5,27.5 parent: 1668 - - uid: 713 + - uid: 3386 components: - type: Transform - pos: 17.5,-1.5 + pos: -29.5,27.5 parent: 1668 - - uid: 714 + - uid: 3387 components: - type: Transform - pos: 17.5,-2.5 + pos: -31.5,26.5 parent: 1668 -- proto: BlastDoorExterior2Open - entities: - - uid: 716 + - uid: 3396 components: - type: Transform - pos: 7.5,-2.5 + pos: -30.5,27.5 parent: 1668 - - uid: 717 + - uid: 3397 components: - type: Transform - pos: 7.5,-1.5 + pos: -30.5,26.5 parent: 1668 - - uid: 718 + - uid: 3430 components: - type: Transform - pos: 7.5,-0.5 + pos: -29.5,26.5 parent: 1668 - - uid: 719 + - uid: 3431 components: - type: Transform - pos: 7.5,0.5 + pos: -29.5,25.5 parent: 1668 - - uid: 720 + - uid: 3439 components: - type: Transform - pos: 7.5,1.5 + pos: -30.5,25.5 parent: 1668 -- proto: BlastDoorOpen +- proto: AtmosFixOxygenMarker entities: - - uid: 786 + - uid: 3388 components: - type: Transform - pos: -1.5,-7.5 + pos: -29.5,20.5 parent: 1668 - - uid: 787 + - uid: 3389 components: - type: Transform - pos: -0.5,-7.5 + pos: -29.5,21.5 parent: 1668 - - uid: 788 + - uid: 3390 components: - type: Transform - pos: 0.5,-7.5 + pos: -30.5,21.5 parent: 1668 - - uid: 1430 + - uid: 3391 components: - type: Transform - pos: -1.5,6.5 + pos: -29.5,19.5 parent: 1668 - - uid: 1431 + - uid: 3395 components: - type: Transform - pos: -0.5,6.5 + pos: -30.5,20.5 parent: 1668 - - uid: 1432 + - uid: 3432 components: - type: Transform - pos: 0.5,6.5 + pos: -30.5,19.5 parent: 1668 - - uid: 1437 + - uid: 3474 components: - type: Transform - pos: -8.5,-2.5 + pos: -31.5,21.5 parent: 1668 - - uid: 1438 + - uid: 3475 components: - type: Transform - pos: -8.5,-1.5 + pos: -31.5,20.5 parent: 1668 - - uid: 1439 + - uid: 3476 components: - type: Transform - pos: -8.5,-0.5 + pos: -31.5,19.5 parent: 1668 - - uid: 1440 +- proto: Autolathe + entities: + - uid: 3272 components: - type: Transform - pos: -8.5,0.5 + pos: -5.5,21.5 parent: 1668 - - uid: 1441 +- proto: BannerNanotrasen + entities: + - uid: 9342 components: - type: Transform - pos: -8.5,1.5 + pos: -45.5,-7.5 parent: 1668 - - uid: 2146 +- proto: BarSignTheLooseGoose + entities: + - uid: 4269 components: - type: Transform - pos: 4.5,10.5 + pos: 4.5,-32.5 parent: 1668 - - uid: 2147 + - uid: 4270 components: - type: Transform - pos: 4.5,11.5 + pos: -5.5,-32.5 parent: 1668 - - uid: 2148 +- proto: Bed + entities: + - uid: 1358 components: - type: Transform - pos: 4.5,12.5 + pos: 33.5,-19.5 parent: 1668 - - uid: 2149 + - uid: 1623 components: - type: Transform - pos: 4.5,13.5 + pos: 23.5,10.5 parent: 1668 - - uid: 2150 + - uid: 1624 components: - type: Transform - pos: 4.5,14.5 + pos: 3.5,10.5 parent: 1668 - - uid: 3865 + - uid: 2826 components: - type: Transform - pos: -27.5,-0.5 + pos: -12.5,9.5 parent: 1668 - - uid: 3866 + - uid: 3729 components: - type: Transform - pos: -27.5,0.5 + pos: 8.5,18.5 parent: 1668 - - uid: 5234 + - uid: 6176 components: - type: Transform - pos: 28.5,-25.5 + pos: -19.5,-7.5 parent: 1668 - - uid: 5235 +- proto: BedsheetBlack + entities: + - uid: 1359 components: - type: Transform - pos: 28.5,-24.5 + pos: 33.5,-19.5 parent: 1668 - - uid: 5236 +- proto: BedsheetCentcom + entities: + - uid: 2827 components: - type: Transform - pos: 28.5,-23.5 + pos: -12.5,9.5 parent: 1668 - - uid: 5237 + - uid: 6177 components: - type: Transform - pos: 28.5,-22.5 + pos: -19.5,-7.5 parent: 1668 - - uid: 5238 +- proto: BedsheetMedical + entities: + - uid: 1389 components: - type: Transform - pos: 28.5,-21.5 + pos: 14.5,-7.5 parent: 1668 - - uid: 5239 + - uid: 1390 components: - type: Transform - pos: 31.5,-19.5 + pos: 14.5,-9.5 parent: 1668 - - uid: 5240 +- proto: BenchBlueComfy + entities: + - uid: 1033 components: - type: Transform - pos: 33.5,-19.5 + rot: 3.141592653589793 rad + pos: -45.5,-2.5 parent: 1668 - - uid: 5241 + - uid: 4228 components: - type: Transform - pos: 32.5,-19.5 + rot: 3.141592653589793 rad + pos: -27.5,-2.5 parent: 1668 - - uid: 5951 + - uid: 4267 components: - type: Transform - pos: -16.5,-27.5 + rot: 3.141592653589793 rad + pos: -47.5,-2.5 parent: 1668 - - uid: 5952 + - uid: 4325 components: - type: Transform - pos: -16.5,-26.5 + rot: 1.5707963267948966 rad + pos: -2.5,11.5 parent: 1668 - - uid: 5953 + - uid: 4326 components: - type: Transform - pos: -16.5,-25.5 + rot: 1.5707963267948966 rad + pos: -2.5,9.5 parent: 1668 - - uid: 5954 + - uid: 4645 components: - type: Transform - pos: -16.5,-24.5 + rot: 3.141592653589793 rad + pos: -26.5,-2.5 parent: 1668 - - uid: 5955 + - uid: 9089 components: - type: Transform - pos: -16.5,-23.5 + pos: -47.5,1.5 parent: 1668 - - uid: 6483 + - uid: 9090 components: - type: Transform - pos: -27.5,-1.5 + pos: -45.5,1.5 parent: 1668 - - uid: 6521 + - uid: 9092 components: - type: Transform - pos: -2.5,-39.5 + pos: -27.5,1.5 parent: 1668 - - uid: 6522 + - uid: 9093 components: - type: Transform - pos: -1.5,-39.5 + pos: -26.5,1.5 parent: 1668 - - uid: 6523 + - uid: 9103 components: - type: Transform - pos: -0.5,-39.5 + pos: -12.5,1.5 parent: 1668 - - uid: 6524 + - uid: 9104 components: - type: Transform - pos: 0.5,-39.5 + pos: -14.5,1.5 parent: 1668 - - uid: 6525 + - uid: 9105 components: - type: Transform - pos: 1.5,-39.5 + pos: -10.5,1.5 parent: 1668 -- proto: Bookshelf - entities: - - uid: 2370 + - uid: 9283 components: - type: Transform - pos: 23.5,23.5 + rot: 3.141592653589793 rad + pos: -12.5,-2.5 parent: 1668 - - uid: 2371 + - uid: 9284 components: - type: Transform - pos: 24.5,23.5 + rot: 3.141592653589793 rad + pos: -10.5,-2.5 parent: 1668 - - uid: 2372 + - uid: 9285 components: - type: Transform - pos: 25.5,23.5 + rot: 3.141592653589793 rad + pos: -14.5,-2.5 parent: 1668 - - uid: 2373 +- proto: Biogenerator + entities: + - uid: 996 components: - type: Transform - pos: 32.5,23.5 + pos: 7.5,-19.5 parent: 1668 - - uid: 2374 +- proto: BiomassReclaimer + entities: + - uid: 754 components: - type: Transform - pos: 33.5,23.5 + pos: 21.5,-13.5 parent: 1668 - - uid: 2375 +- proto: BlastDoor + entities: + - uid: 3912 components: - type: Transform - pos: 31.5,23.5 + pos: 5.5,19.5 parent: 1668 - - uid: 2376 + - uid: 3913 components: - type: Transform - pos: 26.5,10.5 + pos: 5.5,20.5 parent: 1668 - - uid: 2377 + - uid: 4726 components: - type: Transform - pos: 25.5,10.5 + pos: -9.5,-44.5 parent: 1668 - - uid: 2378 + - uid: 4727 components: - type: Transform - pos: 24.5,10.5 + pos: -10.5,-44.5 parent: 1668 - - uid: 2379 + - uid: 4728 components: - type: Transform - pos: 30.5,10.5 + pos: -11.5,-44.5 parent: 1668 - - uid: 2380 + - uid: 4729 components: - type: Transform - pos: 31.5,10.5 + pos: -12.5,-44.5 parent: 1668 - - uid: 2382 + - uid: 4730 components: - type: Transform - pos: 32.5,10.5 + pos: -13.5,-44.5 parent: 1668 - - uid: 3433 + - uid: 4737 components: - type: Transform - pos: -24.5,2.5 + pos: -8.5,-43.5 parent: 1668 - - uid: 3434 + - uid: 4738 components: - type: Transform - pos: -26.5,10.5 + pos: -8.5,-42.5 parent: 1668 - - uid: 3821 + - uid: 4739 components: - type: Transform - pos: -25.5,-3.5 + pos: -8.5,-41.5 parent: 1668 - - uid: 4185 + - uid: 4740 components: - type: Transform - pos: -27.5,-7.5 + pos: -8.5,-40.5 parent: 1668 - - uid: 4186 + - uid: 4741 components: - type: Transform - pos: -27.5,-6.5 + pos: -8.5,-39.5 parent: 1668 - - uid: 4187 + - uid: 4742 components: - type: Transform - pos: -27.5,-5.5 + pos: -8.5,-38.5 parent: 1668 -- proto: BookshelfFilled - entities: - - uid: 3631 + - uid: 4743 components: - type: Transform - pos: 20.5,10.5 + pos: 8.5,-44.5 parent: 1668 - - uid: 3716 + - uid: 4744 components: - type: Transform - pos: 16.5,16.5 + pos: 9.5,-44.5 parent: 1668 - - uid: 3717 + - uid: 4745 components: - type: Transform - pos: 16.5,15.5 + pos: 10.5,-44.5 parent: 1668 - - uid: 6607 + - uid: 4746 components: - type: Transform - pos: 19.5,10.5 + pos: 11.5,-44.5 parent: 1668 - - uid: 6650 + - uid: 4747 components: - type: Transform - pos: 17.5,10.5 + pos: 12.5,-44.5 parent: 1668 - - uid: 6933 + - uid: 4754 components: - type: Transform - pos: 20.5,14.5 + pos: 7.5,-38.5 parent: 1668 - - uid: 6934 + - uid: 4755 components: - type: Transform - pos: 20.5,15.5 + pos: 7.5,-39.5 parent: 1668 - - uid: 6935 + - uid: 4756 components: - type: Transform - pos: 20.5,16.5 + pos: 7.5,-40.5 parent: 1668 -- proto: BoozeDispenser - entities: - - uid: 4426 + - uid: 4757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-24.5 + pos: 7.5,-41.5 parent: 1668 - - uid: 4428 + - uid: 4758 components: - type: Transform - pos: 6.5,-21.5 + pos: 7.5,-42.5 parent: 1668 -- proto: BoxFlashbang - entities: - - uid: 1450 + - uid: 4759 components: - type: Transform - pos: 13.475631,6.6059804 + pos: 7.5,-43.5 parent: 1668 -- proto: BoxFolderBlack - entities: - - uid: 2236 + - uid: 6903 components: - type: Transform - pos: -8.478459,8.547297 + pos: -34.5,-8.5 parent: 1668 - - uid: 3750 + - uid: 6904 components: - type: Transform - pos: -20.479141,11.485098 + pos: -34.5,-7.5 parent: 1668 -- proto: BoxFolderBlue - entities: - - uid: 1443 + - uid: 6905 components: - type: Transform - pos: -0.35287756,1.4752237 + pos: -34.5,-6.5 parent: 1668 - - uid: 2462 + - uid: 9380 components: - type: Transform - pos: 30.518238,17.551378 + pos: 15.5,-42.5 parent: 1668 - - uid: 2463 + - uid: 9381 components: - type: Transform - pos: 29.486988,21.410753 + pos: 15.5,-41.5 parent: 1668 - - uid: 3839 + - uid: 9382 components: - type: Transform - pos: -24.426022,-5.7340455 + pos: 15.5,-40.5 parent: 1668 -- proto: BoxFolderCentCom - entities: - - uid: 6501 + - uid: 9383 components: - type: Transform - pos: -20.339329,11.399686 + pos: 15.5,-39.5 parent: 1668 - - uid: 6987 + - uid: 9384 components: - type: Transform - pos: 0.751516,0.4821344 + pos: -16.5,-42.5 parent: 1668 - - uid: 6990 + - uid: 9385 components: - type: Transform - pos: -20.40427,4.6069345 + pos: -16.5,-41.5 parent: 1668 -- proto: BoxFolderCentComClipboard - entities: - - uid: 2198 + - uid: 9386 components: - type: Transform - pos: -1.5118587,0.6696344 + pos: -16.5,-40.5 parent: 1668 - - uid: 6991 + - uid: 9387 components: - type: Transform - pos: -20.46677,5.55778 + pos: -16.5,-39.5 parent: 1668 -- proto: BoxFolderNuclearCodes +- proto: BlastDoorOpen entities: - - uid: 6994 + - uid: 3 components: - type: Transform - pos: -10.309893,6.5837517 + pos: 33.5,-3.5 parent: 1668 -- proto: BoxFolderRed - entities: - - uid: 1398 + - uid: 30 components: - type: Transform - pos: -3.4754791,-12.432284 + pos: 33.5,4.5 parent: 1668 - - uid: 1444 + - uid: 32 components: - type: Transform - pos: -0.22787756,1.6627237 + pos: 33.5,3.5 parent: 1668 - - uid: 2461 + - uid: 78 components: - type: Transform - pos: 27.393238,17.582628 + pos: 33.5,1.5 parent: 1668 - - uid: 3838 + - uid: 138 components: - type: Transform - pos: -24.551022,-5.5465455 + pos: 33.5,5.5 parent: 1668 - - uid: 6504 + - uid: 141 components: - type: Transform - pos: 27.483435,-7.4993086 + pos: 33.5,2.5 parent: 1668 -- proto: BoxFolderWhite - entities: - - uid: 1397 + - uid: 148 components: - type: Transform - pos: 2.5401459,-12.541659 + pos: 33.5,-2.5 parent: 1668 -- proto: BoxFolderYellow - entities: - - uid: 2230 + - uid: 196 components: - type: Transform - pos: -15.424221,14.516905 + pos: 33.5,-5.5 parent: 1668 - - uid: 2231 + - uid: 198 components: - type: Transform - pos: -8.454054,12.663795 + pos: 33.5,-6.5 parent: 1668 - - uid: 2232 + - uid: 200 components: - type: Transform - pos: -12.532179,10.67942 + pos: 33.5,-4.5 parent: 1668 - - uid: 6612 + - uid: 314 components: - type: Transform - pos: 2.170168,-2.5148773 + pos: 2.5,-3.5 parent: 1668 - - uid: 6618 + - uid: 315 components: - type: Transform - pos: 2.060793,-2.4055023 + pos: 1.5,-3.5 parent: 1668 -- proto: BoxHandcuff - entities: - - uid: 516 + - uid: 318 components: - type: Transform - pos: 21.459097,-10.359755 + pos: -0.5,-3.5 parent: 1668 - - uid: 1453 + - uid: 319 components: - type: Transform - pos: 15.460006,6.6372304 + pos: -2.5,-3.5 parent: 1668 - - uid: 3150 + - uid: 320 components: - type: Transform - pos: 10.465678,25.678463 + pos: -3.5,-3.5 parent: 1668 - - uid: 3898 + - uid: 321 components: - type: Transform - pos: -12.656932,-5.6960163 + pos: -4.5,-2.5 parent: 1668 -- proto: BoxLatexGloves - entities: - - uid: 4391 + - uid: 322 components: - type: Transform - pos: 10.34866,-7.2899737 + pos: -4.5,-1.5 parent: 1668 -- proto: BoxPDA - entities: - - uid: 1457 + - uid: 323 components: - type: Transform - pos: 1.5702643,-2.4016738 + pos: -4.5,-0.5 parent: 1668 -- proto: BoxSterileMask - entities: - - uid: 627 + - uid: 324 components: - type: Transform - pos: 10.430174,-7.5213776 + pos: -4.5,1.5 parent: 1668 -- proto: BoxZiptie - entities: - - uid: 4696 + - uid: 325 components: - type: Transform - pos: 28.527084,-11.476642 + pos: -4.5,2.5 parent: 1668 -- proto: BriefcaseBrownFilled - entities: - - uid: 2468 + - uid: 326 components: - type: Transform - pos: 34.408863,23.770128 + pos: -3.5,2.5 parent: 1668 - - uid: 2469 + - uid: 327 components: - type: Transform - pos: 34.533863,23.582628 + pos: 3.5,-2.5 parent: 1668 - - uid: 2470 + - uid: 329 components: - type: Transform - pos: 32.486988,19.707628 + pos: 3.5,-0.5 parent: 1668 -- proto: BrigTimer - entities: - - uid: 3723 + - uid: 330 components: - type: Transform - pos: 4.5,26.5 + pos: 3.5,1.5 parent: 1668 - - uid: 3870 + - uid: 331 components: - type: Transform - pos: 14.5,29.5 + pos: 3.5,2.5 parent: 1668 - - uid: 3906 + - uid: 332 components: - type: Transform - pos: 14.5,26.5 + pos: 2.5,2.5 parent: 1668 - - uid: 6602 + - uid: 333 components: - type: Transform - pos: 4.5,29.5 + pos: 0.5,2.5 parent: 1668 - - uid: 6649 + - uid: 334 components: - type: Transform - pos: 14.5,23.5 + pos: -0.5,2.5 parent: 1668 -- proto: ButtonFrameCautionSecurity - entities: - - uid: 6578 + - uid: 335 components: - type: Transform - pos: 4.5,32.5 + pos: -1.5,2.5 parent: 1668 - - uid: 6592 + - uid: 537 components: - type: Transform - pos: 14.5,32.5 + pos: 17.5,-0.5 parent: 1668 -- proto: CableApcExtension - entities: - - uid: 857 + - uid: 538 components: - type: Transform - pos: 20.5,6.5 + pos: 17.5,0.5 parent: 1668 - - uid: 858 + - uid: 539 components: - type: Transform - pos: 20.5,5.5 + pos: 17.5,1.5 parent: 1668 - - uid: 859 + - uid: 540 components: - type: Transform - pos: 20.5,4.5 + pos: 17.5,-1.5 parent: 1668 - - uid: 860 + - uid: 541 components: - type: Transform - pos: 20.5,3.5 + pos: 17.5,-2.5 parent: 1668 - - uid: 861 + - uid: 542 components: - type: Transform - pos: 20.5,2.5 + pos: 8.5,1.5 parent: 1668 - - uid: 862 + - uid: 543 components: - type: Transform - pos: 21.5,2.5 + pos: 8.5,0.5 parent: 1668 - - uid: 863 + - uid: 544 components: - type: Transform - pos: 22.5,2.5 + pos: 8.5,-0.5 parent: 1668 - - uid: 864 + - uid: 545 components: - type: Transform - pos: 23.5,2.5 + pos: 8.5,-1.5 parent: 1668 - - uid: 865 + - uid: 546 components: - type: Transform - pos: 24.5,2.5 + pos: 8.5,-2.5 parent: 1668 - - uid: 866 + - uid: 559 components: - type: Transform - pos: 25.5,2.5 + pos: 12.5,2.5 parent: 1668 - - uid: 867 + - uid: 560 components: - type: Transform - pos: 26.5,2.5 + pos: 13.5,2.5 parent: 1668 - - uid: 868 + - uid: 561 components: - type: Transform - pos: 27.5,2.5 + pos: 14.5,2.5 parent: 1668 - - uid: 869 + - uid: 562 components: - type: Transform - pos: 28.5,2.5 + pos: 15.5,2.5 parent: 1668 - - uid: 870 + - uid: 563 components: - type: Transform - pos: 29.5,2.5 + pos: 16.5,2.5 parent: 1668 - - uid: 871 + - uid: 564 components: - type: Transform - pos: 30.5,2.5 + pos: 16.5,-3.5 parent: 1668 - - uid: 872 + - uid: 565 components: - type: Transform - pos: 31.5,2.5 + pos: 15.5,-3.5 parent: 1668 - - uid: 873 + - uid: 566 components: - type: Transform - pos: 32.5,2.5 + pos: 14.5,-3.5 parent: 1668 - - uid: 874 + - uid: 567 components: - type: Transform - pos: 33.5,2.5 + pos: 13.5,-3.5 parent: 1668 - - uid: 875 + - uid: 568 components: - type: Transform - pos: 34.5,2.5 + pos: 12.5,-3.5 parent: 1668 - - uid: 876 + - uid: 609 components: - type: Transform - pos: 21.5,4.5 + pos: 18.5,4.5 parent: 1668 - - uid: 877 + - uid: 612 components: - type: Transform - pos: 22.5,4.5 + pos: 18.5,-5.5 parent: 1668 - - uid: 878 + - uid: 729 components: - type: Transform - pos: 23.5,4.5 + pos: 22.5,-7.5 parent: 1668 - - uid: 879 + - uid: 730 components: - type: Transform - pos: 24.5,4.5 + pos: 21.5,-7.5 parent: 1668 - - uid: 880 + - uid: 731 components: - type: Transform - pos: 25.5,4.5 + pos: 20.5,-7.5 parent: 1668 - - uid: 881 + - uid: 1140 components: - type: Transform - pos: 26.5,4.5 + pos: 31.5,-8.5 parent: 1668 - - uid: 882 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 1141 components: - type: Transform - pos: 27.5,4.5 + pos: 30.5,-8.5 parent: 1668 - - uid: 883 + - uid: 1142 components: - type: Transform - pos: 28.5,4.5 + pos: 29.5,-8.5 parent: 1668 - - uid: 884 + - uid: 1143 components: - type: Transform - pos: 29.5,4.5 + pos: 31.5,-13.5 parent: 1668 - - uid: 885 + - uid: 1144 components: - type: Transform - pos: 30.5,4.5 + pos: 30.5,-13.5 parent: 1668 - - uid: 886 + - uid: 1145 components: - type: Transform - pos: 31.5,4.5 + pos: 29.5,-13.5 parent: 1668 - - uid: 887 + - uid: 2252 components: - type: Transform - pos: 32.5,4.5 + pos: 16.5,21.5 parent: 1668 - - uid: 888 + - uid: 2253 components: - type: Transform - pos: 33.5,4.5 + pos: 15.5,21.5 parent: 1668 - - uid: 889 + - uid: 2256 components: - type: Transform - pos: 26.5,5.5 + pos: 11.5,21.5 parent: 1668 - - uid: 890 + - uid: 2257 components: - type: Transform - pos: 30.5,6.5 + pos: 10.5,21.5 parent: 1668 - - uid: 891 + - uid: 2804 components: - type: Transform - pos: 28.5,6.5 + pos: -19.5,15.5 parent: 1668 - - uid: 892 + - uid: 2805 components: - type: Transform - pos: 20.5,-2.5 + pos: -19.5,16.5 parent: 1668 - - uid: 893 +- proto: BluespaceBeaker + entities: + - uid: 908 components: - type: Transform - pos: 24.5,7.5 + pos: 10.462108,-8.316433 parent: 1668 - - uid: 894 +- proto: BookshelfFilled + entities: + - uid: 1990 components: - type: Transform - pos: 20.5,-1.5 + pos: 31.5,27.5 parent: 1668 - - uid: 895 + - uid: 1991 components: - type: Transform - pos: 20.5,-0.5 + pos: 30.5,27.5 parent: 1668 - - uid: 896 + - uid: 1992 components: - type: Transform - pos: 32.5,1.5 + pos: 29.5,27.5 parent: 1668 - - uid: 897 + - uid: 1993 components: - type: Transform - pos: 32.5,0.5 + pos: 23.5,27.5 parent: 1668 - - uid: 899 + - uid: 1994 components: - type: Transform - pos: 29.5,6.5 + pos: 22.5,27.5 parent: 1668 - - uid: 900 + - uid: 1995 components: - type: Transform - pos: 28.5,7.5 + pos: 21.5,27.5 parent: 1668 - - uid: 901 + - uid: 2655 components: - type: Transform - pos: 31.5,5.5 + pos: -23.5,11.5 parent: 1668 - - uid: 902 + - uid: 4446 components: - type: Transform - pos: 24.5,6.5 + pos: 6.5,-49.5 parent: 1668 - - uid: 903 + - uid: 4447 components: - type: Transform - pos: 23.5,6.5 + pos: -7.5,-49.5 parent: 1668 - - uid: 904 + - uid: 6717 components: - type: Transform - pos: 22.5,6.5 + pos: -43.5,-10.5 parent: 1668 - - uid: 906 + - uid: 6718 components: - type: Transform - pos: 20.5,-7.5 + pos: -43.5,-4.5 parent: 1668 - - uid: 907 +- proto: BookSpaceLaw + entities: + - uid: 2028 components: - type: Transform - pos: 20.5,-6.5 + pos: 25.54731,24.447483 parent: 1668 - - uid: 908 + - uid: 6769 components: - type: Transform - pos: 20.5,-5.5 + pos: -45.467384,-10.474911 parent: 1668 - - uid: 909 +- proto: BoozeDispenser + entities: + - uid: 1212 components: - type: Transform - pos: 20.5,-4.5 + pos: 28.5,-21.5 parent: 1668 - - uid: 910 + - uid: 1240 components: - type: Transform - pos: 20.5,-3.5 + rot: -1.5707963267948966 rad + pos: 30.5,-20.5 parent: 1668 - - uid: 911 + - uid: 4082 components: - type: Transform - pos: 21.5,-3.5 + rot: 1.5707963267948966 rad + pos: -19.5,26.5 parent: 1668 - - uid: 912 + - uid: 4281 components: - type: Transform - pos: 22.5,-3.5 + rot: -1.5707963267948966 rad + pos: 10.5,-32.5 parent: 1668 - - uid: 913 +- proto: BorgCharger + entities: + - uid: 4067 components: - type: Transform - pos: 23.5,-3.5 + pos: 6.5,-6.5 parent: 1668 - - uid: 914 + - uid: 4087 components: - type: Transform - pos: 24.5,-3.5 + pos: 6.5,5.5 parent: 1668 - - uid: 915 + - uid: 4659 components: - type: Transform - pos: 25.5,-3.5 + pos: 28.5,-15.5 parent: 1668 - - uid: 916 + - uid: 4661 components: - type: Transform - pos: 26.5,-3.5 + pos: -6.5,14.5 parent: 1668 - - uid: 917 +- proto: BoxDarts + entities: + - uid: 9173 components: - type: Transform - pos: 27.5,-3.5 + pos: 20.585056,-31.441444 parent: 1668 - - uid: 918 +- proto: BoxFolderBlack + entities: + - uid: 2863 components: - type: Transform - pos: 28.5,-3.5 + pos: -17.608786,12.723077 parent: 1668 - - uid: 919 +- proto: BoxFolderBlue + entities: + - uid: 534 components: - type: Transform - pos: 29.5,-3.5 + pos: -0.24795187,1.5721796 parent: 1668 - - uid: 920 + - uid: 1986 components: - type: Transform - pos: 30.5,-3.5 + pos: 28.5,23.5 parent: 1668 - - uid: 921 + - uid: 1989 components: - type: Transform - pos: 31.5,-3.5 + pos: 27.5,21.5 parent: 1668 - - uid: 922 + - uid: 2083 components: - type: Transform - pos: 32.5,-3.5 + pos: 32.58944,11.550044 parent: 1668 - - uid: 923 + - uid: 6767 components: - type: Transform - pos: 33.5,-3.5 + pos: -42.373634,-6.5999103 parent: 1668 - - uid: 924 +- proto: BoxFolderCentCom + entities: + - uid: 10 components: - type: Transform - pos: 34.5,-3.5 + pos: -3.4334178,-1.6784649 parent: 1668 - - uid: 925 + - uid: 535 components: - type: Transform - pos: 21.5,-5.5 + pos: -1.3885769,0.99405456 parent: 1668 - - uid: 926 + - uid: 2086 components: - type: Transform - pos: 22.5,-5.5 + pos: 27.53265,11.702644 parent: 1668 - - uid: 927 + - uid: 2862 components: - type: Transform - pos: 23.5,-5.5 + pos: -17.46816,12.582452 parent: 1668 - - uid: 928 +- proto: BoxFolderCentComClipboard + entities: + - uid: 482 components: - type: Transform - pos: 24.5,-5.5 + pos: -3.6052928,-1.4909649 parent: 1668 - - uid: 929 + - uid: 5999 components: - type: Transform - pos: 25.5,-5.5 + pos: -17.57402,4.5567474 parent: 1668 - - uid: 930 + - uid: 9079 components: - type: Transform - pos: 26.5,-5.5 + pos: -7.0432096,-9.420659 parent: 1668 - - uid: 931 + - uid: 9189 components: - type: Transform - pos: 27.5,-5.5 + pos: -42.40472,-7.469842 parent: 1668 - - uid: 932 +- proto: BoxFolderClipboard + entities: + - uid: 6758 components: - type: Transform - pos: 28.5,-5.5 + pos: -38.5,-8.5 parent: 1668 - - uid: 933 +- proto: BoxFolderRed + entities: + - uid: 533 components: - type: Transform - pos: 29.5,-5.5 + pos: -0.71670187,1.5721796 parent: 1668 - - uid: 934 + - uid: 1987 components: - type: Transform - pos: 30.5,-5.5 + pos: 24.5,23.5 parent: 1668 - - uid: 935 + - uid: 1988 components: - type: Transform - pos: 31.5,-5.5 + pos: 25.5,21.5 parent: 1668 - - uid: 936 + - uid: 2089 components: - type: Transform - pos: 32.5,-5.5 + pos: 32.386314,11.675044 parent: 1668 - - uid: 937 + - uid: 6768 components: - type: Transform - pos: 33.5,-5.5 + pos: -42.498634,-6.4436603 parent: 1668 - - uid: 938 +- proto: BoxHandcuff + entities: + - uid: 1318 components: - type: Transform - pos: 31.5,-6.5 + pos: 34.528294,-12.44674 parent: 1668 - - uid: 939 + - uid: 1743 components: - type: Transform - pos: 31.5,-7.5 + pos: 14.5,6.5 parent: 1668 - - uid: 940 + - uid: 9214 components: - type: Transform - pos: 21.5,-7.5 + pos: -31.104265,-7.282342 parent: 1668 - - uid: 941 +- proto: BoxHeadset + entities: + - uid: 8815 components: - type: Transform - pos: 21.5,6.5 + pos: -13.5,-6.5 parent: 1668 - - uid: 942 +- proto: BoxingBell + entities: + - uid: 9474 components: - type: Transform - pos: 31.5,6.5 + pos: -0.5,-45.5 parent: 1668 - - uid: 943 +- proto: BoxLethalshot + entities: + - uid: 1093 components: - type: Transform - pos: 33.5,3.5 + pos: 34.536674,-20.85105 parent: 1668 - - uid: 944 +- proto: BoxMagazineLightRifle + entities: + - uid: 2337 components: - type: Transform - pos: 33.5,5.5 + pos: 11.480659,26.837893 parent: 1668 - - uid: 945 + - uid: 2338 components: - type: Transform - pos: 33.5,1.5 + pos: 11.480659,26.619143 parent: 1668 - - uid: 946 +- proto: BoxMagazinePistolPractice + entities: + - uid: 2984 components: - type: Transform - pos: 35.5,2.5 + pos: 11.430329,8.720324 parent: 1668 - - uid: 947 +- proto: BoxMagazinePistolSubMachineGun + entities: + - uid: 2314 components: - type: Transform - pos: 35.5,1.5 + pos: 11.418159,34.79275 parent: 1668 - - uid: 948 + - uid: 2315 components: - type: Transform - pos: 35.5,3.5 + pos: 11.418159,34.589626 parent: 1668 - - uid: 949 + - uid: 2339 components: - type: Transform - pos: 35.5,4.5 + pos: 11.511909,22.860062 parent: 1668 - - uid: 950 + - uid: 2341 components: - type: Transform - pos: 35.5,5.5 + pos: 11.511909,22.641312 parent: 1668 - - uid: 951 +- proto: BoxMagazinePistolSubMachineGunPractice + entities: + - uid: 1742 components: - type: Transform - pos: 35.5,-3.5 + pos: 11.445954,9.423449 parent: 1668 - - uid: 952 +- proto: BoxMagazinePistolSubMachineGunTopMounted + entities: + - uid: 2334 components: - type: Transform - pos: 35.5,-2.5 + pos: 16.465034,26.650393 parent: 1668 - - uid: 953 + - uid: 2340 components: - type: Transform - pos: 35.5,-4.5 + pos: 16.465034,26.837893 parent: 1668 - - uid: 954 +- proto: BoxMagazineRifle + entities: + - uid: 2335 components: - type: Transform - pos: 35.5,-5.5 + pos: 11.449409,24.806643 parent: 1668 - - uid: 955 + - uid: 2336 components: - type: Transform - pos: 35.5,-6.5 + pos: 11.433784,24.603518 parent: 1668 - - uid: 956 + - uid: 2591 components: - type: Transform - pos: 33.5,-6.5 + pos: 11.398422,30.843575 parent: 1668 - - uid: 957 + - uid: 2592 components: - type: Transform - pos: 33.5,-4.5 + pos: 11.384534,30.704685 parent: 1668 - - uid: 958 + - uid: 2593 components: - type: Transform - pos: 33.5,-2.5 + pos: 11.384534,30.558851 parent: 1668 - - uid: 959 + - uid: 6821 components: - type: Transform - pos: 34.5,-2.5 - parent: 1668 - - uid: 960 + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6837 components: - type: Transform - pos: 34.5,-1.5 - parent: 1668 - - uid: 961 + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazineRiflePractice + entities: + - uid: 1735 components: - type: Transform - pos: 34.5,0.5 + pos: 11.430329,9.079699 parent: 1668 - - uid: 962 +- proto: BoxMagazineShotgun + entities: + - uid: 2362 components: - type: Transform - pos: 34.5,1.5 + pos: 16.204163,22.856552 parent: 1668 - - uid: 964 + - uid: 2370 components: - type: Transform - pos: 23.5,-10.5 + pos: 16.162495,24.820536 parent: 1668 - - uid: 965 +- proto: BoxMagazineShotgunBeanbag + entities: + - uid: 2365 components: - type: Transform - pos: 24.5,-10.5 + pos: 16.631245,22.502384 parent: 1668 - - uid: 966 + - uid: 2373 components: - type: Transform - pos: 25.5,-10.5 + pos: 16.610413,24.49762 parent: 1668 - - uid: 967 +- proto: BoxMagazineShotgunIncendiary + entities: + - uid: 2364 components: - type: Transform - pos: 26.5,-10.5 + pos: 16.162495,22.502384 parent: 1668 - - uid: 968 + - uid: 2372 components: - type: Transform - pos: 26.5,-9.5 + pos: 16.152079,24.508036 parent: 1668 - - uid: 969 +- proto: BoxMagazineShotgunSlug + entities: + - uid: 2363 components: - type: Transform - pos: 26.5,-8.5 + pos: 16.672913,22.856552 parent: 1668 - - uid: 970 + - uid: 2371 components: - type: Transform - pos: 26.5,-11.5 + pos: 16.641663,24.820536 parent: 1668 - - uid: 971 +- proto: BoxMouthSwab + entities: + - uid: 1050 components: - type: Transform - pos: 22.5,-10.5 + pos: 7.410587,-21.300282 parent: 1668 - - uid: 972 +- proto: BoxMRE + entities: + - uid: 9186 components: - type: Transform - pos: 22.5,-11.5 + pos: -31.27614,-8.235467 parent: 1668 - - uid: 973 + - uid: 9200 components: - type: Transform - pos: 21.5,-11.5 + pos: -31.416765,-8.047967 parent: 1668 - - uid: 975 +- proto: BoxShellTranquilizer + entities: + - uid: 1323 components: - type: Transform - pos: 20.5,-10.5 + pos: 34.536674,-21.41355 parent: 1668 - - uid: 976 +- proto: BoxShotgunFlare + entities: + - uid: 1329 components: - type: Transform - pos: 32.5,-0.5 + pos: 34.567924,-22.2573 parent: 1668 - - uid: 980 +- proto: BoxShotgunIncendiary + entities: + - uid: 1311 components: - type: Transform - pos: 9.5,2.5 + pos: 34.52105,-21.1323 parent: 1668 - - uid: 981 +- proto: BoxShotgunSlug + entities: + - uid: 1335 components: - type: Transform - pos: 9.5,1.5 + pos: 34.5523,-21.72605 parent: 1668 - - uid: 982 +- proto: BoxShotgunUranium + entities: + - uid: 1334 components: - type: Transform - pos: 9.5,0.5 + pos: 34.567924,-21.97605 parent: 1668 - - uid: 983 +- proto: BoxZiptie + entities: + - uid: 1744 components: - type: Transform - pos: 9.5,-0.5 + pos: 13.5,7.5 parent: 1668 - - uid: 984 + - uid: 6811 components: - type: Transform - pos: 9.5,-1.5 - parent: 1668 - - uid: 985 + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6844 components: - type: Transform - pos: 9.5,-2.5 - parent: 1668 - - uid: 986 + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6899 components: - type: Transform - pos: 10.5,-0.5 - parent: 1668 - - uid: 987 + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BrigTimer + entities: + - uid: 1601 components: - type: Transform - pos: 11.5,-0.5 + pos: 18.5,9.5 parent: 1668 - - uid: 988 + - type: DeviceLinkSource + linkedPorts: + 1582: + - Start: Close + - Timer: Open + - uid: 1602 components: - type: Transform - pos: 12.5,-0.5 + pos: 8.5,9.5 parent: 1668 - - uid: 989 + - type: DeviceLinkSource + linkedPorts: + 1581: + - Start: Close + - Timer: Open +- proto: Bucket + entities: + - uid: 1034 components: - type: Transform - pos: 13.5,-0.5 + pos: 6.5287576,-19.333141 parent: 1668 - - uid: 990 +- proto: ButchCleaver + entities: + - uid: 1189 components: - type: Transform - pos: 14.5,-0.5 + pos: 17.435421,-23.2928 parent: 1668 - - uid: 991 +- proto: ButtonFrameCaution + entities: + - uid: 337 components: - type: Transform - pos: 15.5,-0.5 + pos: 1.5,2.5 parent: 1668 - - uid: 992 + - uid: 571 components: - type: Transform - pos: 15.5,0.5 + rot: 3.141592653589793 rad + pos: 17.5,2.5 parent: 1668 - - uid: 993 + - uid: 572 components: - type: Transform - pos: 16.5,0.5 + pos: 17.5,-3.5 parent: 1668 - - uid: 994 + - uid: 2251 components: - type: Transform - pos: 16.5,-0.5 + rot: 3.141592653589793 rad + pos: 14.5,17.5 parent: 1668 - - uid: 995 + - uid: 3915 components: - type: Transform - pos: 17.5,-0.5 + rot: 1.5707963267948966 rad + pos: 5.5,21.5 parent: 1668 - - uid: 996 + - uid: 4724 components: - type: Transform - pos: 18.5,-0.5 + rot: 3.141592653589793 rad + pos: -1.5,-49.5 parent: 1668 - - uid: 997 + - uid: 4725 components: - type: Transform - pos: 8.5,-0.5 + rot: 3.141592653589793 rad + pos: 0.5,-49.5 parent: 1668 - - uid: 998 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 2255 components: - type: Transform - pos: 5.5,0.5 + rot: 3.141592653589793 rad + pos: 14.5,21.5 parent: 1668 - - uid: 999 +- proto: ButtonFrameExit + entities: + - uid: 4723 components: - type: Transform - pos: 6.5,-0.5 + rot: 3.141592653589793 rad + pos: -0.5,-49.5 parent: 1668 - - uid: 1000 +- proto: ButtonFrameGrey + entities: + - uid: 604 components: - type: Transform - pos: 10.5,-3.5 + pos: 13.5,4.5 parent: 1668 - - uid: 1001 + - uid: 605 components: - type: Transform - pos: 10.5,-4.5 + pos: 15.5,4.5 parent: 1668 - - uid: 1002 +- proto: C4 + entities: + - uid: 2669 components: - type: Transform - pos: 10.5,-5.5 + pos: 16.8675,30.598095 parent: 1668 - - uid: 1003 + - uid: 2682 components: - type: Transform - pos: 10.5,-6.5 + pos: 16.8675,30.598095 parent: 1668 - - uid: 1004 + - uid: 2683 components: - type: Transform - pos: 10.5,-7.5 + pos: 16.8675,30.598095 parent: 1668 - - uid: 1005 + - uid: 2684 components: - type: Transform - pos: 11.5,-6.5 + pos: 16.8675,30.598095 parent: 1668 - - uid: 1006 + - uid: 2685 components: - type: Transform - pos: 12.5,-6.5 + pos: 16.8675,30.598095 parent: 1668 - - uid: 1007 + - uid: 2686 components: - type: Transform - pos: 13.5,-6.5 + pos: 16.8675,30.598095 parent: 1668 - - uid: 1008 + - uid: 2687 components: - type: Transform - pos: 14.5,-6.5 + pos: 16.8675,30.598095 parent: 1668 - - uid: 1009 + - uid: 2688 components: - type: Transform - pos: 15.5,-6.5 + pos: 16.8675,30.598095 parent: 1668 - - uid: 1010 + - uid: 2689 components: - type: Transform - pos: 16.5,-6.5 + pos: 16.8675,30.598095 parent: 1668 - - uid: 1011 + - uid: 2690 components: - type: Transform - pos: 17.5,-6.5 + pos: 16.8675,30.598095 parent: 1668 - - uid: 1012 + - uid: 2691 components: - type: Transform - pos: 17.5,-5.5 + pos: 16.8675,30.598095 parent: 1668 - - uid: 1013 + - uid: 2698 components: - type: Transform - pos: 13.5,-5.5 + pos: 16.8675,30.598095 parent: 1668 - - uid: 1014 + - uid: 9185 components: - type: Transform - pos: 13.5,-4.5 + pos: -30.30739,-4.407342 parent: 1668 - - uid: 1015 + - uid: 9213 components: - type: Transform - pos: 13.5,-3.5 + pos: -30.573015,-4.407342 parent: 1668 - - uid: 1016 +- proto: CableApcExtension + entities: + - uid: 160 components: - type: Transform - pos: 12.5,-3.5 + pos: 7.5,3.5 parent: 1668 - - uid: 1017 + - uid: 214 components: - type: Transform - pos: 11.5,-3.5 + pos: 18.5,3.5 parent: 1668 - - uid: 1018 + - uid: 216 components: - type: Transform - pos: 14.5,-3.5 + pos: 19.5,3.5 parent: 1668 - - uid: 1019 + - uid: 217 components: - type: Transform - pos: 15.5,-3.5 + pos: 20.5,3.5 parent: 1668 - - uid: 1020 + - uid: 218 components: - type: Transform - pos: 12.5,7.5 + pos: 21.5,2.5 parent: 1668 - - uid: 1021 + - uid: 219 components: - type: Transform - pos: 12.5,6.5 + pos: 21.5,3.5 parent: 1668 - - uid: 1022 + - uid: 220 components: - type: Transform - pos: 12.5,5.5 + pos: 22.5,3.5 parent: 1668 - - uid: 1023 + - uid: 221 components: - type: Transform - pos: 12.5,4.5 + pos: 23.5,3.5 parent: 1668 - - uid: 1024 + - uid: 222 components: - type: Transform - pos: 12.5,3.5 + pos: 24.5,3.5 parent: 1668 - - uid: 1025 + - uid: 223 components: - type: Transform - pos: 12.5,2.5 + pos: 25.5,3.5 parent: 1668 - - uid: 1026 + - uid: 224 components: - type: Transform - pos: 13.5,2.5 + pos: 27.5,3.5 parent: 1668 - - uid: 1027 + - uid: 225 components: - type: Transform - pos: 14.5,2.5 + pos: 28.5,3.5 parent: 1668 - - uid: 1028 + - uid: 226 components: - type: Transform - pos: 15.5,2.5 + pos: 29.5,3.5 parent: 1668 - - uid: 1029 + - uid: 227 components: - type: Transform - pos: 11.5,2.5 + pos: 30.5,3.5 parent: 1668 - - uid: 1030 + - uid: 228 components: - type: Transform - pos: 13.5,5.5 + pos: 31.5,2.5 parent: 1668 - - uid: 1031 + - uid: 229 components: - type: Transform - pos: 14.5,5.5 + pos: 32.5,3.5 parent: 1668 - - uid: 1032 + - uid: 230 components: - type: Transform - pos: 15.5,5.5 + pos: 26.5,3.5 parent: 1668 - - uid: 1033 + - uid: 231 components: - type: Transform - pos: 16.5,5.5 + pos: 26.5,4.5 parent: 1668 - - uid: 1034 + - uid: 232 components: - type: Transform - pos: 17.5,5.5 + pos: 26.5,5.5 parent: 1668 - - uid: 1035 + - uid: 233 components: - type: Transform - pos: 17.5,4.5 + pos: 26.5,6.5 parent: 1668 - - uid: 1036 + - uid: 234 components: - type: Transform - pos: 17.5,6.5 + pos: 26.5,7.5 parent: 1668 - - uid: 1037 + - uid: 235 components: - type: Transform - pos: 13.5,7.5 + pos: 26.5,8.5 parent: 1668 - - uid: 1038 + - uid: 236 components: - type: Transform - pos: 14.5,7.5 + pos: 25.5,7.5 parent: 1668 - - uid: 1039 + - uid: 237 components: - type: Transform - pos: 11.5,7.5 + pos: 24.5,7.5 parent: 1668 - - uid: 1040 + - uid: 238 components: - type: Transform - pos: 10.5,7.5 + pos: 23.5,7.5 parent: 1668 - - uid: 1041 + - uid: 239 components: - type: Transform - pos: 9.5,7.5 + pos: 22.5,7.5 parent: 1668 - - uid: 1042 + - uid: 240 components: - type: Transform - pos: 11.5,5.5 + pos: 21.5,7.5 parent: 1668 - - uid: 1043 + - uid: 241 components: - type: Transform - pos: 10.5,5.5 + pos: 20.5,7.5 parent: 1668 - - uid: 1044 + - uid: 242 components: - type: Transform - pos: 9.5,5.5 + pos: 27.5,7.5 parent: 1668 - - uid: 1045 + - uid: 243 components: - type: Transform - pos: 8.5,5.5 + pos: 28.5,7.5 parent: 1668 - - uid: 1046 + - uid: 244 components: - type: Transform - pos: 9.5,4.5 + pos: 29.5,7.5 parent: 1668 - - uid: 1047 + - uid: 245 components: - type: Transform - pos: 8.5,4.5 + pos: 30.5,7.5 parent: 1668 - - uid: 1048 + - uid: 246 components: - type: Transform - pos: 8.5,3.5 + pos: 31.5,7.5 parent: 1668 - - uid: 1049 + - uid: 247 components: - type: Transform - pos: 7.5,3.5 + pos: 32.5,7.5 parent: 1668 - - uid: 1050 + - uid: 248 components: - type: Transform - pos: 7.5,4.5 + pos: 31.5,1.5 parent: 1668 - - uid: 1051 + - uid: 250 components: - type: Transform - pos: 12.5,8.5 + pos: 31.5,0.5 parent: 1668 - - uid: 1052 + - uid: 254 components: - type: Transform - pos: 12.5,9.5 + pos: 31.5,-0.5 parent: 1668 - - uid: 1053 + - uid: 255 components: - type: Transform - pos: 13.5,9.5 + pos: 31.5,-1.5 parent: 1668 - - uid: 1054 + - uid: 256 components: - type: Transform - pos: 14.5,9.5 + pos: 31.5,-2.5 parent: 1668 - - uid: 1055 + - uid: 257 components: - type: Transform - pos: 11.5,9.5 + pos: 31.5,-3.5 parent: 1668 - - uid: 1056 + - uid: 258 components: - type: Transform - pos: 10.5,9.5 + pos: 31.5,-4.5 parent: 1668 - - uid: 1057 + - uid: 259 components: - type: Transform - pos: 9.5,9.5 + pos: 31.5,-5.5 parent: 1668 - - uid: 1058 + - uid: 260 components: - type: Transform - pos: 8.5,9.5 + pos: 21.5,1.5 parent: 1668 - - uid: 1059 + - uid: 261 components: - type: Transform - pos: 7.5,9.5 + pos: 21.5,0.5 parent: 1668 - - uid: 1060 + - uid: 262 components: - type: Transform - pos: 6.5,9.5 + pos: 21.5,-0.5 parent: 1668 - - uid: 1061 + - uid: 263 components: - type: Transform - pos: 8.5,8.5 + pos: 21.5,-1.5 parent: 1668 - - uid: 1062 + - uid: 264 components: - type: Transform - pos: 28.5,1.5 + pos: 21.5,-2.5 parent: 1668 - - uid: 1063 + - uid: 265 components: - type: Transform - pos: 28.5,0.5 + pos: 21.5,-3.5 parent: 1668 - - uid: 1064 + - uid: 266 components: - type: Transform - pos: 28.5,-0.5 + pos: 21.5,-4.5 parent: 1668 - - uid: 1068 + - uid: 267 components: - type: Transform - pos: 24.5,-2.5 + pos: 21.5,-5.5 parent: 1668 - - uid: 1069 + - uid: 268 components: - type: Transform - pos: 24.5,-1.5 + pos: 22.5,-4.5 parent: 1668 - - uid: 1070 + - uid: 269 components: - type: Transform - pos: 24.5,-0.5 + pos: 23.5,-4.5 parent: 1668 - - uid: 1089 + - uid: 270 components: - type: Transform - pos: -2.5,2.5 + pos: 24.5,-4.5 parent: 1668 - - uid: 1090 + - uid: 271 components: - type: Transform - pos: -2.5,1.5 + pos: 25.5,-4.5 parent: 1668 - - uid: 1091 + - uid: 272 components: - type: Transform - pos: -2.5,0.5 + pos: 26.5,-4.5 parent: 1668 - - uid: 1092 + - uid: 273 components: - type: Transform - pos: -2.5,-0.5 + pos: 27.5,-4.5 parent: 1668 - - uid: 1093 + - uid: 274 components: - type: Transform - pos: -2.5,-1.5 + pos: 28.5,-4.5 parent: 1668 - - uid: 1094 + - uid: 275 components: - type: Transform - pos: -1.5,0.5 + pos: 29.5,-4.5 parent: 1668 - - uid: 1095 + - uid: 276 components: - type: Transform - pos: -0.5,0.5 + pos: 30.5,-4.5 parent: 1668 - - uid: 1096 + - uid: 277 components: - type: Transform - pos: 0.5,0.5 + pos: 20.5,-4.5 parent: 1668 - - uid: 1097 + - uid: 278 components: - type: Transform - pos: 1.5,0.5 + pos: 32.5,-4.5 parent: 1668 - - uid: 1098 + - uid: 279 components: - type: Transform - pos: 2.5,0.5 + pos: 33.5,-4.5 parent: 1668 - - uid: 1099 + - uid: 280 components: - type: Transform - pos: 2.5,1.5 + pos: 34.5,-4.5 parent: 1668 - - uid: 1100 + - uid: 281 components: - type: Transform - pos: 2.5,2.5 + pos: 34.5,-3.5 parent: 1668 - - uid: 1101 + - uid: 282 components: - type: Transform - pos: 3.5,2.5 + pos: 34.5,-2.5 parent: 1668 - - uid: 1102 + - uid: 283 components: - type: Transform - pos: 3.5,1.5 + pos: 34.5,-1.5 parent: 1668 - - uid: 1103 + - uid: 284 components: - type: Transform - pos: -3.5,1.5 + pos: 34.5,-0.5 parent: 1668 - - uid: 1104 + - uid: 285 components: - type: Transform - pos: -4.5,1.5 + pos: 34.5,0.5 parent: 1668 - - uid: 1105 + - uid: 286 components: - type: Transform - pos: -4.5,2.5 + pos: 34.5,1.5 parent: 1668 - - uid: 1106 + - uid: 287 components: - type: Transform - pos: -3.5,2.5 + pos: 34.5,3.5 parent: 1668 - - uid: 1107 + - uid: 288 components: - type: Transform - pos: -1.5,2.5 + pos: 34.5,4.5 parent: 1668 - - uid: 1108 + - uid: 289 components: - type: Transform - pos: -0.5,2.5 + pos: 34.5,5.5 parent: 1668 - - uid: 1109 + - uid: 290 components: - type: Transform - pos: 0.5,2.5 + pos: 34.5,2.5 parent: 1668 - - uid: 1110 + - uid: 291 components: - type: Transform - pos: -3.5,-0.5 + pos: 34.5,-6.5 parent: 1668 - - uid: 1111 + - uid: 292 components: - type: Transform - pos: -4.5,-0.5 + pos: 34.5,-5.5 parent: 1668 - - uid: 1112 + - uid: 293 components: - type: Transform - pos: -4.5,-1.5 + pos: 33.5,3.5 parent: 1668 - - uid: 1113 + - uid: 294 components: - type: Transform - pos: -4.5,-2.5 + pos: 31.5,-6.5 parent: 1668 - - uid: 1114 + - uid: 295 components: - type: Transform - pos: -2.5,-2.5 + pos: 21.5,-6.5 parent: 1668 - - uid: 1115 + - uid: 296 components: - type: Transform - pos: -2.5,-3.5 + pos: 19.5,-4.5 parent: 1668 - - uid: 1116 + - uid: 297 components: - type: Transform - pos: -3.5,-3.5 + pos: 31.5,3.5 parent: 1668 - - uid: 1117 + - uid: 298 components: - type: Transform - pos: -1.5,-1.5 + pos: 26.5,-3.5 parent: 1668 - - uid: 1118 + - uid: 299 components: - type: Transform - pos: -0.5,-1.5 + pos: 26.5,-2.5 parent: 1668 - - uid: 1119 + - uid: 300 components: - type: Transform - pos: -0.5,-2.5 + pos: 26.5,1.5 parent: 1668 - - uid: 1120 + - uid: 301 components: - type: Transform - pos: -0.5,-3.5 + pos: 26.5,2.5 parent: 1668 - - uid: 1121 + - uid: 302 components: - type: Transform - pos: 0.5,-1.5 + pos: 30.5,-0.5 parent: 1668 - - uid: 1122 + - uid: 303 components: - type: Transform - pos: 1.5,-1.5 + pos: 29.5,-0.5 parent: 1668 - - uid: 1123 + - uid: 304 components: - type: Transform - pos: 2.5,-1.5 + pos: 22.5,-0.5 parent: 1668 - - uid: 1124 + - uid: 305 components: - type: Transform - pos: 3.5,-1.5 + pos: 23.5,-0.5 parent: 1668 - - uid: 1125 + - uid: 306 components: - type: Transform - pos: 3.5,-0.5 + pos: 24.5,-0.5 parent: 1668 - - uid: 1126 + - uid: 339 components: - type: Transform - pos: 3.5,-2.5 + pos: -2.5,2.5 parent: 1668 - - uid: 1127 + - uid: 340 components: - type: Transform - pos: 1.5,-2.5 + pos: -2.5,1.5 parent: 1668 - - uid: 1128 + - uid: 341 components: - type: Transform - pos: 1.5,-3.5 + pos: -2.5,0.5 parent: 1668 - - uid: 1129 + - uid: 342 components: - type: Transform - pos: 2.5,-3.5 + pos: -2.5,-0.5 parent: 1668 - - uid: 1137 + - uid: 343 components: - type: Transform - pos: 21.5,-10.5 + pos: -2.5,-1.5 parent: 1668 - - uid: 1202 + - uid: 344 components: - type: Transform - pos: 10.5,-8.5 + pos: -1.5,-0.5 parent: 1668 - - uid: 1203 + - uid: 345 components: - type: Transform - pos: 11.5,-8.5 + pos: -0.5,-0.5 parent: 1668 - - uid: 1204 + - uid: 347 components: - type: Transform - pos: 9.5,-8.5 + pos: 0.5,-0.5 parent: 1668 - - uid: 1205 + - uid: 349 components: - type: Transform - pos: 14.5,-7.5 + pos: 1.5,-0.5 parent: 1668 - - uid: 1206 + - uid: 354 components: - type: Transform - pos: 14.5,-8.5 + pos: 1.5,-1.5 parent: 1668 - - uid: 1207 + - uid: 356 components: - type: Transform - pos: 15.5,-8.5 + pos: 1.5,0.5 parent: 1668 - - uid: 1208 + - uid: 360 components: - type: Transform - pos: 13.5,-8.5 + pos: 1.5,1.5 parent: 1668 - - uid: 1209 + - uid: 361 components: - type: Transform - pos: 12.5,-10.5 + pos: -2.5,-2.5 parent: 1668 - - uid: 1210 + - uid: 384 components: - type: Transform - pos: 12.5,-9.5 + pos: -2.5,-3.5 parent: 1668 - - uid: 1211 + - uid: 385 components: - type: Transform - pos: 13.5,-10.5 + pos: -3.5,-3.5 parent: 1668 - - uid: 1212 + - uid: 387 components: - type: Transform - pos: 14.5,-10.5 + pos: 1.5,-2.5 parent: 1668 - - uid: 1213 + - uid: 388 components: - type: Transform - pos: 15.5,-10.5 + pos: 1.5,-3.5 parent: 1668 - - uid: 1214 + - uid: 389 components: - type: Transform - pos: 16.5,-10.5 + pos: 2.5,-3.5 parent: 1668 - - uid: 1215 + - uid: 390 components: - type: Transform - pos: 16.5,-9.5 + pos: -0.5,-1.5 parent: 1668 - - uid: 1216 + - uid: 393 components: - type: Transform - pos: 11.5,-10.5 + pos: -0.5,-2.5 parent: 1668 - - uid: 1217 + - uid: 396 components: - type: Transform - pos: 10.5,-10.5 + pos: -0.5,-3.5 parent: 1668 - - uid: 1218 + - uid: 397 components: - type: Transform - pos: 9.5,-10.5 + pos: 2.5,-2.5 parent: 1668 - - uid: 1219 + - uid: 398 components: - type: Transform - pos: 12.5,-11.5 + pos: 3.5,-2.5 parent: 1668 - - uid: 1220 + - uid: 399 components: - type: Transform - pos: 12.5,-12.5 + pos: 3.5,-1.5 parent: 1668 - - uid: 1221 + - uid: 401 components: - type: Transform - pos: 12.5,-13.5 + pos: 3.5,-0.5 parent: 1668 - - uid: 1222 + - uid: 402 components: - type: Transform - pos: 12.5,-14.5 + pos: -3.5,-2.5 parent: 1668 - - uid: 1223 + - uid: 403 components: - type: Transform - pos: 12.5,-14.5 + pos: -4.5,-2.5 parent: 1668 - - uid: 1224 + - uid: 404 components: - type: Transform - pos: 12.5,-16.5 + pos: -4.5,-1.5 parent: 1668 - - uid: 1225 + - uid: 408 components: - type: Transform - pos: 12.5,-15.5 + pos: -4.5,-0.5 parent: 1668 - - uid: 1226 + - uid: 412 components: - type: Transform - pos: 11.5,-16.5 + pos: -3.5,1.5 parent: 1668 - - uid: 1227 + - uid: 413 components: - type: Transform - pos: 11.5,-11.5 + pos: -3.5,2.5 parent: 1668 - - uid: 1228 + - uid: 414 components: - type: Transform - pos: 10.5,-11.5 + pos: -4.5,2.5 parent: 1668 - - uid: 1229 + - uid: 415 components: - type: Transform - pos: 9.5,-11.5 + pos: -4.5,1.5 parent: 1668 - - uid: 1230 + - uid: 416 components: - type: Transform - pos: 13.5,-11.5 + pos: 2.5,1.5 parent: 1668 - - uid: 1231 + - uid: 417 components: - type: Transform - pos: 14.5,-11.5 + pos: 3.5,1.5 parent: 1668 - - uid: 1232 + - uid: 418 components: - type: Transform - pos: 15.5,-11.5 + pos: 3.5,2.5 parent: 1668 - - uid: 1233 + - uid: 419 components: - type: Transform - pos: 11.5,-14.5 + pos: 2.5,2.5 parent: 1668 - - uid: 1234 + - uid: 420 components: - type: Transform - pos: 10.5,-14.5 + pos: 0.5,1.5 parent: 1668 - - uid: 1236 + - uid: 421 components: - type: Transform - pos: 3.5,-8.5 + pos: 0.5,2.5 parent: 1668 - - uid: 1237 + - uid: 422 components: - type: Transform - pos: 3.5,-9.5 + pos: -0.5,2.5 parent: 1668 - - uid: 1238 + - uid: 423 components: - type: Transform - pos: 4.5,-9.5 + pos: -1.5,2.5 parent: 1668 - - uid: 1239 + - uid: 424 components: - type: Transform - pos: 4.5,-10.5 + pos: -1.5,1.5 parent: 1668 - - uid: 1240 + - uid: 425 components: - type: Transform - pos: 4.5,-11.5 + pos: 5.5,-5.5 parent: 1668 - - uid: 1241 + - uid: 426 components: - type: Transform - pos: 4.5,-12.5 + pos: 5.5,-4.5 parent: 1668 - - uid: 1242 + - uid: 427 components: - type: Transform - pos: 4.5,-13.5 + pos: 5.5,-3.5 parent: 1668 - - uid: 1243 + - uid: 428 components: - type: Transform - pos: 5.5,-11.5 + pos: 5.5,-2.5 parent: 1668 - - uid: 1244 + - uid: 429 components: - type: Transform - pos: 6.5,-11.5 + pos: 5.5,-1.5 parent: 1668 - - uid: 1245 + - uid: 430 components: - type: Transform - pos: 7.5,-11.5 + pos: 5.5,-0.5 parent: 1668 - - uid: 1246 + - uid: 431 components: - type: Transform - pos: 7.5,-10.5 + pos: 5.5,0.5 parent: 1668 - - uid: 1247 + - uid: 432 components: - type: Transform - pos: 5.5,-9.5 + pos: 5.5,1.5 parent: 1668 - - uid: 1248 + - uid: 433 components: - type: Transform - pos: 6.5,-9.5 + pos: 5.5,2.5 parent: 1668 - - uid: 1249 + - uid: 434 components: - type: Transform - pos: 7.5,-12.5 + pos: 5.5,3.5 parent: 1668 - - uid: 1250 + - uid: 435 components: - type: Transform - pos: 5.5,-13.5 + pos: 5.5,4.5 parent: 1668 - - uid: 1251 + - uid: 436 components: - type: Transform - pos: 6.5,-13.5 + pos: 4.5,4.5 parent: 1668 - - uid: 1252 + - uid: 437 components: - type: Transform - pos: 3.5,-10.5 + pos: 3.5,4.5 parent: 1668 - - uid: 1253 + - uid: 438 components: - type: Transform - pos: 2.5,-10.5 + pos: 2.5,4.5 parent: 1668 - - uid: 1254 + - uid: 439 components: - type: Transform - pos: 3.5,-13.5 + pos: 1.5,4.5 parent: 1668 - - uid: 1255 + - uid: 440 components: - type: Transform - pos: 2.5,-13.5 + pos: 0.5,4.5 parent: 1668 - - uid: 1256 + - uid: 441 components: - type: Transform - pos: 4.5,-8.5 + pos: -0.5,4.5 parent: 1668 - - uid: 1257 + - uid: 442 components: - type: Transform - pos: 4.5,-7.5 + pos: -1.5,4.5 parent: 1668 - - uid: 1258 + - uid: 443 components: - type: Transform - pos: 5.5,-7.5 + pos: -2.5,4.5 parent: 1668 - - uid: 1259 + - uid: 444 components: - type: Transform - pos: 3.5,-7.5 + pos: -3.5,4.5 parent: 1668 - - uid: 1260 + - uid: 445 components: - type: Transform - pos: -1.5,-6.5 + pos: -4.5,4.5 parent: 1668 - - uid: 1261 + - uid: 446 components: - type: Transform - pos: -1.5,-5.5 + pos: -5.5,4.5 parent: 1668 - - uid: 1262 + - uid: 447 components: - type: Transform - pos: -0.5,-5.5 + pos: -6.5,4.5 parent: 1668 - - uid: 1263 + - uid: 448 components: - type: Transform - pos: 0.5,-5.5 + pos: -6.5,3.5 parent: 1668 - - uid: 1264 + - uid: 449 components: - type: Transform - pos: 0.5,-6.5 + pos: -6.5,2.5 parent: 1668 - - uid: 1265 + - uid: 450 components: - type: Transform - pos: 1.5,-5.5 + pos: -6.5,1.5 parent: 1668 - - uid: 1266 + - uid: 451 components: - type: Transform - pos: 2.5,-5.5 + pos: -6.5,0.5 parent: 1668 - - uid: 1267 + - uid: 452 components: - type: Transform - pos: 2.5,-6.5 + pos: -6.5,-0.5 parent: 1668 - - uid: 1268 + - uid: 453 components: - type: Transform - pos: 3.5,-5.5 + pos: -6.5,-1.5 parent: 1668 - - uid: 1269 + - uid: 454 components: - type: Transform - pos: 4.5,-5.5 + pos: -6.5,-2.5 parent: 1668 - - uid: 1270 + - uid: 455 components: - type: Transform - pos: 5.5,-5.5 + pos: -6.5,-3.5 parent: 1668 - - uid: 1271 + - uid: 456 components: - type: Transform - pos: 6.5,-5.5 + pos: -6.5,-4.5 parent: 1668 - - uid: 1272 + - uid: 457 components: - type: Transform - pos: 6.5,-4.5 + pos: -6.5,-5.5 parent: 1668 - - uid: 1273 + - uid: 459 components: - type: Transform - pos: 5.5,-4.5 + pos: -5.5,-5.5 parent: 1668 - - uid: 1274 + - uid: 460 components: - type: Transform - pos: 5.5,-3.5 + pos: -4.5,-5.5 parent: 1668 - - uid: 1275 + - uid: 462 components: - type: Transform - pos: 5.5,-2.5 + pos: -3.5,-5.5 parent: 1668 - - uid: 1276 + - uid: 463 components: - type: Transform - pos: 9.5,-5.5 + pos: -2.5,-5.5 parent: 1668 - - uid: 1277 + - uid: 464 components: - type: Transform - pos: 8.5,-5.5 + pos: -1.5,-5.5 parent: 1668 - - uid: 1278 + - uid: 465 components: - type: Transform - pos: 8.5,-4.5 + pos: -0.5,-5.5 parent: 1668 - - uid: 1279 + - uid: 466 components: - type: Transform - pos: 5.5,-1.5 + pos: 1.5,-5.5 parent: 1668 - - uid: 1280 + - uid: 467 components: - type: Transform - pos: 5.5,-0.5 + pos: 2.5,-5.5 parent: 1668 - - uid: 1281 + - uid: 468 components: - type: Transform - pos: 5.5,1.5 + pos: 0.5,-5.5 parent: 1668 - - uid: 1282 + - uid: 469 components: - type: Transform - pos: 5.5,2.5 + pos: 3.5,-5.5 parent: 1668 - - uid: 1283 + - uid: 470 components: - type: Transform - pos: 5.5,3.5 + pos: 4.5,-5.5 parent: 1668 - - uid: 1284 + - uid: 473 components: - type: Transform - pos: 5.5,4.5 + pos: 6.5,3.5 parent: 1668 - - uid: 1285 + - uid: 836 components: - type: Transform - pos: 4.5,4.5 + pos: 18.5,-7.5 parent: 1668 - - uid: 1286 + - uid: 837 components: - type: Transform - pos: 3.5,4.5 + pos: 17.5,-7.5 parent: 1668 - - uid: 1287 + - uid: 838 components: - type: Transform - pos: 2.5,4.5 + pos: 16.5,-7.5 parent: 1668 - - uid: 1288 + - uid: 839 components: - type: Transform - pos: 1.5,4.5 + pos: 15.5,-7.5 parent: 1668 - - uid: 1289 + - uid: 840 components: - type: Transform - pos: 0.5,4.5 + pos: 13.5,-7.5 parent: 1668 - - uid: 1290 + - uid: 841 components: - type: Transform - pos: -0.5,4.5 + pos: 14.5,-7.5 parent: 1668 - - uid: 1291 + - uid: 842 components: - type: Transform - pos: -1.5,4.5 + pos: 13.5,-8.5 parent: 1668 - - uid: 1292 + - uid: 843 components: - type: Transform - pos: -2.5,4.5 + pos: 13.5,-9.5 parent: 1668 - - uid: 1293 + - uid: 844 components: - type: Transform - pos: -3.5,4.5 + pos: 13.5,-10.5 parent: 1668 - - uid: 1294 + - uid: 845 components: - type: Transform - pos: -4.5,4.5 + pos: 13.5,-11.5 parent: 1668 - - uid: 1295 + - uid: 846 components: - type: Transform - pos: -5.5,4.5 + pos: 13.5,-12.5 parent: 1668 - - uid: 1296 + - uid: 847 components: - type: Transform - pos: -6.5,4.5 + pos: 14.5,-12.5 parent: 1668 - - uid: 1297 + - uid: 848 components: - type: Transform - pos: -6.5,3.5 + pos: 15.5,-12.5 parent: 1668 - - uid: 1298 + - uid: 849 components: - type: Transform - pos: -6.5,2.5 + pos: 16.5,-12.5 parent: 1668 - - uid: 1299 + - uid: 850 components: - type: Transform - pos: -6.5,1.5 + pos: 17.5,-12.5 parent: 1668 - - uid: 1300 + - uid: 851 components: - type: Transform - pos: -6.5,0.5 + pos: 18.5,-12.5 parent: 1668 - - uid: 1301 + - uid: 852 components: - type: Transform - pos: -6.5,-0.5 + pos: 19.5,-12.5 parent: 1668 - - uid: 1302 + - uid: 853 components: - type: Transform - pos: -6.5,-1.5 + pos: 20.5,-12.5 parent: 1668 - - uid: 1303 + - uid: 854 components: - type: Transform - pos: -6.5,-2.5 + pos: 21.5,-12.5 parent: 1668 - - uid: 1304 + - uid: 855 components: - type: Transform - pos: -6.5,-3.5 + pos: 22.5,-12.5 parent: 1668 - - uid: 1305 + - uid: 856 components: - type: Transform - pos: -6.5,-4.5 + pos: 21.5,-11.5 parent: 1668 - - uid: 1306 + - uid: 857 components: - type: Transform - pos: -6.5,-5.5 + pos: 21.5,-10.5 parent: 1668 - - uid: 1307 + - uid: 858 components: - type: Transform - pos: -5.5,-5.5 + pos: 21.5,-9.5 parent: 1668 - - uid: 1308 + - uid: 859 components: - type: Transform - pos: -4.5,-5.5 + pos: 20.5,-9.5 parent: 1668 - - uid: 1309 + - uid: 860 components: - type: Transform - pos: -3.5,-5.5 + pos: 19.5,-9.5 parent: 1668 - - uid: 1310 + - uid: 861 components: - type: Transform - pos: -2.5,-5.5 + pos: 22.5,-9.5 parent: 1668 - - uid: 1311 + - uid: 862 components: - type: Transform - pos: -3.5,-6.5 + pos: 18.5,-9.5 parent: 1668 - - uid: 1312 + - uid: 863 components: - type: Transform - pos: -7.5,-5.5 + pos: 17.5,-9.5 parent: 1668 - - uid: 1313 + - uid: 864 components: - type: Transform - pos: -7.5,-4.5 + pos: 17.5,-8.5 parent: 1668 - - uid: 1314 + - uid: 865 components: - type: Transform - pos: -7.5,-0.5 + pos: 15.5,-6.5 parent: 1668 - - uid: 1315 + - uid: 866 components: - type: Transform - pos: -7.5,3.5 + pos: 15.5,-5.5 parent: 1668 - - uid: 1316 + - uid: 867 components: - type: Transform - pos: -7.5,4.5 + pos: 14.5,-5.5 parent: 1668 - - uid: 1317 + - uid: 868 components: - type: Transform - pos: -1.5,5.5 + pos: 13.5,-5.5 parent: 1668 - - uid: 1318 + - uid: 869 components: - type: Transform - pos: 0.5,5.5 + pos: 12.5,-5.5 parent: 1668 - - uid: 1319 + - uid: 870 components: - type: Transform - pos: 2.5,5.5 + pos: 11.5,-5.5 parent: 1668 - - uid: 1320 + - uid: 871 components: - type: Transform - pos: 4.5,5.5 + pos: 10.5,-5.5 parent: 1668 - - uid: 1342 + - uid: 872 components: - type: Transform - pos: -3.5,-9.5 + pos: 9.5,-5.5 parent: 1668 - - uid: 1343 + - uid: 875 components: - type: Transform - pos: -2.5,-9.5 + pos: 8.5,-7.5 parent: 1668 - - uid: 1344 + - uid: 876 components: - type: Transform - pos: -1.5,-9.5 + pos: 8.5,-8.5 parent: 1668 - - uid: 1345 + - uid: 877 components: - type: Transform - pos: -0.5,-9.5 + pos: 9.5,-8.5 parent: 1668 - - uid: 1346 + - uid: 878 components: - type: Transform - pos: 0.5,-9.5 + pos: 9.5,-9.5 parent: 1668 - - uid: 1347 + - uid: 879 components: - type: Transform - pos: 0.5,-8.5 + pos: 9.5,-10.5 parent: 1668 - - uid: 1348 + - uid: 880 components: - type: Transform - pos: -1.5,-8.5 + pos: 9.5,-11.5 parent: 1668 - - uid: 1349 + - uid: 881 components: - type: Transform - pos: -0.5,-10.5 + pos: 8.5,-10.5 parent: 1668 - - uid: 1350 + - uid: 882 components: - type: Transform - pos: -0.5,-11.5 + pos: 7.5,-10.5 parent: 1668 - - uid: 1351 + - uid: 883 components: - type: Transform - pos: -0.5,-12.5 + pos: 6.5,-10.5 parent: 1668 - - uid: 1352 + - uid: 884 components: - type: Transform - pos: -0.5,-13.5 + pos: 5.5,-10.5 parent: 1668 - - uid: 1353 + - uid: 885 components: - type: Transform - pos: -1.5,-13.5 + pos: 5.5,-9.5 parent: 1668 - - uid: 1354 + - uid: 886 components: - type: Transform - pos: -1.5,-14.5 + pos: 4.5,-9.5 parent: 1668 - - uid: 1355 + - uid: 887 components: - type: Transform - pos: -2.5,-14.5 + pos: 5.5,-11.5 parent: 1668 - - uid: 1356 + - uid: 888 components: - type: Transform - pos: 0.5,-13.5 + pos: 4.5,-11.5 parent: 1668 - - uid: 1357 + - uid: 889 components: - type: Transform - pos: 0.5,-14.5 + pos: 8.5,2.5 parent: 1668 - - uid: 1358 + - uid: 890 components: - type: Transform - pos: 1.5,-14.5 + pos: 8.5,1.5 parent: 1668 - - uid: 1359 + - uid: 891 components: - type: Transform - pos: -4.5,-9.5 + pos: 8.5,0.5 parent: 1668 - - uid: 1360 + - uid: 892 components: - type: Transform - pos: -5.5,-9.5 + pos: 8.5,-0.5 parent: 1668 - - uid: 1361 + - uid: 893 components: - type: Transform - pos: -5.5,-8.5 + pos: 9.5,-0.5 parent: 1668 - - uid: 1362 + - uid: 894 components: - type: Transform - pos: -5.5,-7.5 + pos: 10.5,-0.5 parent: 1668 - - uid: 1363 + - uid: 895 components: - type: Transform - pos: -4.5,-7.5 + pos: 11.5,-0.5 parent: 1668 - - uid: 1364 + - uid: 896 components: - type: Transform - pos: -6.5,-7.5 + pos: 13.5,-0.5 parent: 1668 - - uid: 1365 + - uid: 897 components: - type: Transform - pos: -5.5,-10.5 + pos: 14.5,-0.5 parent: 1668 - - uid: 1366 + - uid: 898 components: - type: Transform - pos: -5.5,-11.5 + pos: 12.5,-0.5 parent: 1668 - - uid: 1367 + - uid: 899 components: - type: Transform - pos: -6.5,-11.5 + pos: 16.5,-0.5 parent: 1668 - - uid: 1368 + - uid: 900 components: - type: Transform - pos: -7.5,-11.5 + pos: 15.5,-0.5 parent: 1668 - - uid: 1369 + - uid: 901 components: - type: Transform - pos: -8.5,-11.5 + pos: 17.5,-0.5 parent: 1668 - - uid: 1370 + - uid: 909 components: - type: Transform - pos: -8.5,-10.5 + pos: 21.5,25.5 parent: 1668 - - uid: 1371 + - uid: 939 components: - type: Transform - pos: -8.5,-12.5 + pos: 20.5,25.5 parent: 1668 - - uid: 1372 + - uid: 1396 components: - type: Transform - pos: -5.5,-12.5 + pos: 31.5,-20.5 parent: 1668 - - uid: 1373 + - uid: 1397 components: - type: Transform - pos: -5.5,-13.5 + pos: 32.5,-20.5 parent: 1668 - - uid: 1374 + - uid: 1398 components: - type: Transform - pos: -4.5,-10.5 + pos: 33.5,-20.5 parent: 1668 - - uid: 1375 + - uid: 1399 components: - type: Transform - pos: -3.5,-10.5 + pos: 33.5,-21.5 parent: 1668 - - uid: 1376 + - uid: 1400 components: - type: Transform - pos: -3.5,-13.5 + pos: 33.5,-22.5 parent: 1668 - - uid: 1377 + - uid: 1401 components: - type: Transform - pos: -4.5,-13.5 + pos: 30.5,-20.5 parent: 1668 - - uid: 1378 + - uid: 1402 components: - type: Transform - pos: -6.5,-13.5 + pos: 29.5,-20.5 parent: 1668 - - uid: 1379 + - uid: 1403 components: - type: Transform - pos: -7.5,-13.5 + pos: 28.5,-20.5 parent: 1668 - - uid: 1380 + - uid: 1404 components: - type: Transform - pos: -7.5,-14.5 + pos: 27.5,-20.5 parent: 1668 - - uid: 1381 + - uid: 1405 components: - type: Transform - pos: -8.5,-14.5 + pos: 26.5,-20.5 parent: 1668 - - uid: 1382 + - uid: 1406 components: - type: Transform - pos: -6.5,-9.5 + pos: 26.5,-21.5 parent: 1668 - - uid: 1383 + - uid: 1407 components: - type: Transform - pos: -7.5,-9.5 + pos: 26.5,-22.5 parent: 1668 - - uid: 1468 + - uid: 1408 components: - type: Transform - pos: 15.5,-4.5 + pos: 27.5,-22.5 parent: 1668 - - uid: 1469 + - uid: 1409 components: - type: Transform - pos: 16.5,-4.5 + pos: 28.5,-22.5 parent: 1668 - - uid: 1470 + - uid: 1410 components: - type: Transform - pos: 15.5,4.5 + pos: 29.5,-22.5 parent: 1668 - - uid: 1471 + - uid: 1411 components: - type: Transform - pos: 15.5,3.5 + pos: 29.5,-21.5 parent: 1668 - - uid: 1472 + - uid: 1412 components: - type: Transform - pos: 16.5,3.5 + pos: 23.5,-14.5 parent: 1668 - - uid: 1678 + - uid: 1413 components: - type: Transform - pos: -6.5,16.5 + pos: 23.5,-15.5 parent: 1668 - - uid: 1679 + - uid: 1414 components: - type: Transform - pos: -6.5,15.5 + pos: 23.5,-16.5 parent: 1668 - - uid: 1680 + - uid: 1415 components: - type: Transform - pos: -6.5,17.5 + pos: 24.5,-16.5 parent: 1668 - - uid: 1681 + - uid: 1416 components: - type: Transform - pos: -5.5,17.5 + pos: 25.5,-16.5 parent: 1668 - - uid: 1682 + - uid: 1417 components: - type: Transform - pos: -4.5,17.5 + pos: 26.5,-16.5 parent: 1668 - - uid: 1683 + - uid: 1418 components: - type: Transform - pos: -8.5,13.5 + pos: 27.5,-16.5 parent: 1668 - - uid: 1684 + - uid: 1419 components: - type: Transform - pos: -8.5,12.5 + pos: 29.5,-16.5 parent: 1668 - - uid: 1685 + - uid: 1420 components: - type: Transform - pos: -8.5,11.5 + pos: 28.5,-16.5 parent: 1668 - - uid: 1686 + - uid: 1421 components: - type: Transform - pos: -8.5,10.5 + pos: 30.5,-16.5 parent: 1668 - - uid: 1687 + - uid: 1422 components: - type: Transform - pos: -8.5,9.5 + pos: 31.5,-16.5 parent: 1668 - - uid: 1688 + - uid: 1423 components: - type: Transform - pos: -7.5,9.5 + pos: 32.5,-16.5 parent: 1668 - - uid: 1689 + - uid: 1424 components: - type: Transform - pos: -6.5,9.5 + pos: 33.5,-16.5 parent: 1668 - - uid: 1690 + - uid: 1425 components: - type: Transform - pos: -5.5,9.5 + pos: 22.5,-16.5 parent: 1668 - - uid: 1691 + - uid: 1426 components: - type: Transform - pos: -5.5,8.5 + pos: 21.5,-16.5 parent: 1668 - - uid: 1692 + - uid: 1427 components: - type: Transform - pos: -4.5,8.5 + pos: 21.5,-17.5 parent: 1668 - - uid: 1693 + - uid: 1428 components: - type: Transform - pos: -5.5,7.5 + pos: 21.5,-18.5 parent: 1668 - - uid: 1694 + - uid: 1429 components: - type: Transform - pos: -5.5,6.5 + pos: 21.5,-19.5 parent: 1668 - - uid: 1695 + - uid: 1430 components: - type: Transform - pos: -4.5,6.5 + pos: 21.5,-20.5 parent: 1668 - - uid: 1696 + - uid: 1431 components: - type: Transform - pos: -6.5,6.5 + pos: 21.5,-21.5 parent: 1668 - - uid: 1697 + - uid: 1432 components: - type: Transform - pos: -9.5,9.5 + pos: 21.5,-23.5 parent: 1668 - - uid: 1698 + - uid: 1433 components: - type: Transform - pos: -10.5,9.5 + pos: 21.5,-22.5 parent: 1668 - - uid: 1699 + - uid: 1434 components: - type: Transform - pos: -11.5,9.5 + pos: 21.5,-24.5 parent: 1668 - - uid: 1700 + - uid: 1435 components: - type: Transform - pos: -9.5,11.5 + pos: 21.5,-25.5 parent: 1668 - - uid: 1701 + - uid: 1436 components: - type: Transform - pos: -10.5,11.5 + pos: 21.5,-26.5 parent: 1668 - - uid: 1702 + - uid: 1437 components: - type: Transform - pos: -11.5,11.5 + pos: 22.5,-26.5 parent: 1668 - - uid: 1703 + - uid: 1438 components: - type: Transform - pos: -7.5,11.5 + pos: 24.5,-26.5 parent: 1668 - - uid: 1704 + - uid: 1439 components: - type: Transform - pos: -6.5,11.5 + pos: 25.5,-26.5 parent: 1668 - - uid: 1705 + - uid: 1440 components: - type: Transform - pos: -6.5,12.5 + pos: 26.5,-26.5 parent: 1668 - - uid: 1706 + - uid: 1441 components: - type: Transform - pos: -14.5,18.5 + pos: 27.5,-26.5 parent: 1668 - - uid: 1707 + - uid: 1442 components: - type: Transform - pos: -14.5,17.5 + pos: 28.5,-26.5 parent: 1668 - - uid: 1708 + - uid: 1443 components: - type: Transform - pos: -15.5,17.5 + pos: 29.5,-26.5 parent: 1668 - - uid: 1709 + - uid: 1444 components: - type: Transform - pos: -16.5,17.5 + pos: 30.5,-26.5 parent: 1668 - - uid: 1710 + - uid: 1445 components: - type: Transform - pos: -16.5,18.5 + pos: 31.5,-26.5 parent: 1668 - - uid: 1711 + - uid: 1446 components: - type: Transform - pos: -15.5,18.5 + pos: 32.5,-26.5 parent: 1668 - - uid: 1712 + - uid: 1447 components: - type: Transform - pos: -13.5,18.5 + pos: 33.5,-26.5 parent: 1668 - - uid: 1713 + - uid: 1448 components: - type: Transform - pos: -12.5,18.5 + pos: 23.5,-26.5 parent: 1668 - - uid: 1714 + - uid: 1449 components: - type: Transform - pos: -14.5,16.5 + pos: 22.5,-23.5 parent: 1668 - - uid: 1715 + - uid: 1450 components: - type: Transform - pos: -14.5,15.5 + pos: 23.5,-23.5 parent: 1668 - - uid: 1716 + - uid: 1451 components: - type: Transform - pos: -13.5,15.5 + pos: 22.5,-19.5 parent: 1668 - - uid: 1717 + - uid: 1452 components: - type: Transform - pos: -12.5,15.5 + pos: 23.5,-19.5 parent: 1668 - - uid: 1718 + - uid: 1453 components: - type: Transform - pos: -11.5,15.5 + pos: 14.5,-24.5 parent: 1668 - - uid: 1719 + - uid: 1454 components: - type: Transform - pos: -10.5,15.5 + pos: 14.5,-23.5 parent: 1668 - - uid: 1720 + - uid: 1455 components: - type: Transform - pos: -9.5,15.5 + pos: 14.5,-22.5 parent: 1668 - - uid: 1721 + - uid: 1456 components: - type: Transform - pos: -10.5,14.5 + pos: 15.5,-22.5 parent: 1668 - - uid: 1722 + - uid: 1457 components: - type: Transform - pos: -10.5,16.5 + pos: 16.5,-22.5 parent: 1668 - - uid: 1723 + - uid: 1458 components: - type: Transform - pos: -10.5,17.5 + pos: 13.5,-22.5 parent: 1668 - - uid: 1724 + - uid: 1459 components: - type: Transform - pos: -4.5,19.5 + pos: 14.5,-21.5 parent: 1668 - - uid: 1725 + - uid: 1460 components: - type: Transform - pos: -5.5,19.5 + pos: 14.5,-20.5 parent: 1668 - - uid: 1726 + - uid: 1461 components: - type: Transform - pos: -6.5,19.5 + pos: 14.5,-19.5 parent: 1668 - - uid: 1727 + - uid: 1462 components: - type: Transform - pos: -7.5,19.5 + pos: 14.5,-18.5 parent: 1668 - - uid: 1728 + - uid: 1463 components: - type: Transform - pos: -8.5,19.5 + pos: 15.5,-18.5 parent: 1668 - - uid: 1729 + - uid: 1464 components: - type: Transform - pos: -9.5,19.5 + pos: 16.5,-18.5 parent: 1668 - - uid: 1730 + - uid: 1465 components: - type: Transform - pos: -10.5,19.5 + pos: 17.5,-18.5 parent: 1668 - - uid: 1731 + - uid: 1466 components: - type: Transform - pos: -11.5,19.5 - parent: 1668 - - uid: 1732 - components: - - type: Transform - pos: -11.5,20.5 + pos: 17.5,-17.5 parent: 1668 - - uid: 1733 + - uid: 1467 components: - type: Transform - pos: -11.5,21.5 + pos: 17.5,-16.5 parent: 1668 - - uid: 1734 + - uid: 1468 components: - type: Transform - pos: -11.5,22.5 + pos: 16.5,-16.5 parent: 1668 - - uid: 1735 + - uid: 1469 components: - type: Transform - pos: -11.5,23.5 + pos: 15.5,-16.5 parent: 1668 - - uid: 1736 + - uid: 1470 components: - type: Transform - pos: -11.5,24.5 + pos: 14.5,-16.5 parent: 1668 - - uid: 1737 + - uid: 1471 components: - type: Transform - pos: -11.5,25.5 + pos: 13.5,-16.5 parent: 1668 - - uid: 1738 + - uid: 1472 components: - type: Transform - pos: -11.5,26.5 + pos: 12.5,-16.5 parent: 1668 - - uid: 1739 + - uid: 1473 components: - type: Transform - pos: -11.5,27.5 + pos: 12.5,-17.5 parent: 1668 - - uid: 1740 + - uid: 1474 components: - type: Transform - pos: -11.5,28.5 + pos: 12.5,-18.5 parent: 1668 - - uid: 1741 + - uid: 1475 components: - type: Transform - pos: -11.5,29.5 + pos: 3.5,-24.5 parent: 1668 - - uid: 1742 + - uid: 1476 components: - type: Transform - pos: -11.5,30.5 + pos: 3.5,-23.5 parent: 1668 - - uid: 1743 + - uid: 1477 components: - type: Transform - pos: -11.5,31.5 + pos: 4.5,-23.5 parent: 1668 - - uid: 1744 + - uid: 1478 components: - type: Transform - pos: -12.5,31.5 + pos: 4.5,-22.5 parent: 1668 - - uid: 1745 + - uid: 1479 components: - type: Transform - pos: -12.5,32.5 + pos: 5.5,-22.5 parent: 1668 - - uid: 1746 + - uid: 1480 components: - type: Transform - pos: -10.5,31.5 + pos: 6.5,-22.5 parent: 1668 - - uid: 1747 + - uid: 1481 components: - type: Transform - pos: -9.5,31.5 + pos: 7.5,-22.5 parent: 1668 - - uid: 1748 + - uid: 1482 components: - type: Transform - pos: -8.5,31.5 + pos: 8.5,-22.5 parent: 1668 - - uid: 1749 + - uid: 1483 components: - type: Transform - pos: -7.5,31.5 + pos: 9.5,-22.5 parent: 1668 - - uid: 1750 + - uid: 1484 components: - type: Transform - pos: -6.5,31.5 + pos: 9.5,-21.5 parent: 1668 - - uid: 1751 + - uid: 1485 components: - type: Transform - pos: -6.5,32.5 + pos: 9.5,-20.5 parent: 1668 - - uid: 1752 + - uid: 1486 components: - type: Transform - pos: -9.5,32.5 + pos: 9.5,-19.5 parent: 1668 - - uid: 1753 + - uid: 1487 components: - type: Transform - pos: -9.5,33.5 + pos: 9.5,-18.5 parent: 1668 - - uid: 1754 + - uid: 1488 components: - type: Transform - pos: -12.5,30.5 + pos: 9.5,-17.5 parent: 1668 - - uid: 1755 + - uid: 1489 components: - type: Transform - pos: -13.5,30.5 + pos: 9.5,-16.5 parent: 1668 - - uid: 1756 + - uid: 1490 components: - type: Transform - pos: -14.5,30.5 + pos: 9.5,-15.5 parent: 1668 - - uid: 1757 + - uid: 1491 components: - type: Transform - pos: -14.5,29.5 + pos: 9.5,-14.5 parent: 1668 - - uid: 1758 + - uid: 1492 components: - type: Transform - pos: -15.5,29.5 + pos: 4.5,-21.5 parent: 1668 - - uid: 1759 + - uid: 1493 components: - type: Transform - pos: -16.5,29.5 + pos: 4.5,-20.5 parent: 1668 - - uid: 1760 + - uid: 1494 components: - type: Transform - pos: -12.5,26.5 + pos: 4.5,-19.5 parent: 1668 - - uid: 1761 + - uid: 1495 components: - type: Transform - pos: -13.5,26.5 + pos: 4.5,-18.5 parent: 1668 - - uid: 1762 + - uid: 1496 components: - type: Transform - pos: -14.5,26.5 + pos: 4.5,-17.5 parent: 1668 - - uid: 1763 + - uid: 1497 components: - type: Transform - pos: -15.5,26.5 + pos: 4.5,-15.5 parent: 1668 - - uid: 1764 + - uid: 1498 components: - type: Transform - pos: -16.5,26.5 + pos: 4.5,-14.5 parent: 1668 - - uid: 1765 + - uid: 1499 components: - type: Transform - pos: -12.5,23.5 + pos: 4.5,-16.5 parent: 1668 - - uid: 1766 + - uid: 1500 components: - type: Transform - pos: -13.5,23.5 + pos: 5.5,-16.5 parent: 1668 - - uid: 1767 + - uid: 1501 components: - type: Transform - pos: -14.5,23.5 + pos: 6.5,-16.5 parent: 1668 - - uid: 1768 + - uid: 1502 components: - type: Transform - pos: -15.5,23.5 + pos: 7.5,-16.5 parent: 1668 - - uid: 1769 + - uid: 1503 components: - type: Transform - pos: -16.5,23.5 + pos: 8.5,-16.5 parent: 1668 - - uid: 1770 + - uid: 1504 components: - type: Transform - pos: -14.5,22.5 + pos: 32.5,-13.5 parent: 1668 - - uid: 1771 + - uid: 1505 components: - type: Transform - pos: -14.5,21.5 + pos: 31.5,-13.5 parent: 1668 - - uid: 1772 + - uid: 1506 components: - type: Transform - pos: -14.5,20.5 + pos: 30.5,-13.5 parent: 1668 - - uid: 1773 + - uid: 1507 components: - type: Transform - pos: -10.5,23.5 + pos: 30.5,-12.5 parent: 1668 - - uid: 1774 + - uid: 1508 components: - type: Transform - pos: -9.5,23.5 + pos: 30.5,-11.5 parent: 1668 - - uid: 1775 + - uid: 1509 components: - type: Transform - pos: -8.5,23.5 + pos: 30.5,-10.5 parent: 1668 - - uid: 1776 + - uid: 1510 components: - type: Transform - pos: -7.5,23.5 + pos: 30.5,-9.5 parent: 1668 - - uid: 1777 + - uid: 1511 components: - type: Transform - pos: -6.5,23.5 + pos: 30.5,-8.5 parent: 1668 - - uid: 1778 + - uid: 1512 components: - type: Transform - pos: -6.5,20.5 + pos: 31.5,-11.5 parent: 1668 - - uid: 1779 + - uid: 1513 components: - type: Transform - pos: -6.5,21.5 + pos: 32.5,-11.5 parent: 1668 - - uid: 1780 + - uid: 1514 components: - type: Transform - pos: -6.5,22.5 + pos: 33.5,-11.5 parent: 1668 - - uid: 1781 + - uid: 1515 components: - type: Transform - pos: -6.5,24.5 + pos: 34.5,-11.5 parent: 1668 - - uid: 1782 + - uid: 1516 components: - type: Transform - pos: -6.5,25.5 + pos: 34.5,-10.5 parent: 1668 - - uid: 1783 + - uid: 1517 components: - type: Transform - pos: -6.5,26.5 + pos: 34.5,-9.5 parent: 1668 - - uid: 1784 + - uid: 1518 components: - type: Transform - pos: -6.5,27.5 + pos: 33.5,-12.5 parent: 1668 - - uid: 1785 + - uid: 1519 components: - type: Transform - pos: -6.5,28.5 + pos: 33.5,-13.5 parent: 1668 - - uid: 1786 + - uid: 1638 components: - type: Transform - pos: -6.5,29.5 + pos: 18.5,8.5 parent: 1668 - - uid: 1787 + - uid: 1639 components: - type: Transform - pos: -6.5,30.5 + pos: 17.5,8.5 parent: 1668 - - uid: 1788 + - uid: 1640 components: - type: Transform - pos: -7.5,27.5 + pos: 16.5,8.5 parent: 1668 - - uid: 1789 + - uid: 1641 components: - type: Transform - pos: -8.5,27.5 + pos: 15.5,8.5 parent: 1668 - - uid: 1790 + - uid: 1642 components: - type: Transform - pos: -9.5,27.5 + pos: 14.5,8.5 parent: 1668 - - uid: 1791 + - uid: 1643 components: - type: Transform - pos: -10.5,27.5 + pos: 13.5,8.5 parent: 1668 - - uid: 1956 + - uid: 1644 components: - type: Transform - pos: 1.5,17.5 + pos: 12.5,8.5 parent: 1668 - - uid: 1957 + - uid: 1645 components: - type: Transform - pos: 1.5,16.5 + pos: 11.5,8.5 parent: 1668 - - uid: 1958 + - uid: 1646 components: - type: Transform - pos: 1.5,15.5 + pos: 10.5,8.5 parent: 1668 - - uid: 1959 + - uid: 1647 components: - type: Transform - pos: 1.5,14.5 + pos: 9.5,8.5 parent: 1668 - - uid: 1960 + - uid: 1648 components: - type: Transform - pos: 1.5,13.5 + pos: 9.5,9.5 parent: 1668 - - uid: 1961 + - uid: 1649 components: - type: Transform - pos: 1.5,12.5 + pos: 9.5,10.5 parent: 1668 - - uid: 1962 + - uid: 1650 components: - type: Transform - pos: 1.5,11.5 + pos: 9.5,11.5 parent: 1668 - - uid: 1963 + - uid: 1651 components: - type: Transform - pos: 1.5,10.5 + pos: 9.5,12.5 parent: 1668 - - uid: 1964 + - uid: 1652 components: - type: Transform - pos: 1.5,9.5 + pos: 17.5,9.5 parent: 1668 - - uid: 1965 + - uid: 1653 components: - type: Transform - pos: 1.5,8.5 + pos: 17.5,10.5 parent: 1668 - - uid: 1966 + - uid: 1654 components: - type: Transform - pos: 2.5,8.5 + pos: 17.5,11.5 parent: 1668 - - uid: 1967 + - uid: 1655 components: - type: Transform - pos: 3.5,8.5 + pos: 17.5,12.5 parent: 1668 - - uid: 1968 + - uid: 1656 components: - type: Transform - pos: 2.5,10.5 + pos: 13.5,9.5 parent: 1668 - - uid: 1969 + - uid: 1657 components: - type: Transform - pos: 3.5,10.5 + pos: 13.5,10.5 parent: 1668 - - uid: 1970 + - uid: 1658 components: - type: Transform - pos: 2.5,12.5 + pos: 13.5,11.5 parent: 1668 - - uid: 1971 + - uid: 1659 components: - type: Transform - pos: 3.5,12.5 + pos: 13.5,12.5 parent: 1668 - - uid: 1972 + - uid: 1660 components: - type: Transform - pos: 2.5,14.5 + pos: 8.5,10.5 parent: 1668 - - uid: 1973 + - uid: 1661 components: - type: Transform - pos: 3.5,14.5 + pos: 7.5,10.5 parent: 1668 - - uid: 1974 + - uid: 1662 components: - type: Transform - pos: 2.5,16.5 + pos: 6.5,10.5 parent: 1668 - - uid: 1975 + - uid: 1664 components: - type: Transform - pos: 3.5,16.5 + pos: 4.5,10.5 parent: 1668 - - uid: 1976 + - uid: 1665 components: - type: Transform - pos: 2.5,17.5 + pos: 3.5,10.5 parent: 1668 - - uid: 1977 + - uid: 1666 components: - type: Transform - pos: -3.5,17.5 + pos: 2.5,10.5 parent: 1668 - - uid: 1978 + - uid: 1667 components: - type: Transform - pos: 0.5,15.5 + pos: 2.5,11.5 parent: 1668 - - uid: 1979 + - uid: 1669 components: - type: Transform - pos: -0.5,15.5 + pos: 2.5,12.5 parent: 1668 - - uid: 1980 + - uid: 1670 components: - type: Transform - pos: -1.5,15.5 + pos: 4.5,11.5 parent: 1668 - - uid: 1981 + - uid: 1671 components: - type: Transform - pos: -2.5,15.5 + pos: 4.5,12.5 parent: 1668 - - uid: 1982 + - uid: 1672 components: - type: Transform - pos: -2.5,14.5 + pos: 4.5,13.5 parent: 1668 - - uid: 1983 + - uid: 1673 components: - type: Transform - pos: -2.5,13.5 + pos: 6.5,11.5 parent: 1668 - - uid: 1984 + - uid: 1674 components: - type: Transform - pos: -2.5,12.5 + pos: 6.5,12.5 parent: 1668 - - uid: 1985 + - uid: 1675 components: - type: Transform - pos: -2.5,11.5 + pos: 6.5,13.5 parent: 1668 - - uid: 1986 + - uid: 1676 components: - type: Transform - pos: -2.5,10.5 + pos: 8.5,11.5 parent: 1668 - - uid: 1987 + - uid: 1677 components: - type: Transform - pos: -2.5,9.5 + pos: 7.5,9.5 parent: 1668 - - uid: 1988 + - uid: 1678 components: - type: Transform - pos: -2.5,8.5 + pos: 6.5,9.5 parent: 1668 - - uid: 1989 + - uid: 1679 components: - type: Transform - pos: -1.5,8.5 + pos: 5.5,9.5 parent: 1668 - - uid: 1990 + - uid: 1680 components: - type: Transform - pos: -1.5,7.5 + pos: 4.5,9.5 parent: 1668 - - uid: 1991 + - uid: 1681 components: - type: Transform - pos: 0.5,8.5 + pos: 3.5,9.5 parent: 1668 - - uid: 1992 + - uid: 1682 components: - type: Transform - pos: 0.5,7.5 + pos: 18.5,10.5 parent: 1668 - - uid: 1993 + - uid: 1683 components: - type: Transform - pos: -0.5,8.5 + pos: 19.5,10.5 parent: 1668 - - uid: 2020 + - uid: 1686 components: - type: Transform - pos: -1.5,22.5 + pos: 22.5,10.5 parent: 1668 - - uid: 2021 + - uid: 1687 components: - type: Transform - pos: -1.5,23.5 + pos: 23.5,10.5 parent: 1668 - - uid: 2022 + - uid: 1688 components: - type: Transform - pos: -1.5,24.5 + pos: 22.5,11.5 parent: 1668 - - uid: 2023 + - uid: 1689 components: - type: Transform - pos: -2.5,24.5 + pos: 22.5,12.5 parent: 1668 - - uid: 2024 + - uid: 1690 components: - type: Transform - pos: -1.5,21.5 + pos: 22.5,13.5 parent: 1668 - - uid: 2025 + - uid: 1691 components: - type: Transform - pos: -1.5,20.5 + pos: 19.5,12.5 parent: 1668 - - uid: 2026 + - uid: 1692 components: - type: Transform - pos: -0.5,20.5 + pos: 20.5,12.5 parent: 1668 - - uid: 2027 + - uid: 1693 components: - type: Transform - pos: -0.5,19.5 + pos: 20.5,13.5 parent: 1668 - - uid: 2028 + - uid: 1694 components: - type: Transform - pos: -0.5,18.5 + pos: 19.5,11.5 parent: 1668 - - uid: 2029 + - uid: 1695 components: - type: Transform - pos: 0.5,20.5 + pos: 18.5,11.5 parent: 1668 - - uid: 2030 + - uid: 1696 components: - type: Transform - pos: 1.5,20.5 + pos: 19.5,9.5 parent: 1668 - - uid: 2031 + - uid: 1697 components: - type: Transform - pos: -2.5,21.5 + pos: 20.5,9.5 parent: 1668 - - uid: 2057 + - uid: 1698 components: - type: Transform - pos: -3.5,5.5 + pos: 21.5,9.5 parent: 1668 - - uid: 2567 + - uid: 1699 components: - type: Transform - pos: 17.5,17.5 + pos: 22.5,9.5 parent: 1668 - - uid: 2568 + - uid: 1700 components: - type: Transform - pos: 17.5,16.5 + pos: 23.5,9.5 parent: 1668 - - uid: 2569 + - uid: 1701 components: - type: Transform - pos: 17.5,15.5 + pos: 9.5,13.5 parent: 1668 - - uid: 2570 + - uid: 1702 components: - type: Transform - pos: 17.5,14.5 + pos: 10.5,12.5 parent: 1668 - - uid: 2571 + - uid: 1703 components: - type: Transform - pos: 17.5,13.5 + pos: 11.5,12.5 parent: 1668 - - uid: 2572 + - uid: 1704 components: - type: Transform - pos: 17.5,12.5 + pos: 11.5,13.5 parent: 1668 - - uid: 2573 + - uid: 1705 components: - type: Transform - pos: 17.5,11.5 + pos: 17.5,13.5 parent: 1668 - - uid: 2574 + - uid: 1706 components: - type: Transform pos: 16.5,12.5 parent: 1668 - - uid: 2575 + - uid: 1707 components: - type: Transform pos: 15.5,12.5 parent: 1668 - - uid: 2576 + - uid: 1708 components: - type: Transform - pos: 16.5,14.5 + pos: 15.5,13.5 parent: 1668 - - uid: 2577 + - uid: 1711 components: - type: Transform - pos: 15.5,14.5 + pos: 12.5,7.5 parent: 1668 - - uid: 2578 + - uid: 1712 components: - type: Transform - pos: 17.5,10.5 + pos: 12.5,6.5 parent: 1668 - - uid: 2579 + - uid: 1713 components: - type: Transform - pos: 16.5,10.5 + pos: 12.5,5.5 parent: 1668 - - uid: 2580 + - uid: 1714 components: - type: Transform - pos: 15.5,10.5 + pos: 12.5,4.5 parent: 1668 - - uid: 2581 + - uid: 1715 components: - type: Transform - pos: 18.5,11.5 + pos: 12.5,3.5 parent: 1668 - - uid: 2582 + - uid: 1716 components: - type: Transform - pos: 19.5,11.5 + pos: 12.5,2.5 parent: 1668 - - uid: 2583 + - uid: 1717 components: - type: Transform - pos: 20.5,11.5 + pos: 13.5,3.5 parent: 1668 - - uid: 2584 + - uid: 1718 components: - type: Transform - pos: 18.5,14.5 + pos: 14.5,3.5 parent: 1668 - - uid: 2585 + - uid: 1719 components: - type: Transform - pos: 19.5,14.5 + pos: 14.5,2.5 parent: 1668 - - uid: 2586 + - uid: 1720 components: - type: Transform - pos: 20.5,14.5 + pos: 15.5,3.5 parent: 1668 - - uid: 2587 + - uid: 1721 components: - type: Transform - pos: 19.5,15.5 + pos: 16.5,3.5 parent: 1668 - - uid: 2588 + - uid: 1722 components: - type: Transform - pos: 21.5,20.5 + pos: 16.5,2.5 parent: 1668 - - uid: 2589 + - uid: 1723 components: - type: Transform - pos: 20.5,20.5 + pos: 10.5,7.5 parent: 1668 - - uid: 2590 + - uid: 1724 components: - type: Transform - pos: 19.5,20.5 + pos: 10.5,6.5 parent: 1668 - - uid: 2591 + - uid: 1725 components: - type: Transform - pos: 18.5,20.5 + pos: 10.5,5.5 parent: 1668 - - uid: 2592 + - uid: 1726 components: - type: Transform - pos: 19.5,19.5 + pos: 10.5,4.5 parent: 1668 - - uid: 2593 + - uid: 1727 components: - type: Transform - pos: 19.5,18.5 + pos: 10.5,3.5 parent: 1668 - - uid: 2594 + - uid: 2679 components: - type: Transform - pos: 19.5,21.5 + pos: -11.5,15.5 parent: 1668 - - uid: 2595 + - uid: 2866 components: - type: Transform - pos: 19.5,22.5 + pos: -19.5,14.5 parent: 1668 - - uid: 2596 + - uid: 2867 components: - type: Transform - pos: 21.5,21.5 + pos: -19.5,13.5 parent: 1668 - - uid: 2597 + - uid: 2868 components: - type: Transform - pos: 22.5,21.5 + pos: -18.5,13.5 parent: 1668 - - uid: 2598 + - uid: 2869 components: - type: Transform - pos: 23.5,21.5 + pos: -18.5,12.5 parent: 1668 - - uid: 2599 + - uid: 2870 components: - type: Transform - pos: 23.5,22.5 + pos: -18.5,11.5 parent: 1668 - - uid: 2600 + - uid: 2871 components: - type: Transform - pos: 24.5,22.5 + pos: -18.5,10.5 parent: 1668 - - uid: 2601 + - uid: 2872 components: - type: Transform - pos: 25.5,22.5 + pos: -18.5,6.5 parent: 1668 - - uid: 2602 + - uid: 2873 components: - type: Transform - pos: 26.5,22.5 + pos: -17.5,10.5 parent: 1668 - - uid: 2603 + - uid: 2874 components: - type: Transform - pos: 27.5,22.5 + pos: -16.5,10.5 parent: 1668 - - uid: 2604 + - uid: 2875 components: - type: Transform - pos: 28.5,22.5 + pos: -15.5,10.5 parent: 1668 - - uid: 2605 + - uid: 2876 components: - type: Transform - pos: 29.5,22.5 + pos: -15.5,11.5 parent: 1668 - - uid: 2606 + - uid: 2877 components: - type: Transform - pos: 30.5,22.5 + pos: -15.5,12.5 parent: 1668 - - uid: 2607 + - uid: 2878 components: - type: Transform - pos: 31.5,22.5 + pos: -14.5,12.5 parent: 1668 - - uid: 2608 + - uid: 2879 components: - type: Transform - pos: 32.5,22.5 + pos: -13.5,12.5 parent: 1668 - - uid: 2609 + - uid: 2880 components: - type: Transform - pos: 33.5,22.5 + pos: -13.5,11.5 parent: 1668 - - uid: 2610 + - uid: 2881 components: - type: Transform - pos: 34.5,22.5 + pos: -13.5,10.5 parent: 1668 - - uid: 2611 + - uid: 2882 components: - type: Transform - pos: 33.5,21.5 + pos: -12.5,10.5 parent: 1668 - - uid: 2612 + - uid: 2883 components: - type: Transform - pos: 28.5,21.5 + pos: -19.5,10.5 parent: 1668 - - uid: 2613 + - uid: 2884 components: - type: Transform - pos: 20.5,21.5 + pos: -20.5,10.5 parent: 1668 - - uid: 2614 + - uid: 2885 components: - type: Transform - pos: 23.5,20.5 + pos: -21.5,10.5 parent: 1668 - - uid: 2615 + - uid: 2886 components: - type: Transform - pos: 23.5,19.5 + pos: -22.5,10.5 parent: 1668 - - uid: 2616 + - uid: 2887 components: - type: Transform - pos: 23.5,18.5 + pos: -22.5,11.5 parent: 1668 - - uid: 2617 + - uid: 2888 components: - type: Transform - pos: 23.5,17.5 + pos: -22.5,12.5 parent: 1668 - - uid: 2618 + - uid: 2889 components: - type: Transform - pos: 23.5,16.5 + pos: -18.5,14.5 parent: 1668 - - uid: 2619 + - uid: 2890 components: - type: Transform - pos: 23.5,15.5 + pos: -18.5,15.5 parent: 1668 - - uid: 2620 + - uid: 2944 components: - type: Transform - pos: 24.5,17.5 + pos: -19.5,8.5 parent: 1668 - - uid: 2621 + - uid: 2945 components: - type: Transform - pos: 24.5,16.5 + pos: -19.5,7.5 parent: 1668 - - uid: 2622 + - uid: 2946 components: - type: Transform - pos: 24.5,15.5 + pos: -19.5,6.5 parent: 1668 - - uid: 2623 + - uid: 2947 components: - type: Transform - pos: 24.5,19.5 + pos: -19.5,5.5 parent: 1668 - - uid: 2624 + - uid: 2948 components: - type: Transform - pos: 24.5,14.5 + pos: -19.5,4.5 parent: 1668 - - uid: 2625 + - uid: 2949 components: - type: Transform - pos: 24.5,13.5 + pos: -17.5,6.5 parent: 1668 - - uid: 2626 + - uid: 2950 components: - type: Transform - pos: 25.5,13.5 + pos: -16.5,6.5 parent: 1668 - - uid: 2627 + - uid: 2951 components: - type: Transform - pos: 26.5,13.5 + pos: -15.5,6.5 parent: 1668 - - uid: 2628 + - uid: 2952 components: - type: Transform - pos: 27.5,13.5 + pos: -14.5,6.5 parent: 1668 - - uid: 2629 + - uid: 2953 components: - type: Transform - pos: 28.5,13.5 + pos: -13.5,6.5 parent: 1668 - - uid: 2630 + - uid: 2954 components: - type: Transform - pos: 29.5,13.5 + pos: -11.5,6.5 parent: 1668 - - uid: 2631 + - uid: 2955 components: - type: Transform - pos: 30.5,13.5 + pos: -10.5,6.5 parent: 1668 - - uid: 2632 + - uid: 2956 components: - type: Transform - pos: 31.5,13.5 + pos: -12.5,6.5 parent: 1668 - - uid: 2633 + - uid: 2957 components: - type: Transform - pos: 32.5,13.5 + pos: -19.5,3.5 parent: 1668 - - uid: 2634 + - uid: 2958 components: - type: Transform - pos: 33.5,13.5 + pos: -18.5,3.5 parent: 1668 - - uid: 2635 + - uid: 2959 components: - type: Transform - pos: 33.5,14.5 + pos: -17.5,3.5 parent: 1668 - - uid: 2636 + - uid: 2960 components: - type: Transform - pos: 31.5,14.5 + pos: -16.5,3.5 parent: 1668 - - uid: 2637 + - uid: 2961 components: - type: Transform - pos: 30.5,14.5 + pos: -15.5,3.5 parent: 1668 - - uid: 2638 + - uid: 2962 components: - type: Transform - pos: 29.5,14.5 + pos: -14.5,3.5 parent: 1668 - - uid: 2639 + - uid: 2963 components: - type: Transform - pos: 27.5,14.5 + pos: -13.5,3.5 parent: 1668 - - uid: 2640 + - uid: 2964 components: - type: Transform - pos: 26.5,14.5 + pos: -12.5,3.5 parent: 1668 - - uid: 2641 + - uid: 2965 components: - type: Transform - pos: 25.5,14.5 + pos: -11.5,3.5 parent: 1668 - - uid: 2642 + - uid: 2966 components: - type: Transform - pos: 28.5,14.5 + pos: -10.5,3.5 parent: 1668 - - uid: 2643 + - uid: 2967 components: - type: Transform - pos: 28.5,15.5 + pos: -20.5,4.5 parent: 1668 - - uid: 2644 + - uid: 2968 components: - type: Transform - pos: 28.5,16.5 + pos: -21.5,4.5 parent: 1668 - - uid: 2645 + - uid: 2969 components: - type: Transform - pos: 28.5,17.5 + pos: -22.5,4.5 parent: 1668 - - uid: 2646 + - uid: 2970 components: - type: Transform - pos: 28.5,18.5 + pos: -22.5,5.5 parent: 1668 - - uid: 2647 + - uid: 2971 components: - type: Transform - pos: 29.5,18.5 + pos: -22.5,6.5 parent: 1668 - - uid: 2648 + - uid: 3042 components: - type: Transform - pos: 30.5,18.5 + pos: 14.5,17.5 parent: 1668 - - uid: 2649 + - uid: 3043 components: - type: Transform - pos: 31.5,18.5 + pos: 14.5,18.5 parent: 1668 - - uid: 2650 + - uid: 3044 components: - type: Transform - pos: 27.5,18.5 + pos: 14.5,19.5 parent: 1668 - - uid: 2651 + - uid: 3045 components: - type: Transform - pos: 26.5,18.5 + pos: 13.5,19.5 parent: 1668 - - uid: 2652 + - uid: 3046 components: - type: Transform - pos: 25.5,18.5 + pos: 12.5,19.5 parent: 1668 - - uid: 2653 + - uid: 3047 components: - type: Transform - pos: 27.5,15.5 + pos: 13.5,20.5 parent: 1668 - - uid: 2654 + - uid: 3048 components: - type: Transform - pos: 26.5,15.5 + pos: 13.5,21.5 parent: 1668 - - uid: 2655 + - uid: 3049 components: - type: Transform - pos: 29.5,15.5 + pos: 13.5,22.5 parent: 1668 - - uid: 2656 + - uid: 3050 components: - type: Transform - pos: 30.5,15.5 + pos: 13.5,23.5 parent: 1668 - - uid: 2657 + - uid: 3051 components: - type: Transform - pos: 24.5,12.5 + pos: 13.5,24.5 parent: 1668 - - uid: 2658 + - uid: 3052 components: - type: Transform - pos: 23.5,12.5 + pos: 13.5,25.5 parent: 1668 - - uid: 2659 + - uid: 3053 components: - type: Transform - pos: 22.5,12.5 + pos: 13.5,26.5 parent: 1668 - - uid: 2660 + - uid: 3054 components: - type: Transform - pos: 33.5,12.5 + pos: 13.5,27.5 parent: 1668 - - uid: 2661 + - uid: 3055 components: - type: Transform - pos: 34.5,12.5 + pos: 13.5,28.5 parent: 1668 - - uid: 2662 + - uid: 3056 components: - type: Transform - pos: 33.5,11.5 + pos: 13.5,29.5 parent: 1668 - - uid: 2663 + - uid: 3057 components: - type: Transform - pos: 32.5,11.5 + pos: 13.5,30.5 parent: 1668 - - uid: 2664 + - uid: 3058 components: - type: Transform - pos: 31.5,11.5 + pos: 13.5,31.5 parent: 1668 - - uid: 2665 + - uid: 3059 components: - type: Transform - pos: 30.5,11.5 + pos: 12.5,31.5 parent: 1668 - - uid: 2666 + - uid: 3060 components: - type: Transform - pos: 29.5,11.5 + pos: 12.5,32.5 parent: 1668 - - uid: 2667 + - uid: 3061 components: - type: Transform - pos: 28.5,11.5 + pos: 12.5,33.5 parent: 1668 - - uid: 2668 + - uid: 3062 components: - type: Transform - pos: 27.5,11.5 + pos: 13.5,33.5 parent: 1668 - - uid: 2669 + - uid: 3063 components: - type: Transform - pos: 26.5,11.5 + pos: 14.5,33.5 parent: 1668 - - uid: 2670 + - uid: 3064 components: - type: Transform - pos: 25.5,11.5 + pos: 14.5,32.5 parent: 1668 - - uid: 2671 + - uid: 3065 components: - type: Transform - pos: 24.5,11.5 + pos: 14.5,31.5 parent: 1668 - - uid: 2672 + - uid: 3066 components: - type: Transform - pos: 23.5,11.5 + pos: 14.5,27.5 parent: 1668 - - uid: 2673 + - uid: 3067 components: - type: Transform - pos: 35.5,19.5 + pos: 15.5,27.5 parent: 1668 - - uid: 2674 + - uid: 3068 components: - type: Transform - pos: 34.5,19.5 + pos: 12.5,27.5 parent: 1668 - - uid: 2675 + - uid: 3069 components: - type: Transform - pos: 33.5,19.5 + pos: 11.5,27.5 parent: 1668 - - uid: 2676 + - uid: 3070 components: - type: Transform - pos: 33.5,18.5 + pos: 14.5,25.5 parent: 1668 - - uid: 2677 + - uid: 3071 components: - type: Transform - pos: 33.5,17.5 + pos: 15.5,25.5 parent: 1668 - - uid: 2678 + - uid: 3072 components: - type: Transform - pos: 33.5,16.5 + pos: 12.5,25.5 parent: 1668 - - uid: 2679 + - uid: 3073 components: - type: Transform - pos: 7.5,16.5 + pos: 11.5,25.5 parent: 1668 - - uid: 2680 + - uid: 3074 components: - type: Transform - pos: 7.5,15.5 + pos: 12.5,23.5 parent: 1668 - - uid: 2681 + - uid: 3075 components: - type: Transform - pos: 7.5,14.5 + pos: 11.5,23.5 parent: 1668 - - uid: 2682 + - uid: 3076 components: - type: Transform - pos: 7.5,13.5 + pos: 14.5,23.5 parent: 1668 - - uid: 2683 + - uid: 3077 components: - type: Transform - pos: 7.5,12.5 + pos: 15.5,23.5 parent: 1668 - - uid: 2684 + - uid: 3078 components: - type: Transform - pos: 7.5,11.5 + pos: 15.5,19.5 parent: 1668 - - uid: 2685 + - uid: 3079 components: - type: Transform - pos: 6.5,12.5 + pos: 11.5,19.5 parent: 1668 - - uid: 2686 + - uid: 3081 components: - type: Transform - pos: 5.5,12.5 + pos: 20.5,19.5 parent: 1668 - - uid: 2687 + - uid: 3082 components: - type: Transform - pos: 6.5,14.5 + pos: 21.5,19.5 parent: 1668 - - uid: 2688 + - uid: 3083 components: - type: Transform - pos: 5.5,14.5 + pos: 22.5,19.5 parent: 1668 - - uid: 2689 + - uid: 3084 components: - type: Transform - pos: 8.5,14.5 + pos: 23.5,19.5 parent: 1668 - - uid: 2690 + - uid: 3085 components: - type: Transform - pos: 9.5,14.5 + pos: 24.5,19.5 parent: 1668 - - uid: 2691 + - uid: 3086 components: - type: Transform - pos: 10.5,14.5 + pos: 25.5,19.5 parent: 1668 - - uid: 2692 + - uid: 3087 components: - type: Transform - pos: 11.5,14.5 + pos: 26.5,19.5 parent: 1668 - - uid: 2693 + - uid: 3088 components: - type: Transform - pos: 12.5,14.5 + pos: 27.5,19.5 parent: 1668 - - uid: 2694 + - uid: 3089 components: - type: Transform - pos: 8.5,12.5 + pos: 28.5,19.5 parent: 1668 - - uid: 2695 + - uid: 3090 components: - type: Transform - pos: 9.5,12.5 + pos: 29.5,19.5 parent: 1668 - - uid: 2696 + - uid: 3091 components: - type: Transform - pos: 10.5,12.5 + pos: 31.5,19.5 parent: 1668 - - uid: 2697 + - uid: 3092 components: - type: Transform - pos: 11.5,12.5 + pos: 30.5,19.5 parent: 1668 - - uid: 2698 + - uid: 3093 components: - type: Transform - pos: 12.5,12.5 + pos: 19.5,19.5 parent: 1668 - - uid: 2699 + - uid: 3094 components: - type: Transform - pos: 13.5,14.5 + pos: 19.5,20.5 parent: 1668 - - uid: 2700 + - uid: 3095 components: - type: Transform - pos: 13.5,15.5 + pos: 19.5,21.5 parent: 1668 - - uid: 2701 + - uid: 3096 components: - type: Transform - pos: 14.5,15.5 + pos: 19.5,22.5 parent: 1668 - - uid: 2702 + - uid: 3097 components: - type: Transform - pos: 14.5,16.5 + pos: 19.5,23.5 parent: 1668 - - uid: 2703 + - uid: 3098 components: - type: Transform - pos: 14.5,17.5 + pos: 19.5,24.5 parent: 1668 - - uid: 2704 + - uid: 3099 components: - type: Transform - pos: 14.5,18.5 + pos: 19.5,25.5 parent: 1668 - - uid: 2705 + - uid: 3102 components: - type: Transform - pos: 15.5,18.5 + pos: 21.5,26.5 parent: 1668 - - uid: 2706 + - uid: 3103 components: - type: Transform - pos: 13.5,13.5 + pos: 22.5,26.5 parent: 1668 - - uid: 2707 + - uid: 3104 components: - type: Transform - pos: 13.5,12.5 + pos: 23.5,26.5 parent: 1668 - - uid: 2708 + - uid: 3105 components: - type: Transform - pos: 13.5,11.5 + pos: 24.5,26.5 parent: 1668 - - uid: 2709 + - uid: 3106 components: - type: Transform - pos: 10.5,13.5 + pos: 25.5,26.5 parent: 1668 - - uid: 2711 + - uid: 3107 components: - type: Transform - pos: 10.5,11.5 + pos: 26.5,26.5 parent: 1668 - - uid: 2743 + - uid: 3108 components: - type: Transform - pos: 10.5,22.5 + pos: 27.5,26.5 parent: 1668 - - uid: 3033 + - uid: 3109 components: - type: Transform - pos: 7.5,30.5 + pos: 28.5,26.5 parent: 1668 - - uid: 3034 + - uid: 3110 components: - type: Transform - pos: 8.5,30.5 + pos: 29.5,26.5 parent: 1668 - - uid: 3035 + - uid: 3111 components: - type: Transform - pos: 9.5,30.5 + pos: 30.5,26.5 parent: 1668 - - uid: 3036 + - uid: 3112 components: - type: Transform - pos: 9.5,31.5 + pos: 31.5,26.5 parent: 1668 - - uid: 3037 + - uid: 3113 components: - type: Transform - pos: 10.5,31.5 + pos: 26.5,25.5 parent: 1668 - - uid: 3038 + - uid: 3114 components: - type: Transform - pos: 11.5,31.5 + pos: 26.5,24.5 parent: 1668 - - uid: 3039 + - uid: 3115 components: - type: Transform - pos: 12.5,31.5 + pos: 22.5,20.5 parent: 1668 - - uid: 3040 + - uid: 3116 components: - type: Transform - pos: 13.5,31.5 + pos: 22.5,21.5 parent: 1668 - - uid: 3041 + - uid: 3117 components: - type: Transform - pos: 14.5,31.5 + pos: 22.5,22.5 parent: 1668 - - uid: 3042 + - uid: 3118 components: - type: Transform - pos: 15.5,31.5 + pos: 23.5,22.5 parent: 1668 - - uid: 3043 + - uid: 3119 components: - type: Transform - pos: 8.5,31.5 + pos: 23.5,23.5 parent: 1668 - - uid: 3044 + - uid: 3120 components: - type: Transform - pos: 7.5,31.5 + pos: 30.5,20.5 parent: 1668 - - uid: 3045 + - uid: 3121 components: - type: Transform - pos: 6.5,31.5 + pos: 30.5,21.5 parent: 1668 - - uid: 3046 + - uid: 3122 components: - type: Transform - pos: 5.5,31.5 + pos: 30.5,22.5 parent: 1668 - - uid: 3047 + - uid: 3123 components: - type: Transform - pos: 4.5,31.5 + pos: 29.5,22.5 parent: 1668 - - uid: 3048 + - uid: 3124 components: - type: Transform - pos: 3.5,31.5 + pos: 29.5,23.5 parent: 1668 - - uid: 3049 + - uid: 3125 components: - type: Transform - pos: 9.5,29.5 + pos: 31.5,21.5 parent: 1668 - - uid: 3050 + - uid: 3126 components: - type: Transform - pos: 9.5,28.5 + pos: 32.5,21.5 parent: 1668 - - uid: 3051 + - uid: 3127 components: - type: Transform - pos: 8.5,29.5 + pos: 33.5,21.5 parent: 1668 - - uid: 3052 + - uid: 3128 components: - type: Transform - pos: 7.5,29.5 + pos: 34.5,21.5 parent: 1668 - - uid: 3053 + - uid: 3129 components: - type: Transform - pos: 10.5,29.5 + pos: 34.5,23.5 parent: 1668 - - uid: 3054 + - uid: 3130 components: - type: Transform - pos: 11.5,29.5 + pos: 34.5,24.5 parent: 1668 - - uid: 3055 + - uid: 3131 components: - type: Transform - pos: 9.5,26.5 + pos: 33.5,24.5 parent: 1668 - - uid: 3056 + - uid: 3132 components: - type: Transform - pos: 9.5,25.5 + pos: 32.5,24.5 parent: 1668 - - uid: 3057 + - uid: 3133 components: - type: Transform - pos: 8.5,25.5 + pos: 31.5,24.5 parent: 1668 - - uid: 3058 + - uid: 3134 components: - type: Transform - pos: 8.5,26.5 + pos: 31.5,25.5 parent: 1668 - - uid: 3059 + - uid: 3135 components: - type: Transform - pos: 7.5,26.5 + pos: 34.5,25.5 parent: 1668 - - uid: 3060 + - uid: 3136 components: - type: Transform - pos: 7.5,27.5 + pos: 34.5,26.5 parent: 1668 - - uid: 3061 + - uid: 3137 components: - type: Transform - pos: 10.5,25.5 + pos: 34.5,22.5 parent: 1668 - - uid: 3062 + - uid: 3138 components: - type: Transform - pos: 10.5,26.5 + pos: 34.5,20.5 parent: 1668 - - uid: 3063 + - uid: 3139 components: - type: Transform - pos: 11.5,26.5 + pos: 34.5,19.5 parent: 1668 - - uid: 3064 + - uid: 3140 components: - type: Transform - pos: 11.5,27.5 + pos: 34.5,18.5 parent: 1668 - - uid: 3065 + - uid: 3141 components: - type: Transform - pos: 9.5,24.5 + pos: 34.5,17.5 parent: 1668 - - uid: 3066 + - uid: 3142 components: - type: Transform - pos: 9.5,23.5 + pos: 34.5,16.5 parent: 1668 - - uid: 3067 + - uid: 3143 components: - type: Transform - pos: 9.5,22.5 + pos: 34.5,15.5 parent: 1668 - - uid: 3068 + - uid: 3145 components: - type: Transform - pos: 8.5,22.5 + pos: 28.5,9.5 parent: 1668 - - uid: 3069 + - uid: 3146 components: - type: Transform - pos: 7.5,22.5 + pos: 28.5,10.5 parent: 1668 - - uid: 3070 + - uid: 3147 components: - type: Transform - pos: 7.5,21.5 + pos: 29.5,10.5 parent: 1668 - - uid: 3071 + - uid: 3148 components: - type: Transform - pos: 7.5,18.5 + pos: 30.5,10.5 parent: 1668 - - uid: 3072 + - uid: 3149 components: - type: Transform - pos: 6.5,18.5 + pos: 31.5,10.5 parent: 1668 - - uid: 3073 + - uid: 3150 components: - type: Transform - pos: 5.5,18.5 + pos: 32.5,10.5 parent: 1668 - - uid: 3074 + - uid: 3151 components: - type: Transform - pos: 8.5,18.5 + pos: 33.5,10.5 parent: 1668 - - uid: 3075 + - uid: 3152 components: - type: Transform - pos: 9.5,18.5 + pos: 27.5,10.5 parent: 1668 - - uid: 3076 + - uid: 3153 components: - type: Transform - pos: 10.5,18.5 + pos: 26.5,10.5 parent: 1668 - - uid: 3077 + - uid: 3154 components: - type: Transform - pos: 10.5,17.5 + pos: 26.5,11.5 parent: 1668 - - uid: 3078 + - uid: 3155 components: - type: Transform - pos: 10.5,16.5 + pos: 33.5,11.5 parent: 1668 - - uid: 3080 + - uid: 3156 components: - type: Transform - pos: 8.5,16.5 + pos: 29.5,11.5 parent: 1668 - - uid: 3081 + - uid: 3223 components: - type: Transform - pos: 8.5,20.5 + pos: -11.5,14.5 parent: 1668 - - uid: 3082 + - uid: 3227 components: - type: Transform - pos: 8.5,19.5 + pos: -12.5,16.5 parent: 1668 - - uid: 3083 + - uid: 3228 components: - type: Transform - pos: 11.5,22.5 + pos: -11.5,16.5 parent: 1668 - - uid: 3084 + - uid: 3249 components: - type: Transform - pos: 12.5,22.5 + pos: -13.5,16.5 parent: 1668 - - uid: 3085 + - uid: 3250 components: - type: Transform - pos: 13.5,22.5 + pos: -10.5,15.5 parent: 1668 - - uid: 3086 + - uid: 3310 components: - type: Transform - pos: 14.5,22.5 + pos: -9.5,15.5 parent: 1668 - - uid: 3087 + - uid: 3311 components: - type: Transform - pos: 15.5,22.5 + pos: -8.5,15.5 parent: 1668 - - uid: 3088 + - uid: 3312 components: - type: Transform - pos: 11.5,25.5 + pos: -8.5,14.5 parent: 1668 - - uid: 3089 + - uid: 3313 components: - type: Transform - pos: 12.5,25.5 + pos: -8.5,13.5 parent: 1668 - - uid: 3090 + - uid: 3314 components: - type: Transform - pos: 13.5,25.5 + pos: -8.5,12.5 parent: 1668 - - uid: 3091 + - uid: 3315 components: - type: Transform - pos: 14.5,25.5 + pos: -8.5,11.5 parent: 1668 - - uid: 3092 + - uid: 3316 components: - type: Transform - pos: 15.5,25.5 + pos: -8.5,10.5 parent: 1668 - - uid: 3093 + - uid: 3317 components: - type: Transform - pos: 13.5,26.5 + pos: -7.5,10.5 parent: 1668 - - uid: 3094 + - uid: 3318 components: - type: Transform - pos: 13.5,27.5 + pos: -6.5,10.5 parent: 1668 - - uid: 3095 + - uid: 3319 components: - type: Transform - pos: 13.5,28.5 + pos: -5.5,10.5 parent: 1668 - - uid: 3096 + - uid: 3320 components: - type: Transform - pos: 14.5,28.5 + pos: -5.5,11.5 parent: 1668 - - uid: 3097 + - uid: 3321 components: - type: Transform - pos: 15.5,28.5 + pos: -5.5,9.5 parent: 1668 - - uid: 3098 + - uid: 3322 components: - type: Transform - pos: 7.5,25.5 + pos: -5.5,8.5 parent: 1668 - - uid: 3099 + - uid: 3323 components: - type: Transform - pos: 6.5,25.5 + pos: -8.5,16.5 parent: 1668 - - uid: 3100 + - uid: 3324 components: - type: Transform - pos: 5.5,25.5 + pos: -8.5,17.5 parent: 1668 - - uid: 3101 + - uid: 3325 components: - type: Transform - pos: 4.5,25.5 + pos: -8.5,18.5 parent: 1668 - - uid: 3102 + - uid: 3326 components: - type: Transform - pos: 3.5,25.5 + pos: -8.5,19.5 parent: 1668 - - uid: 3103 + - uid: 3327 components: - type: Transform - pos: 5.5,26.5 + pos: -8.5,20.5 parent: 1668 - - uid: 3104 + - uid: 3328 components: - type: Transform - pos: 5.5,27.5 + pos: -8.5,21.5 parent: 1668 - - uid: 3105 + - uid: 3329 components: - type: Transform - pos: 5.5,28.5 + pos: -8.5,22.5 parent: 1668 - - uid: 3106 + - uid: 3330 components: - type: Transform - pos: 4.5,28.5 + pos: -7.5,18.5 parent: 1668 - - uid: 3107 + - uid: 3331 components: - type: Transform - pos: 3.5,28.5 + pos: -6.5,18.5 parent: 1668 - - uid: 3108 + - uid: 3332 components: - type: Transform - pos: 4.5,24.5 + pos: -5.5,18.5 parent: 1668 - - uid: 3109 + - uid: 3333 components: - type: Transform - pos: 4.5,27.5 + pos: -4.5,18.5 parent: 1668 - - uid: 3110 + - uid: 3334 components: - type: Transform - pos: 14.5,27.5 + pos: -4.5,19.5 parent: 1668 - - uid: 3111 + - uid: 3335 components: - type: Transform - pos: 14.5,24.5 + pos: -4.5,20.5 parent: 1668 - - uid: 3112 + - uid: 3336 components: - type: Transform - pos: 14.5,21.5 + pos: -4.5,21.5 parent: 1668 - - uid: 3113 + - uid: 3337 components: - type: Transform - pos: 6.5,30.5 + pos: -4.5,22.5 parent: 1668 - - uid: 3114 + - uid: 3338 components: - type: Transform - pos: 5.5,30.5 + pos: -5.5,22.5 parent: 1668 - - uid: 3115 + - uid: 3339 components: - type: Transform - pos: 12.5,30.5 + pos: -6.5,22.5 parent: 1668 - - uid: 3116 + - uid: 3340 components: - type: Transform - pos: 13.5,30.5 + pos: -7.5,22.5 parent: 1668 - - uid: 3467 + - uid: 3341 components: - type: Transform - pos: -22.5,12.5 + pos: -5.5,23.5 parent: 1668 - - uid: 3468 + - uid: 3342 components: - type: Transform - pos: -22.5,13.5 + pos: -5.5,24.5 parent: 1668 - - uid: 3469 + - uid: 3343 components: - type: Transform - pos: -21.5,12.5 + pos: -6.5,24.5 parent: 1668 - - uid: 3470 + - uid: 3344 components: - type: Transform - pos: -21.5,13.5 + pos: -4.5,24.5 parent: 1668 - - uid: 3471 + - uid: 3345 components: - type: Transform - pos: -21.5,14.5 + pos: -9.5,22.5 parent: 1668 - - uid: 3472 + - uid: 3346 components: - type: Transform - pos: -21.5,11.5 + pos: -10.5,22.5 parent: 1668 - - uid: 3473 + - uid: 3361 components: - type: Transform - pos: -21.5,10.5 + pos: -11.5,22.5 parent: 1668 - - uid: 3474 + - uid: 3362 components: - type: Transform - pos: -21.5,9.5 + pos: -11.5,23.5 parent: 1668 - - uid: 3475 + - uid: 3363 components: - type: Transform - pos: -20.5,11.5 + pos: -11.5,24.5 parent: 1668 - - uid: 3476 + - uid: 3364 components: - type: Transform - pos: -19.5,11.5 + pos: -10.5,24.5 parent: 1668 - - uid: 3477 + - uid: 3365 components: - type: Transform - pos: -22.5,11.5 + pos: -12.5,24.5 parent: 1668 - - uid: 3478 + - uid: 3539 components: - type: Transform - pos: -23.5,11.5 + pos: -19.5,18.5 parent: 1668 - - uid: 3479 + - uid: 3540 components: - type: Transform - pos: -24.5,11.5 + pos: -19.5,19.5 parent: 1668 - - uid: 3480 + - uid: 3541 components: - type: Transform - pos: -25.5,11.5 + pos: -19.5,20.5 parent: 1668 - - uid: 3481 + - uid: 3542 components: - type: Transform - pos: -26.5,11.5 + pos: -20.5,20.5 parent: 1668 - - uid: 3482 + - uid: 3543 components: - type: Transform - pos: -27.5,11.5 + pos: -21.5,20.5 parent: 1668 - - uid: 3483 + - uid: 3544 components: - type: Transform - pos: -27.5,12.5 + pos: -22.5,20.5 parent: 1668 - - uid: 3484 + - uid: 3545 components: - type: Transform - pos: -25.5,10.5 + pos: -23.5,20.5 parent: 1668 - - uid: 3485 + - uid: 3546 components: - type: Transform - pos: -25.5,9.5 + pos: -24.5,20.5 parent: 1668 - - uid: 3486 + - uid: 3547 components: - type: Transform - pos: -26.5,9.5 + pos: -25.5,20.5 parent: 1668 - - uid: 3487 + - uid: 3548 components: - type: Transform - pos: -27.5,9.5 + pos: -26.5,20.5 parent: 1668 - - uid: 3488 + - uid: 3549 components: - type: Transform - pos: -27.5,8.5 + pos: -28.5,20.5 parent: 1668 - - uid: 3489 + - uid: 3550 components: - type: Transform - pos: -22.5,7.5 + pos: -27.5,20.5 parent: 1668 - - uid: 3490 + - uid: 3551 components: - type: Transform - pos: -22.5,6.5 + pos: -29.5,20.5 parent: 1668 - - uid: 3491 + - uid: 3552 components: - type: Transform - pos: -22.5,5.5 + pos: -30.5,20.5 parent: 1668 - - uid: 3492 + - uid: 3553 components: - type: Transform - pos: -22.5,4.5 + pos: -26.5,21.5 parent: 1668 - - uid: 3493 + - uid: 3554 components: - type: Transform - pos: -22.5,3.5 + pos: -26.5,22.5 parent: 1668 - - uid: 3494 + - uid: 3555 components: - type: Transform - pos: -22.5,2.5 + pos: -26.5,23.5 parent: 1668 - - uid: 3495 + - uid: 3556 components: - type: Transform - pos: -21.5,3.5 + pos: -26.5,24.5 parent: 1668 - - uid: 3496 + - uid: 3557 components: - type: Transform - pos: -20.5,3.5 + pos: -26.5,25.5 parent: 1668 - - uid: 3497 + - uid: 3558 components: - type: Transform - pos: -19.5,3.5 + pos: -26.5,26.5 parent: 1668 - - uid: 3498 + - uid: 3559 components: - type: Transform - pos: -18.5,3.5 + pos: -27.5,26.5 parent: 1668 - - uid: 3499 + - uid: 3560 components: - type: Transform - pos: -21.5,5.5 + pos: -28.5,26.5 parent: 1668 - - uid: 3500 + - uid: 3561 components: - type: Transform - pos: -20.5,5.5 + pos: -29.5,26.5 parent: 1668 - - uid: 3501 + - uid: 3562 components: - type: Transform - pos: -19.5,5.5 + pos: -30.5,26.5 parent: 1668 - - uid: 3502 + - uid: 3563 components: - type: Transform - pos: -23.5,5.5 + pos: -19.5,21.5 parent: 1668 - - uid: 3503 + - uid: 3564 components: - type: Transform - pos: -23.5,3.5 + pos: -19.5,22.5 parent: 1668 - - uid: 3504 + - uid: 3565 components: - type: Transform - pos: -13.5,6.5 + pos: -19.5,23.5 parent: 1668 - - uid: 3505 + - uid: 3566 components: - type: Transform - pos: -14.5,6.5 + pos: -19.5,24.5 parent: 1668 - - uid: 3506 + - uid: 3567 components: - type: Transform - pos: -14.5,5.5 + pos: -19.5,25.5 parent: 1668 - - uid: 3507 + - uid: 3568 components: - type: Transform - pos: -12.5,6.5 + pos: -19.5,26.5 parent: 1668 - - uid: 3508 + - uid: 3569 components: - type: Transform - pos: -12.5,5.5 + pos: -18.5,26.5 parent: 1668 - - uid: 3509 + - uid: 3570 components: - type: Transform - pos: -11.5,5.5 + pos: -17.5,26.5 parent: 1668 - - uid: 3510 + - uid: 3571 components: - type: Transform - pos: -15.5,5.5 + pos: -16.5,26.5 parent: 1668 - - uid: 3511 + - uid: 3572 components: - type: Transform - pos: -16.5,5.5 + pos: -18.5,24.5 parent: 1668 - - uid: 3512 + - uid: 3573 components: - type: Transform - pos: -10.5,5.5 + pos: -17.5,24.5 parent: 1668 - - uid: 3513 + - uid: 3574 components: - type: Transform - pos: -16.5,13.5 + pos: -16.5,24.5 parent: 1668 - - uid: 3514 + - uid: 3575 components: - type: Transform - pos: -16.5,12.5 + pos: -20.5,26.5 parent: 1668 - - uid: 3515 + - uid: 3576 components: - type: Transform - pos: -15.5,12.5 + pos: -21.5,26.5 parent: 1668 - - uid: 3516 + - uid: 3577 components: - type: Transform - pos: -15.5,11.5 + pos: -22.5,26.5 parent: 1668 - - uid: 3517 + - uid: 3578 components: - type: Transform - pos: -15.5,10.5 + pos: -23.5,26.5 parent: 1668 - - uid: 3518 + - uid: 3579 components: - type: Transform - pos: -15.5,9.5 + pos: -24.5,26.5 parent: 1668 - - uid: 3519 + - uid: 3580 components: - type: Transform - pos: -20.5,9.5 + pos: -25.5,26.5 parent: 1668 - - uid: 3520 + - uid: 3581 components: - type: Transform - pos: -19.5,9.5 + pos: -20.5,23.5 parent: 1668 - - uid: 3521 + - uid: 3582 components: - type: Transform - pos: -22.5,9.5 + pos: -21.5,23.5 parent: 1668 - - uid: 3522 + - uid: 3583 components: - type: Transform - pos: -23.5,9.5 + pos: -22.5,23.5 parent: 1668 - - uid: 3991 + - uid: 3584 components: - type: Transform - pos: -31.5,2.5 + pos: -23.5,23.5 parent: 1668 - - uid: 3992 + - uid: 3585 components: - type: Transform - pos: -31.5,1.5 + pos: -14.5,16.5 parent: 1668 - - uid: 3993 + - uid: 3586 components: - type: Transform - pos: -31.5,0.5 + pos: -15.5,16.5 parent: 1668 - - uid: 3994 + - uid: 3587 components: - type: Transform - pos: -31.5,-0.5 + pos: -15.5,17.5 parent: 1668 - - uid: 3995 + - uid: 3588 components: - type: Transform - pos: -31.5,-1.5 + pos: -15.5,18.5 parent: 1668 - - uid: 3996 + - uid: 3589 components: - type: Transform - pos: -31.5,-2.5 + pos: -15.5,19.5 parent: 1668 - - uid: 3997 + - uid: 3590 components: - type: Transform - pos: -32.5,-2.5 + pos: -15.5,20.5 parent: 1668 - - uid: 3998 + - uid: 3591 components: - type: Transform - pos: -33.5,-2.5 + pos: -15.5,21.5 parent: 1668 - - uid: 3999 + - uid: 3592 components: - type: Transform - pos: -34.5,-2.5 + pos: -14.5,21.5 parent: 1668 - - uid: 4000 + - uid: 3593 components: - type: Transform - pos: -32.5,-0.5 + pos: -13.5,21.5 parent: 1668 - - uid: 4001 + - uid: 3594 components: - type: Transform - pos: -33.5,-0.5 + pos: -12.5,21.5 parent: 1668 - - uid: 4002 + - uid: 3595 components: - type: Transform - pos: -34.5,-0.5 + pos: -11.5,21.5 parent: 1668 - - uid: 4003 + - uid: 3596 components: - type: Transform - pos: -32.5,1.5 + pos: -9.5,19.5 parent: 1668 - - uid: 4004 + - uid: 3597 components: - type: Transform - pos: -33.5,1.5 + pos: -10.5,19.5 parent: 1668 - - uid: 4005 + - uid: 3621 components: - type: Transform - pos: -34.5,1.5 + pos: -2.5,28.5 parent: 1668 - - uid: 4006 + - uid: 3672 components: - type: Transform - pos: -30.5,-0.5 + pos: -1.5,28.5 parent: 1668 - - uid: 4007 + - uid: 3673 components: - type: Transform - pos: -29.5,-0.5 + pos: -0.5,28.5 parent: 1668 - - uid: 4008 + - uid: 3674 components: - type: Transform - pos: -28.5,-0.5 + pos: 0.5,28.5 parent: 1668 - - uid: 4009 + - uid: 3675 components: - type: Transform - pos: -26.5,-0.5 + pos: 1.5,28.5 parent: 1668 - - uid: 4010 + - uid: 3676 components: - type: Transform - pos: -25.5,-0.5 + pos: 2.5,28.5 parent: 1668 - - uid: 4011 + - uid: 3677 components: - type: Transform - pos: -24.5,-0.5 + pos: 3.5,28.5 parent: 1668 - - uid: 4012 + - uid: 3678 components: - type: Transform - pos: -23.5,-0.5 + pos: 3.5,29.5 parent: 1668 - - uid: 4013 + - uid: 3679 components: - type: Transform - pos: -22.5,-0.5 + pos: 3.5,30.5 parent: 1668 - - uid: 4014 + - uid: 3680 components: - type: Transform - pos: -21.5,-0.5 + pos: 3.5,31.5 parent: 1668 - - uid: 4015 + - uid: 3681 components: - type: Transform - pos: -20.5,-0.5 + pos: 2.5,31.5 parent: 1668 - - uid: 4016 + - uid: 3682 components: - type: Transform - pos: -19.5,-0.5 + pos: 1.5,31.5 parent: 1668 - - uid: 4017 + - uid: 3683 components: - type: Transform - pos: -18.5,-0.5 + pos: 0.5,31.5 parent: 1668 - - uid: 4018 + - uid: 3684 components: - type: Transform - pos: -17.5,-0.5 + pos: 4.5,31.5 parent: 1668 - - uid: 4019 + - uid: 3685 components: - type: Transform - pos: -16.5,-0.5 + pos: 5.5,31.5 parent: 1668 - - uid: 4020 + - uid: 3686 components: - type: Transform - pos: -15.5,-0.5 + pos: 6.5,31.5 parent: 1668 - - uid: 4021 + - uid: 3687 components: - type: Transform - pos: -14.5,-0.5 + pos: 5.5,32.5 parent: 1668 - - uid: 4022 + - uid: 3688 components: - type: Transform - pos: -13.5,-0.5 + pos: 5.5,33.5 parent: 1668 - - uid: 4023 + - uid: 3689 components: - type: Transform - pos: -12.5,-0.5 + pos: 5.5,34.5 parent: 1668 - - uid: 4024 + - uid: 3690 components: - type: Transform - pos: -11.5,-0.5 + pos: 5.5,35.5 parent: 1668 - - uid: 4025 + - uid: 3691 components: - type: Transform - pos: -10.5,-0.5 + pos: 1.5,32.5 parent: 1668 - - uid: 4026 + - uid: 3692 components: - type: Transform - pos: -9.5,-0.5 + pos: 1.5,33.5 parent: 1668 - - uid: 4027 + - uid: 3693 components: - type: Transform - pos: -14.5,0.5 + pos: 1.5,34.5 parent: 1668 - - uid: 4028 + - uid: 3694 components: - type: Transform - pos: -14.5,1.5 + pos: 1.5,35.5 parent: 1668 - - uid: 4029 + - uid: 3695 components: - type: Transform - pos: -15.5,1.5 + pos: 0.5,35.5 parent: 1668 - - uid: 4030 + - uid: 3696 components: - type: Transform - pos: -16.5,1.5 + pos: 6.5,35.5 parent: 1668 - - uid: 4031 + - uid: 3697 components: - type: Transform - pos: -12.5,0.5 + pos: 3.5,27.5 parent: 1668 - - uid: 4032 + - uid: 3698 components: - type: Transform - pos: -12.5,1.5 + pos: 3.5,26.5 parent: 1668 - - uid: 4033 + - uid: 3699 components: - type: Transform - pos: -11.5,1.5 + pos: 3.5,25.5 parent: 1668 - - uid: 4034 + - uid: 3700 components: - type: Transform - pos: -10.5,1.5 + pos: 3.5,23.5 parent: 1668 - - uid: 4035 + - uid: 3701 components: - type: Transform - pos: -13.5,1.5 + pos: 3.5,24.5 parent: 1668 - - uid: 4036 + - uid: 3702 components: - type: Transform - pos: -13.5,2.5 + pos: 4.5,24.5 parent: 1668 - - uid: 4037 + - uid: 3703 components: - type: Transform - pos: -17.5,0.5 + pos: 5.5,24.5 parent: 1668 - - uid: 4038 + - uid: 3704 components: - type: Transform - pos: -17.5,1.5 + pos: 6.5,24.5 parent: 1668 - - uid: 4039 + - uid: 3705 components: - type: Transform - pos: -21.5,-2.5 + pos: 7.5,24.5 parent: 1668 - - uid: 4040 + - uid: 3706 components: - type: Transform - pos: -21.5,-3.5 + pos: 7.5,22.5 parent: 1668 - - uid: 4041 + - uid: 3707 components: - type: Transform - pos: -21.5,-4.5 + pos: 7.5,19.5 parent: 1668 - - uid: 4042 + - uid: 3708 components: - type: Transform - pos: -21.5,-5.5 + pos: 7.5,20.5 parent: 1668 - - uid: 4043 + - uid: 3709 components: - type: Transform - pos: -21.5,-6.5 + pos: 7.5,21.5 parent: 1668 - - uid: 4044 + - uid: 3710 components: - type: Transform - pos: -21.5,-7.5 + pos: 7.5,23.5 parent: 1668 - - uid: 4045 + - uid: 3711 components: - type: Transform - pos: -21.5,-8.5 + pos: 4.5,28.5 parent: 1668 - - uid: 4046 + - uid: 3712 components: - type: Transform - pos: -22.5,-5.5 + pos: 5.5,28.5 parent: 1668 - - uid: 4047 + - uid: 3713 components: - type: Transform - pos: -23.5,-5.5 + pos: 6.5,28.5 parent: 1668 - - uid: 4048 + - uid: 3714 components: - type: Transform - pos: -24.5,-5.5 + pos: 7.5,28.5 parent: 1668 - - uid: 4049 + - uid: 3715 components: - type: Transform - pos: -25.5,-5.5 + pos: 2.5,24.5 parent: 1668 - - uid: 4050 + - uid: 3716 components: - type: Transform - pos: -26.5,-5.5 + pos: 1.5,24.5 parent: 1668 - - uid: 4051 + - uid: 3717 components: - type: Transform - pos: -26.5,-6.5 + pos: 0.5,24.5 parent: 1668 - - uid: 4052 + - uid: 3718 components: - type: Transform - pos: -26.5,-7.5 + pos: -0.5,24.5 parent: 1668 - - uid: 4053 + - uid: 3719 components: - type: Transform - pos: -25.5,-7.5 + pos: -0.5,25.5 parent: 1668 - - uid: 4054 + - uid: 3720 components: - type: Transform - pos: -24.5,-7.5 + pos: 7.5,25.5 parent: 1668 - - uid: 4055 + - uid: 3893 components: - type: Transform - pos: -23.5,-7.5 + pos: -1.5,29.5 parent: 1668 - - uid: 4056 + - uid: 3894 components: - type: Transform - pos: -22.5,-7.5 + pos: -1.5,30.5 parent: 1668 - - uid: 4057 + - uid: 3895 components: - type: Transform - pos: -20.5,-5.5 + pos: -1.5,31.5 parent: 1668 - - uid: 4058 + - uid: 3896 components: - type: Transform - pos: -19.5,-5.5 + pos: -0.5,31.5 parent: 1668 - - uid: 4059 + - uid: 3897 components: - type: Transform - pos: -18.5,-5.5 + pos: -2.5,32.5 parent: 1668 - - uid: 4060 + - uid: 3898 components: - type: Transform - pos: -17.5,-5.5 + pos: -1.5,32.5 parent: 1668 - - uid: 4061 + - uid: 3918 components: - type: Transform - pos: -17.5,-6.5 + pos: 2.5,15.5 parent: 1668 - - uid: 4062 + - uid: 3923 components: - type: Transform - pos: -17.5,-7.5 + pos: 4.5,15.5 parent: 1668 - - uid: 4063 + - uid: 3924 components: - type: Transform - pos: -18.5,-7.5 + pos: 3.5,16.5 parent: 1668 - - uid: 4064 + - uid: 3925 components: - type: Transform - pos: -19.5,-7.5 + pos: 3.5,15.5 parent: 1668 - - uid: 4065 + - uid: 3926 components: - type: Transform - pos: -20.5,-7.5 + pos: 1.5,15.5 parent: 1668 - - uid: 4066 + - uid: 3927 components: - type: Transform - pos: -26.5,-4.5 + pos: 0.5,15.5 parent: 1668 - - uid: 4067 + - uid: 3928 components: - type: Transform - pos: -26.5,-8.5 + pos: -0.5,15.5 parent: 1668 - - uid: 4068 + - uid: 3929 components: - type: Transform - pos: -17.5,-8.5 + pos: -1.5,15.5 parent: 1668 - - uid: 4069 + - uid: 3930 components: - type: Transform - pos: -17.5,-4.5 + pos: -2.5,15.5 parent: 1668 - - uid: 4070 + - uid: 3931 components: - type: Transform - pos: -13.5,-2.5 + pos: -3.5,15.5 parent: 1668 - - uid: 4071 + - uid: 3932 components: - type: Transform - pos: -13.5,-3.5 + pos: -4.5,15.5 parent: 1668 - - uid: 4072 + - uid: 3933 components: - type: Transform - pos: -13.5,-4.5 + pos: -5.5,15.5 parent: 1668 - - uid: 4073 + - uid: 3934 components: - type: Transform - pos: -13.5,-5.5 + pos: -0.5,16.5 parent: 1668 - - uid: 4074 + - uid: 3935 components: - type: Transform - pos: -13.5,-6.5 + pos: -0.5,17.5 parent: 1668 - - uid: 4075 + - uid: 3936 components: - type: Transform - pos: -13.5,-7.5 + pos: -0.5,18.5 parent: 1668 - - uid: 4076 + - uid: 3937 components: - type: Transform - pos: -13.5,-8.5 + pos: -0.5,19.5 parent: 1668 - - uid: 4077 + - uid: 3938 components: - type: Transform - pos: -12.5,-8.5 + pos: -0.5,20.5 parent: 1668 - - uid: 4078 + - uid: 3939 components: - type: Transform - pos: -11.5,-8.5 + pos: 0.5,20.5 parent: 1668 - - uid: 4079 + - uid: 3941 components: - type: Transform - pos: -12.5,-4.5 + pos: 1.5,20.5 parent: 1668 - - uid: 4080 + - uid: 3943 components: - type: Transform - pos: -11.5,-4.5 + pos: 2.5,20.5 parent: 1668 - - uid: 4081 + - uid: 3945 components: - type: Transform - pos: -14.5,-4.5 + pos: 3.5,20.5 parent: 1668 - - uid: 4082 + - uid: 3946 components: - type: Transform - pos: -14.5,-8.5 + pos: 3.5,19.5 parent: 1668 - - uid: 4083 + - uid: 3948 components: - type: Transform - pos: -11.5,-6.5 + pos: 3.5,18.5 parent: 1668 - - uid: 4084 + - uid: 3949 components: - type: Transform - pos: -12.5,-6.5 + pos: 3.5,17.5 parent: 1668 - - uid: 4085 + - uid: 3950 components: - type: Transform - pos: -31.5,7.5 + pos: 5.5,15.5 parent: 1668 - - uid: 4086 + - uid: 3951 components: - type: Transform - pos: -31.5,6.5 + pos: 6.5,15.5 parent: 1668 - - uid: 4087 + - uid: 3952 components: - type: Transform - pos: -31.5,5.5 + pos: 7.5,15.5 parent: 1668 - - uid: 4088 + - uid: 3953 components: - type: Transform - pos: -31.5,4.5 + pos: 8.5,15.5 parent: 1668 - - uid: 4089 + - uid: 3954 components: - type: Transform - pos: -32.5,4.5 + pos: 9.5,15.5 parent: 1668 - - uid: 4090 + - uid: 3955 components: - type: Transform - pos: -33.5,4.5 + pos: 10.5,15.5 parent: 1668 - - uid: 4091 + - uid: 3956 components: - type: Transform - pos: -34.5,4.5 + pos: 11.5,15.5 parent: 1668 - - uid: 4092 + - uid: 3957 components: - type: Transform - pos: -34.5,3.5 + pos: 12.5,15.5 parent: 1668 - - uid: 4093 + - uid: 3958 components: - type: Transform - pos: -34.5,5.5 + pos: 13.5,15.5 parent: 1668 - - uid: 4094 + - uid: 3959 components: - type: Transform - pos: -34.5,6.5 + pos: 14.5,15.5 parent: 1668 - - uid: 4095 + - uid: 3960 components: - type: Transform - pos: -32.5,6.5 + pos: 16.5,15.5 parent: 1668 - - uid: 4096 + - uid: 3961 components: - type: Transform - pos: -32.5,7.5 + pos: 17.5,15.5 parent: 1668 - - uid: 4097 + - uid: 3962 components: - type: Transform - pos: -33.5,7.5 + pos: 15.5,15.5 parent: 1668 - - uid: 4098 + - uid: 3963 components: - type: Transform - pos: -30.5,7.5 + pos: 26.5,18.5 parent: 1668 - - uid: 4099 + - uid: 3964 components: - type: Transform - pos: -30.5,4.5 + pos: 26.5,17.5 parent: 1668 - - uid: 4100 + - uid: 3965 components: - type: Transform - pos: -29.5,4.5 + pos: 26.5,16.5 parent: 1668 - - uid: 4101 + - uid: 3966 components: - type: Transform - pos: -28.5,4.5 + pos: 26.5,15.5 parent: 1668 - - uid: 4102 + - uid: 3967 components: - type: Transform - pos: -27.5,4.5 + pos: 26.5,14.5 parent: 1668 - - uid: 4103 + - uid: 3968 components: - type: Transform - pos: -27.5,3.5 + pos: 27.5,15.5 parent: 1668 - - uid: 4104 + - uid: 3969 components: - type: Transform - pos: -27.5,5.5 + pos: 28.5,15.5 parent: 1668 - - uid: 4481 + - uid: 3970 components: - type: Transform - pos: 1.5,-20.5 + pos: 29.5,15.5 parent: 1668 - - uid: 4482 + - uid: 3971 components: - type: Transform - pos: 1.5,-19.5 + pos: 30.5,15.5 parent: 1668 - - uid: 4483 + - uid: 3972 components: - type: Transform - pos: 1.5,-18.5 + pos: 31.5,15.5 parent: 1668 - - uid: 4484 + - uid: 3973 components: - type: Transform - pos: 1.5,-17.5 + pos: 32.5,15.5 parent: 1668 - - uid: 4485 + - uid: 3974 components: - type: Transform - pos: 1.5,-16.5 + pos: 33.5,15.5 parent: 1668 - - uid: 4486 + - uid: 3975 components: - type: Transform - pos: 0.5,-18.5 + pos: 25.5,15.5 parent: 1668 - - uid: 4487 + - uid: 3976 components: - type: Transform - pos: -0.5,-18.5 + pos: 24.5,15.5 parent: 1668 - - uid: 4488 + - uid: 3977 components: - type: Transform - pos: -1.5,-18.5 + pos: 23.5,15.5 parent: 1668 - - uid: 4489 + - uid: 3978 components: - type: Transform - pos: -2.5,-18.5 + pos: 22.5,15.5 parent: 1668 - - uid: 4490 + - uid: 3979 components: - type: Transform - pos: -3.5,-18.5 + pos: 21.5,15.5 parent: 1668 - - uid: 4491 + - uid: 3980 components: - type: Transform - pos: -10.5,-24.5 + pos: 20.5,15.5 parent: 1668 - - uid: 4492 + - uid: 3981 components: - type: Transform - pos: -5.5,-18.5 + pos: -0.5,14.5 parent: 1668 - - uid: 4493 + - uid: 3982 components: - type: Transform - pos: -4.5,-17.5 + pos: -0.5,13.5 parent: 1668 - - uid: 4494 + - uid: 3983 components: - type: Transform - pos: -4.5,-16.5 + pos: -0.5,12.5 parent: 1668 - - uid: 4495 + - uid: 3984 components: - type: Transform - pos: -8.5,-24.5 + pos: -0.5,11.5 parent: 1668 - - uid: 4496 + - uid: 3985 components: - type: Transform - pos: -9.5,-24.5 + pos: -0.5,10.5 parent: 1668 - - uid: 4497 + - uid: 3986 components: - type: Transform - pos: 3.5,-17.5 + pos: -0.5,9.5 parent: 1668 - - uid: 4498 + - uid: 3987 components: - type: Transform - pos: 3.5,-16.5 + pos: -0.5,8.5 parent: 1668 - - uid: 4500 + - uid: 3988 components: - type: Transform - pos: -1.5,-17.5 + pos: -0.5,7.5 parent: 1668 - - uid: 4501 + - uid: 5165 components: - type: Transform - pos: -1.5,-16.5 + pos: -3.5,-50.5 parent: 1668 - - uid: 4502 + - uid: 5166 components: - type: Transform - pos: 2.5,-17.5 + pos: -3.5,-49.5 parent: 1668 - - uid: 4503 + - uid: 5167 components: - type: Transform - pos: 3.5,-15.5 + pos: -3.5,-48.5 parent: 1668 - - uid: 4505 + - uid: 5168 components: - type: Transform - pos: -4.5,-15.5 + pos: -3.5,-47.5 parent: 1668 - - uid: 4506 + - uid: 5169 components: - type: Transform - pos: -3.5,-15.5 + pos: -3.5,-46.5 parent: 1668 - - uid: 4507 + - uid: 5170 components: - type: Transform - pos: -3.5,-17.5 + pos: -2.5,-47.5 parent: 1668 - - uid: 4508 + - uid: 5171 components: - type: Transform - pos: -5.5,-17.5 + pos: -1.5,-47.5 parent: 1668 - - uid: 4509 + - uid: 5172 components: - type: Transform - pos: 4.5,-17.5 + pos: -0.5,-47.5 parent: 1668 - - uid: 4510 + - uid: 5173 components: - type: Transform - pos: -10.5,-25.5 + pos: 0.5,-47.5 parent: 1668 - - uid: 4511 + - uid: 5174 components: - type: Transform - pos: -10.5,-26.5 + pos: 1.5,-47.5 parent: 1668 - - uid: 4512 + - uid: 5175 components: - type: Transform - pos: -10.5,-27.5 + pos: 2.5,-47.5 parent: 1668 - - uid: 4513 + - uid: 5176 components: - type: Transform - pos: -10.5,-23.5 + pos: 3.5,-47.5 parent: 1668 - - uid: 4514 + - uid: 5177 components: - type: Transform - pos: -10.5,-22.5 + pos: 4.5,-47.5 parent: 1668 - - uid: 4515 + - uid: 5178 components: - type: Transform - pos: -9.5,-22.5 + pos: 5.5,-47.5 parent: 1668 - - uid: 4516 + - uid: 5179 components: - type: Transform - pos: -8.5,-22.5 + pos: -4.5,-47.5 parent: 1668 - - uid: 4517 + - uid: 5180 components: - type: Transform - pos: 7.5,-24.5 + pos: -5.5,-47.5 parent: 1668 - - uid: 4518 + - uid: 5181 components: - type: Transform - pos: 8.5,-24.5 + pos: -6.5,-47.5 parent: 1668 - - uid: 4519 + - uid: 5182 components: - type: Transform - pos: 9.5,-24.5 + pos: 2.5,-48.5 parent: 1668 - - uid: 4520 + - uid: 5183 components: - type: Transform - pos: 9.5,-25.5 + pos: -6.5,-48.5 parent: 1668 - - uid: 4521 + - uid: 5184 components: - type: Transform - pos: 9.5,-26.5 + pos: 5.5,-48.5 parent: 1668 - - uid: 4522 + - uid: 5185 components: - type: Transform - pos: 9.5,-27.5 + pos: 15.5,-44.5 parent: 1668 - - uid: 4523 + - uid: 5186 components: - type: Transform - pos: 9.5,-23.5 + pos: 15.5,-45.5 parent: 1668 - - uid: 4524 + - uid: 5187 components: - type: Transform - pos: 9.5,-22.5 + pos: 15.5,-46.5 parent: 1668 - - uid: 4525 + - uid: 5188 components: - type: Transform - pos: 8.5,-22.5 + pos: 15.5,-47.5 parent: 1668 - - uid: 4526 + - uid: 5189 components: - type: Transform - pos: 7.5,-22.5 + pos: 15.5,-48.5 parent: 1668 - - uid: 4527 + - uid: 5190 components: - type: Transform - pos: -2.5,-24.5 + pos: 16.5,-48.5 parent: 1668 - - uid: 4528 + - uid: 5191 components: - type: Transform - pos: -2.5,-25.5 + pos: 17.5,-48.5 parent: 1668 - - uid: 4529 + - uid: 5192 components: - type: Transform - pos: -2.5,-26.5 + pos: 18.5,-48.5 parent: 1668 - - uid: 4530 + - uid: 5193 components: - type: Transform - pos: -2.5,-27.5 + pos: 19.5,-48.5 parent: 1668 - - uid: 4531 + - uid: 5194 components: - type: Transform - pos: -1.5,-27.5 + pos: 20.5,-48.5 parent: 1668 - - uid: 4532 + - uid: 5195 components: - type: Transform - pos: -0.5,-27.5 + pos: 14.5,-48.5 parent: 1668 - - uid: 4533 + - uid: 5196 components: - type: Transform - pos: 0.5,-27.5 + pos: 13.5,-48.5 parent: 1668 - - uid: 4534 + - uid: 5197 components: - type: Transform - pos: 1.5,-27.5 + pos: 12.5,-48.5 parent: 1668 - - uid: 4535 + - uid: 5198 components: - type: Transform - pos: 2.5,-27.5 + pos: 11.5,-48.5 parent: 1668 - - uid: 4536 + - uid: 5199 components: - type: Transform - pos: 3.5,-27.5 + pos: 10.5,-48.5 parent: 1668 - - uid: 4537 + - uid: 5200 components: - type: Transform - pos: 4.5,-27.5 + pos: 9.5,-48.5 parent: 1668 - - uid: 4538 + - uid: 5201 components: - type: Transform - pos: 5.5,-27.5 + pos: 8.5,-48.5 parent: 1668 - - uid: 4539 + - uid: 5202 components: - type: Transform - pos: -4.5,-27.5 + pos: -16.5,-44.5 parent: 1668 - - uid: 4540 + - uid: 5203 components: - type: Transform - pos: -3.5,-27.5 + pos: -16.5,-45.5 parent: 1668 - - uid: 4541 + - uid: 5204 components: - type: Transform - pos: -5.5,-27.5 + pos: -16.5,-46.5 parent: 1668 - - uid: 4542 + - uid: 5205 components: - type: Transform - pos: -6.5,-27.5 + pos: -16.5,-47.5 parent: 1668 - - uid: 4543 + - uid: 5206 components: - type: Transform - pos: 5.5,-28.5 + pos: -16.5,-48.5 parent: 1668 - - uid: 4544 + - uid: 5207 components: - type: Transform - pos: -6.5,-28.5 + pos: -15.5,-48.5 parent: 1668 - - uid: 4545 + - uid: 5208 components: - type: Transform - pos: -6.5,-26.5 + pos: -14.5,-48.5 parent: 1668 - - uid: 4546 + - uid: 5209 components: - type: Transform - pos: 5.5,-26.5 + pos: -13.5,-48.5 parent: 1668 - - uid: 4547 + - uid: 5210 components: - type: Transform - pos: -0.5,-26.5 + pos: -12.5,-48.5 parent: 1668 - - uid: 4548 + - uid: 5211 components: - type: Transform - pos: -0.5,-28.5 + pos: -11.5,-48.5 parent: 1668 - - uid: 4549 + - uid: 5212 components: - type: Transform - pos: -0.5,-25.5 + pos: -10.5,-48.5 parent: 1668 - - uid: 4550 + - uid: 5213 components: - type: Transform - pos: -0.5,-24.5 + pos: -9.5,-48.5 parent: 1668 - - uid: 4551 + - uid: 5214 components: - type: Transform - pos: -0.5,-23.5 + pos: -17.5,-48.5 parent: 1668 - - uid: 4552 + - uid: 5215 components: - type: Transform - pos: -0.5,-22.5 + pos: -18.5,-48.5 parent: 1668 - - uid: 4553 + - uid: 5216 components: - type: Transform - pos: 2.5,-22.5 + pos: -19.5,-48.5 parent: 1668 - - uid: 4554 + - uid: 5217 components: - type: Transform - pos: -1.5,-22.5 + pos: -20.5,-48.5 parent: 1668 - - uid: 4555 + - uid: 5218 components: - type: Transform - pos: -2.5,-22.5 + pos: -21.5,-48.5 parent: 1668 - - uid: 4556 + - uid: 5219 components: - type: Transform - pos: -2.5,-23.5 + pos: -17.5,-44.5 parent: 1668 - - uid: 4557 + - uid: 5220 components: - type: Transform - pos: -2.5,-21.5 + pos: -18.5,-44.5 parent: 1668 - - uid: 4558 + - uid: 5221 components: - type: Transform - pos: -3.5,-22.5 + pos: -18.5,-43.5 parent: 1668 - - uid: 4559 + - uid: 5222 components: - type: Transform - pos: -4.5,-22.5 + pos: -18.5,-42.5 parent: 1668 - - uid: 4560 + - uid: 5223 components: - type: Transform - pos: -4.5,-23.5 + pos: -18.5,-41.5 parent: 1668 - - uid: 4561 + - uid: 5224 components: - type: Transform - pos: -4.5,-21.5 + pos: -18.5,-40.5 parent: 1668 - - uid: 4562 + - uid: 5225 components: - type: Transform - pos: 1.5,-21.5 + pos: -18.5,-39.5 parent: 1668 - - uid: 4563 + - uid: 5226 components: - type: Transform - pos: 1.5,-22.5 + pos: -15.5,-34.5 parent: 1668 - - uid: 4564 + - uid: 5227 components: - type: Transform - pos: 1.5,-23.5 + pos: -15.5,-35.5 parent: 1668 - - uid: 4565 + - uid: 5228 components: - type: Transform - pos: 3.5,-22.5 + pos: -15.5,-36.5 parent: 1668 - - uid: 4566 + - uid: 5229 components: - type: Transform - pos: 3.5,-21.5 + pos: -16.5,-36.5 parent: 1668 - - uid: 4567 + - uid: 5230 components: - type: Transform - pos: 3.5,-23.5 + pos: -17.5,-36.5 parent: 1668 - - uid: 4898 + - uid: 5231 components: - type: Transform - pos: 8.5,-17.5 + pos: -18.5,-36.5 parent: 1668 - - uid: 4899 + - uid: 5232 components: - type: Transform - pos: 8.5,-18.5 + pos: -14.5,-36.5 parent: 1668 - - uid: 4900 + - uid: 5233 components: - type: Transform - pos: 8.5,-19.5 + pos: -13.5,-36.5 parent: 1668 - - uid: 4901 + - uid: 5234 components: - type: Transform - pos: 9.5,-19.5 + pos: -13.5,-35.5 parent: 1668 - - uid: 4902 + - uid: 5235 components: - type: Transform - pos: 10.5,-19.5 + pos: -13.5,-34.5 parent: 1668 - - uid: 4903 + - uid: 5236 components: - type: Transform - pos: 11.5,-19.5 + pos: -13.5,-33.5 parent: 1668 - - uid: 4904 + - uid: 5237 components: - type: Transform - pos: 12.5,-19.5 + pos: -13.5,-32.5 parent: 1668 - - uid: 4905 + - uid: 5238 components: - type: Transform - pos: 13.5,-19.5 + pos: -13.5,-31.5 parent: 1668 - - uid: 4906 + - uid: 5239 components: - type: Transform - pos: 7.5,-18.5 + pos: -13.5,-30.5 parent: 1668 - - uid: 4907 + - uid: 5240 components: - type: Transform - pos: 6.5,-18.5 + pos: -13.5,-29.5 parent: 1668 - - uid: 4908 + - uid: 5241 components: - type: Transform - pos: 6.5,-17.5 + pos: -17.5,-34.5 parent: 1668 - - uid: 4909 + - uid: 5242 components: - type: Transform - pos: 6.5,-16.5 + pos: -17.5,-35.5 parent: 1668 - - uid: 4910 + - uid: 5243 components: - type: Transform - pos: -9.5,-17.5 + pos: -17.5,-33.5 parent: 1668 - - uid: 4911 + - uid: 5244 components: - type: Transform - pos: -9.5,-18.5 + pos: -17.5,-32.5 parent: 1668 - - uid: 4912 + - uid: 5245 components: - type: Transform - pos: -8.5,-18.5 + pos: -17.5,-31.5 parent: 1668 - - uid: 4913 + - uid: 5246 components: - type: Transform - pos: -8.5,-17.5 + pos: -17.5,-30.5 parent: 1668 - - uid: 4914 + - uid: 5247 components: - type: Transform - pos: -8.5,-16.5 + pos: 14.5,-34.5 parent: 1668 - - uid: 4915 + - uid: 5248 components: - type: Transform - pos: -9.5,-19.5 + pos: 14.5,-35.5 parent: 1668 - - uid: 4916 + - uid: 5249 components: - type: Transform - pos: -10.5,-19.5 + pos: 14.5,-36.5 parent: 1668 - - uid: 4917 + - uid: 5250 components: - type: Transform - pos: -11.5,-19.5 + pos: 15.5,-36.5 parent: 1668 - - uid: 4918 + - uid: 5251 components: - type: Transform - pos: -12.5,-19.5 + pos: 16.5,-36.5 parent: 1668 - - uid: 4919 + - uid: 5252 components: - type: Transform - pos: -13.5,-19.5 + pos: 17.5,-36.5 parent: 1668 - - uid: 4920 + - uid: 5253 components: - type: Transform - pos: -13.5,-18.5 + pos: 16.5,-35.5 parent: 1668 - - uid: 4921 + - uid: 5254 components: - type: Transform - pos: -13.5,-17.5 + pos: 16.5,-34.5 parent: 1668 - - uid: 4922 + - uid: 5255 components: - type: Transform - pos: -13.5,-16.5 + pos: 16.5,-33.5 parent: 1668 - - uid: 4993 + - uid: 5256 components: - type: Transform - pos: 18.5,-19.5 + pos: 16.5,-32.5 parent: 1668 - - uid: 4994 + - uid: 5257 components: - type: Transform - pos: 18.5,-20.5 + pos: 16.5,-31.5 parent: 1668 - - uid: 4995 + - uid: 5258 components: - type: Transform - pos: 17.5,-20.5 + pos: 16.5,-30.5 parent: 1668 - - uid: 4996 + - uid: 5259 components: - type: Transform - pos: 16.5,-20.5 + pos: 13.5,-36.5 parent: 1668 - - uid: 4997 + - uid: 5260 components: - type: Transform - pos: 16.5,-19.5 + pos: 12.5,-36.5 parent: 1668 - - uid: 4998 + - uid: 5261 components: - type: Transform - pos: 16.5,-18.5 + pos: 12.5,-35.5 parent: 1668 - - uid: 4999 + - uid: 5262 components: - type: Transform - pos: 20.5,-12.5 + pos: 12.5,-34.5 parent: 1668 - - uid: 5000 + - uid: 5263 components: - type: Transform - pos: 20.5,-13.5 + pos: 12.5,-33.5 parent: 1668 - - uid: 5001 + - uid: 5264 components: - type: Transform - pos: 20.5,-14.5 + pos: 12.5,-32.5 parent: 1668 - - uid: 5002 + - uid: 5265 components: - type: Transform - pos: 20.5,-15.5 + pos: 12.5,-31.5 parent: 1668 - - uid: 5003 + - uid: 5266 components: - type: Transform - pos: 19.5,-10.5 + pos: 12.5,-30.5 parent: 1668 - - uid: 5004 + - uid: 5267 components: - type: Transform - pos: 19.5,-14.5 + pos: 12.5,-29.5 parent: 1668 - - uid: 5005 + - uid: 5268 components: - type: Transform - pos: 18.5,-14.5 + pos: 16.5,-44.5 parent: 1668 - - uid: 5006 + - uid: 5269 components: - type: Transform - pos: 17.5,-14.5 + pos: 17.5,-44.5 parent: 1668 - - uid: 5007 + - uid: 5270 components: - type: Transform - pos: 16.5,-14.5 + pos: 17.5,-43.5 parent: 1668 - - uid: 5008 + - uid: 5271 components: - type: Transform - pos: 15.5,-14.5 + pos: 17.5,-42.5 parent: 1668 - - uid: 5009 + - uid: 5272 components: - type: Transform - pos: 21.5,-14.5 + pos: 17.5,-41.5 parent: 1668 - - uid: 5010 + - uid: 5273 components: - type: Transform - pos: 22.5,-14.5 + pos: 17.5,-40.5 parent: 1668 - - uid: 5011 + - uid: 5274 components: - type: Transform - pos: 19.5,-19.5 + pos: 17.5,-39.5 parent: 1668 - - uid: 5012 + - uid: 5275 components: - type: Transform - pos: 20.5,-19.5 + pos: 16.5,-39.5 parent: 1668 - - uid: 5013 + - uid: 5323 components: - type: Transform - pos: 21.5,-19.5 + pos: 11.5,-37.5 parent: 1668 - - uid: 5014 + - uid: 5324 components: - type: Transform - pos: 21.5,-18.5 + pos: 11.5,-38.5 parent: 1668 - - uid: 5015 + - uid: 5325 components: - type: Transform - pos: 21.5,-17.5 + pos: 11.5,-39.5 parent: 1668 - - uid: 5016 + - uid: 5326 components: - type: Transform - pos: 21.5,-20.5 + pos: 11.5,-40.5 parent: 1668 - - uid: 5017 + - uid: 5327 components: - type: Transform - pos: 21.5,-21.5 + pos: 11.5,-41.5 parent: 1668 - - uid: 5018 + - uid: 5328 components: - type: Transform - pos: 21.5,-22.5 + pos: 11.5,-42.5 parent: 1668 - - uid: 5019 + - uid: 5329 components: - type: Transform - pos: 16.5,-21.5 + pos: 11.5,-43.5 parent: 1668 - - uid: 5020 + - uid: 5330 components: - type: Transform - pos: 16.5,-22.5 + pos: 10.5,-43.5 parent: 1668 - - uid: 5021 + - uid: 5331 components: - type: Transform - pos: 16.5,-23.5 + pos: 9.5,-43.5 parent: 1668 - - uid: 5022 + - uid: 5332 components: - type: Transform - pos: 16.5,-24.5 + pos: 8.5,-43.5 parent: 1668 - - uid: 5023 + - uid: 5333 components: - type: Transform - pos: 16.5,-25.5 + pos: 10.5,-40.5 parent: 1668 - - uid: 5024 + - uid: 5334 components: - type: Transform - pos: 16.5,-26.5 + pos: 9.5,-40.5 parent: 1668 - - uid: 5026 + - uid: 5335 components: - type: Transform - pos: 15.5,-24.5 + pos: 8.5,-40.5 parent: 1668 - - uid: 5027 + - uid: 5336 components: - type: Transform - pos: 14.5,-24.5 + pos: 7.5,-43.5 parent: 1668 - - uid: 5028 + - uid: 5337 components: - type: Transform - pos: 13.5,-24.5 + pos: 6.5,-43.5 parent: 1668 - - uid: 5029 + - uid: 5338 components: - type: Transform - pos: 13.5,-23.5 + pos: 5.5,-43.5 parent: 1668 - - uid: 5030 + - uid: 5339 components: - type: Transform - pos: 13.5,-22.5 + pos: 3.5,-43.5 parent: 1668 - - uid: 5031 + - uid: 5340 components: - type: Transform - pos: 13.5,-21.5 + pos: 2.5,-43.5 parent: 1668 - - uid: 5032 + - uid: 5341 components: - type: Transform - pos: 13.5,-25.5 + pos: 1.5,-43.5 parent: 1668 - - uid: 5033 + - uid: 5342 components: - type: Transform - pos: 13.5,-26.5 + pos: 4.5,-43.5 parent: 1668 - - uid: 5034 + - uid: 5343 components: - type: Transform - pos: 13.5,-27.5 + pos: 1.5,-42.5 parent: 1668 - - uid: 5035 + - uid: 5344 components: - type: Transform - pos: 13.5,-28.5 + pos: 1.5,-41.5 parent: 1668 - - uid: 5036 + - uid: 5345 components: - type: Transform - pos: 17.5,-25.5 + pos: 1.5,-40.5 parent: 1668 - - uid: 5037 + - uid: 5346 components: - type: Transform - pos: 18.5,-25.5 + pos: 1.5,-39.5 parent: 1668 - - uid: 5038 + - uid: 5347 components: - type: Transform - pos: 19.5,-25.5 + pos: 1.5,-38.5 parent: 1668 - - uid: 5039 + - uid: 5348 components: - type: Transform - pos: 20.5,-25.5 + pos: 2.5,-38.5 parent: 1668 - - uid: 5040 + - uid: 5349 components: - type: Transform - pos: 21.5,-25.5 + pos: 3.5,-38.5 parent: 1668 - - uid: 5121 + - uid: 5350 components: - type: Transform - pos: 34.5,-9.5 + pos: 4.5,-38.5 parent: 1668 - - uid: 5122 + - uid: 5351 components: - type: Transform - pos: 34.5,-10.5 + pos: 5.5,-38.5 parent: 1668 - - uid: 5123 + - uid: 5352 components: - type: Transform - pos: 34.5,-11.5 + pos: 6.5,-38.5 parent: 1668 - - uid: 5124 + - uid: 5353 components: - type: Transform - pos: 34.5,-12.5 + pos: 7.5,-38.5 parent: 1668 - - uid: 5125 + - uid: 5354 components: - type: Transform - pos: 34.5,-13.5 + pos: 8.5,-38.5 parent: 1668 - - uid: 5126 + - uid: 5355 components: - type: Transform - pos: 33.5,-13.5 + pos: 8.5,-39.5 parent: 1668 - - uid: 5127 + - uid: 5356 components: - type: Transform - pos: 32.5,-13.5 + pos: 12.5,-40.5 parent: 1668 - - uid: 5128 + - uid: 5357 components: - type: Transform - pos: 32.5,-14.5 + pos: 13.5,-40.5 parent: 1668 - - uid: 5129 + - uid: 5358 components: - type: Transform - pos: 31.5,-13.5 + pos: 10.5,-44.5 parent: 1668 - - uid: 5130 + - uid: 5359 components: - type: Transform - pos: 30.5,-13.5 + pos: -12.5,-37.5 parent: 1668 - - uid: 5131 + - uid: 5360 components: - type: Transform - pos: 30.5,-12.5 + pos: -12.5,-38.5 parent: 1668 - - uid: 5132 + - uid: 5361 components: - type: Transform - pos: 30.5,-11.5 + pos: -12.5,-39.5 parent: 1668 - - uid: 5134 + - uid: 5362 components: - type: Transform - pos: 22.5,-23.5 + pos: -12.5,-40.5 parent: 1668 - - uid: 5135 + - uid: 5363 components: - type: Transform - pos: 23.5,-23.5 + pos: -13.5,-40.5 parent: 1668 - - uid: 5136 + - uid: 5364 components: - type: Transform - pos: 24.5,-23.5 + pos: -11.5,-40.5 parent: 1668 - - uid: 5137 + - uid: 5365 components: - type: Transform - pos: 25.5,-23.5 + pos: -12.5,-41.5 parent: 1668 - - uid: 5138 + - uid: 5366 components: - type: Transform - pos: 26.5,-23.5 + pos: -14.5,-40.5 parent: 1668 - - uid: 5139 + - uid: 5367 components: - type: Transform - pos: 25.5,-24.5 + pos: -11.5,-44.5 parent: 1668 - - uid: 5140 + - uid: 5368 components: - type: Transform - pos: 25.5,-25.5 + pos: -11.5,-43.5 parent: 1668 - - uid: 5141 + - uid: 5369 components: - type: Transform - pos: 25.5,-26.5 + pos: -12.5,-43.5 parent: 1668 - - uid: 5142 + - uid: 5370 components: - type: Transform - pos: 25.5,-22.5 + pos: -12.5,-42.5 parent: 1668 - - uid: 5143 + - uid: 5371 components: - type: Transform - pos: 25.5,-21.5 + pos: -10.5,-43.5 parent: 1668 - - uid: 5144 + - uid: 5372 components: - type: Transform - pos: 25.5,-20.5 + pos: -9.5,-43.5 parent: 1668 - - uid: 5145 + - uid: 5373 components: - type: Transform - pos: 25.5,-19.5 + pos: -8.5,-43.5 parent: 1668 - - uid: 5147 + - uid: 5374 components: - type: Transform - pos: 29.5,-19.5 + pos: -7.5,-43.5 parent: 1668 - - uid: 5148 + - uid: 5375 components: - type: Transform - pos: 29.5,-20.5 + pos: -6.5,-43.5 parent: 1668 - - uid: 5149 + - uid: 5376 components: - type: Transform - pos: 29.5,-21.5 + pos: -5.5,-43.5 parent: 1668 - - uid: 5150 + - uid: 5377 components: - type: Transform - pos: 29.5,-22.5 + pos: -4.5,-43.5 parent: 1668 - - uid: 5151 + - uid: 5378 components: - type: Transform - pos: 29.5,-23.5 + pos: -3.5,-43.5 parent: 1668 - - uid: 5152 + - uid: 5379 components: - type: Transform - pos: 29.5,-24.5 + pos: -2.5,-43.5 parent: 1668 - - uid: 5153 + - uid: 5380 components: - type: Transform - pos: 29.5,-25.5 + pos: -2.5,-42.5 parent: 1668 - - uid: 5154 + - uid: 5381 components: - type: Transform - pos: 28.5,-25.5 + pos: -2.5,-41.5 parent: 1668 - - uid: 5155 + - uid: 5382 components: - type: Transform - pos: 28.5,-24.5 + pos: -2.5,-40.5 parent: 1668 - - uid: 5156 + - uid: 5383 components: - type: Transform - pos: 28.5,-23.5 + pos: -2.5,-39.5 parent: 1668 - - uid: 5157 + - uid: 5384 components: - type: Transform - pos: 28.5,-22.5 + pos: -2.5,-38.5 parent: 1668 - - uid: 5158 + - uid: 5385 components: - type: Transform - pos: 28.5,-21.5 + pos: -3.5,-38.5 parent: 1668 - - uid: 5159 + - uid: 5387 components: - type: Transform - pos: 30.5,-25.5 + pos: -4.5,-38.5 parent: 1668 - - uid: 5160 + - uid: 5388 components: - type: Transform - pos: 31.5,-25.5 + pos: -5.5,-38.5 parent: 1668 - - uid: 5161 + - uid: 5389 components: - type: Transform - pos: 32.5,-25.5 + pos: -6.5,-38.5 parent: 1668 - - uid: 5162 + - uid: 5390 components: - type: Transform - pos: 33.5,-25.5 + pos: -7.5,-38.5 parent: 1668 - - uid: 5163 + - uid: 5392 components: - type: Transform - pos: 30.5,-21.5 + pos: -8.5,-38.5 parent: 1668 - - uid: 5164 + - uid: 5393 components: - type: Transform - pos: 31.5,-21.5 + pos: -10.5,-40.5 parent: 1668 - - uid: 5165 + - uid: 5394 components: - type: Transform - pos: 32.5,-21.5 + pos: -9.5,-40.5 parent: 1668 - - uid: 5166 + - uid: 5395 components: - type: Transform - pos: 33.5,-21.5 + pos: -9.5,-39.5 parent: 1668 - - uid: 5171 + - uid: 5396 components: - type: Transform - pos: 31.5,-20.5 + pos: -9.5,-38.5 parent: 1668 - - uid: 5172 + - uid: 5398 components: - type: Transform - pos: 31.5,-19.5 + pos: -1.5,-32.5 parent: 1668 - - uid: 5173 + - uid: 5399 components: - type: Transform - pos: 33.5,-20.5 + pos: -1.5,-33.5 parent: 1668 - - uid: 5174 + - uid: 5400 components: - type: Transform - pos: 33.5,-19.5 + pos: -1.5,-34.5 parent: 1668 - - uid: 5258 + - uid: 5401 components: - type: Transform - pos: 30.5,-14.5 + pos: -0.5,-34.5 parent: 1668 - - uid: 5259 + - uid: 5402 components: - type: Transform - pos: 30.5,-15.5 + pos: 0.5,-34.5 parent: 1668 - - uid: 5260 + - uid: 5403 components: - type: Transform - pos: 30.5,-16.5 + pos: 1.5,-34.5 parent: 1668 - - uid: 5261 + - uid: 5404 components: - type: Transform - pos: 30.5,-17.5 + pos: 2.5,-34.5 parent: 1668 - - uid: 5262 + - uid: 5405 components: - type: Transform - pos: 31.5,-17.5 + pos: 3.5,-34.5 parent: 1668 - - uid: 5263 + - uid: 5406 components: - type: Transform - pos: 32.5,-17.5 + pos: 4.5,-34.5 parent: 1668 - - uid: 5264 + - uid: 5407 components: - type: Transform - pos: 33.5,-17.5 + pos: 5.5,-34.5 parent: 1668 - - uid: 5265 + - uid: 5408 components: - type: Transform - pos: 29.5,-17.5 + pos: 6.5,-34.5 parent: 1668 - - uid: 5266 + - uid: 5409 components: - type: Transform - pos: 28.5,-17.5 + pos: 7.5,-34.5 parent: 1668 - - uid: 5267 + - uid: 5410 components: - type: Transform - pos: 27.5,-17.5 + pos: 8.5,-34.5 parent: 1668 - - uid: 5268 + - uid: 5411 components: - type: Transform - pos: 26.5,-17.5 + pos: 9.5,-34.5 parent: 1668 - - uid: 5269 + - uid: 5412 components: - type: Transform - pos: 25.5,-17.5 + pos: 6.5,-33.5 parent: 1668 - - uid: 5270 + - uid: 5413 components: - type: Transform - pos: 24.5,-17.5 + pos: 6.5,-32.5 parent: 1668 - - uid: 5271 + - uid: 5414 components: - type: Transform - pos: 24.5,-16.5 + pos: 6.5,-31.5 parent: 1668 - - uid: 5272 + - uid: 5415 components: - type: Transform - pos: 24.5,-15.5 + pos: 6.5,-30.5 parent: 1668 - - uid: 5273 + - uid: 5416 components: - type: Transform - pos: 24.5,-14.5 + pos: 7.5,-30.5 parent: 1668 - - uid: 5274 + - uid: 5417 components: - type: Transform - pos: 27.5,-16.5 + pos: 8.5,-30.5 parent: 1668 - - uid: 5275 + - uid: 5418 components: - type: Transform - pos: 27.5,-15.5 + pos: 9.5,-30.5 parent: 1668 - - uid: 5276 + - uid: 5419 components: - type: Transform - pos: 27.5,-14.5 + pos: 9.5,-33.5 parent: 1668 - - uid: 5441 + - uid: 5420 components: - type: Transform - pos: 15.5,-22.5 + pos: 9.5,-32.5 parent: 1668 - - uid: 5442 + - uid: 5421 components: - type: Transform - pos: 17.5,-22.5 + pos: 9.5,-31.5 parent: 1668 - - uid: 5443 + - uid: 5422 components: - type: Transform - pos: 16.5,-28.5 + pos: -2.5,-34.5 parent: 1668 - - uid: 5444 + - uid: 5423 components: - type: Transform - pos: 16.5,-29.5 + pos: -3.5,-34.5 parent: 1668 - - uid: 5445 + - uid: 5424 components: - type: Transform - pos: 16.5,-30.5 + pos: -4.5,-34.5 parent: 1668 - - uid: 5446 + - uid: 5425 components: - type: Transform - pos: 16.5,-31.5 + pos: -5.5,-34.5 parent: 1668 - - uid: 5447 + - uid: 5426 components: - type: Transform - pos: 17.5,-30.5 + pos: -6.5,-34.5 parent: 1668 - - uid: 5448 + - uid: 5427 components: - type: Transform - pos: 18.5,-30.5 + pos: -7.5,-34.5 parent: 1668 - - uid: 5449 + - uid: 5428 components: - type: Transform - pos: 18.5,-31.5 + pos: -8.5,-34.5 parent: 1668 - - uid: 5450 + - uid: 5429 components: - type: Transform - pos: 18.5,-29.5 + pos: -9.5,-34.5 parent: 1668 - - uid: 5585 + - uid: 5430 components: - type: Transform - pos: 21.5,-26.5 + pos: -10.5,-34.5 parent: 1668 - - uid: 5935 + - uid: 5431 components: - type: Transform - pos: -16.5,-30.5 + pos: -10.5,-33.5 parent: 1668 - - uid: 5936 + - uid: 5432 components: - type: Transform - pos: -16.5,-31.5 + pos: -10.5,-32.5 parent: 1668 - - uid: 5937 + - uid: 5433 components: - type: Transform - pos: -16.5,-32.5 + pos: -10.5,-31.5 parent: 1668 - - uid: 5938 + - uid: 5434 components: - type: Transform - pos: -16.5,-33.5 + pos: -10.5,-30.5 parent: 1668 - - uid: 5939 + - uid: 5435 components: - type: Transform - pos: -17.5,-33.5 + pos: -9.5,-30.5 parent: 1668 - - uid: 5940 + - uid: 5436 components: - type: Transform - pos: -18.5,-33.5 + pos: -8.5,-30.5 parent: 1668 - - uid: 6067 + - uid: 5437 components: - type: Transform - pos: -17.5,-22.5 + pos: -7.5,-30.5 parent: 1668 - - uid: 6068 + - uid: 5438 components: - type: Transform - pos: -18.5,-22.5 + pos: -7.5,-31.5 parent: 1668 - - uid: 6069 + - uid: 5439 components: - type: Transform - pos: -19.5,-22.5 + pos: -7.5,-32.5 parent: 1668 - - uid: 6070 + - uid: 5440 components: - type: Transform - pos: -19.5,-23.5 + pos: -7.5,-33.5 parent: 1668 - - uid: 6071 + - uid: 5441 components: - type: Transform - pos: -19.5,-24.5 + pos: 9.5,-35.5 parent: 1668 - - uid: 6072 + - uid: 5442 components: - type: Transform - pos: -19.5,-25.5 + pos: -10.5,-35.5 parent: 1668 - - uid: 6073 + - uid: 5443 components: - type: Transform - pos: -19.5,-26.5 + pos: -0.5,-33.5 parent: 1668 - - uid: 6074 + - uid: 5444 components: - type: Transform - pos: -19.5,-27.5 + pos: -0.5,-32.5 parent: 1668 - - uid: 6075 + - uid: 5445 components: - type: Transform - pos: -19.5,-28.5 + pos: -0.5,-31.5 parent: 1668 - - uid: 6076 + - uid: 5446 components: - type: Transform - pos: -20.5,-26.5 + pos: -0.5,-30.5 parent: 1668 - - uid: 6077 + - uid: 5447 components: - type: Transform - pos: -21.5,-26.5 + pos: -0.5,-29.5 parent: 1668 - - uid: 6078 + - uid: 5448 components: - type: Transform - pos: -22.5,-26.5 + pos: -1.5,-30.5 parent: 1668 - - uid: 6079 + - uid: 5449 components: - type: Transform - pos: -20.5,-24.5 + pos: 0.5,-30.5 parent: 1668 - - uid: 6080 + - uid: 5670 components: - type: Transform - pos: -21.5,-24.5 + pos: -7.5,-24.5 parent: 1668 - - uid: 6081 + - uid: 5671 components: - type: Transform - pos: -22.5,-24.5 + pos: -7.5,-25.5 parent: 1668 - - uid: 6082 + - uid: 5672 components: - type: Transform - pos: -19.5,-21.5 + pos: -7.5,-26.5 parent: 1668 - - uid: 6083 + - uid: 5673 components: - type: Transform - pos: -18.5,-21.5 + pos: -8.5,-26.5 parent: 1668 - - uid: 6084 + - uid: 5674 components: - type: Transform - pos: -20.5,-21.5 + pos: -9.5,-26.5 parent: 1668 - - uid: 6085 + - uid: 5675 components: - type: Transform - pos: -21.5,-23.5 + pos: -10.5,-26.5 parent: 1668 - - uid: 6086 + - uid: 5676 components: - type: Transform - pos: -21.5,-25.5 + pos: -12.5,-26.5 parent: 1668 - - uid: 6087 + - uid: 5677 components: - type: Transform - pos: -21.5,-27.5 + pos: -13.5,-26.5 parent: 1668 - - uid: 6088 + - uid: 5678 components: - type: Transform - pos: -22.5,-25.5 + pos: -14.5,-26.5 parent: 1668 - - uid: 6089 + - uid: 5679 components: - type: Transform - pos: -23.5,-25.5 + pos: -15.5,-26.5 parent: 1668 - - uid: 6090 + - uid: 5680 components: - type: Transform - pos: -23.5,-26.5 + pos: -16.5,-26.5 parent: 1668 - - uid: 6091 + - uid: 5681 components: - type: Transform - pos: -23.5,-27.5 + pos: -17.5,-26.5 parent: 1668 - - uid: 6092 + - uid: 5682 components: - type: Transform - pos: -23.5,-23.5 + pos: -11.5,-26.5 parent: 1668 - - uid: 6093 + - uid: 5683 components: - type: Transform - pos: -23.5,-24.5 + pos: -19.5,-26.5 parent: 1668 - - uid: 6094 + - uid: 5684 components: - type: Transform - pos: -18.5,-34.5 + pos: -20.5,-26.5 parent: 1668 - - uid: 6095 + - uid: 5685 components: - type: Transform - pos: -17.5,-34.5 + pos: -18.5,-26.5 parent: 1668 - - uid: 6096 + - uid: 5686 components: - type: Transform - pos: -19.5,-34.5 + pos: -21.5,-26.5 parent: 1668 - - uid: 6097 + - uid: 5687 components: - type: Transform - pos: -19.5,-33.5 + pos: -22.5,-26.5 parent: 1668 - - uid: 6098 + - uid: 5688 components: - type: Transform - pos: -20.5,-33.5 + pos: -23.5,-26.5 parent: 1668 - - uid: 6099 + - uid: 5689 components: - type: Transform - pos: -20.5,-32.5 + pos: -25.5,-26.5 parent: 1668 - - uid: 6100 + - uid: 5690 components: - type: Transform - pos: -20.5,-31.5 + pos: -26.5,-26.5 parent: 1668 - - uid: 6112 + - uid: 5691 components: - type: Transform - pos: -15.5,-28.5 + pos: -24.5,-26.5 parent: 1668 - - uid: 6113 + - uid: 5692 components: - type: Transform - pos: -14.5,-28.5 + pos: -27.5,-26.5 parent: 1668 - - uid: 6114 + - uid: 5693 components: - type: Transform - pos: -13.5,-28.5 + pos: -28.5,-26.5 parent: 1668 - - uid: 6115 + - uid: 5694 components: - type: Transform - pos: -13.5,-29.5 + pos: -6.5,-26.5 parent: 1668 - - uid: 6116 + - uid: 5695 components: - type: Transform - pos: -13.5,-30.5 + pos: -5.5,-26.5 parent: 1668 - - uid: 6117 + - uid: 5696 components: - type: Transform - pos: -13.5,-31.5 + pos: -4.5,-26.5 parent: 1668 - - uid: 6118 + - uid: 5697 components: - type: Transform - pos: -13.5,-32.5 + pos: -3.5,-26.5 parent: 1668 - - uid: 6119 + - uid: 5698 components: - type: Transform - pos: -13.5,-33.5 + pos: -2.5,-26.5 parent: 1668 - - uid: 6120 + - uid: 5699 components: - type: Transform - pos: -13.5,-27.5 + pos: -1.5,-26.5 parent: 1668 - - uid: 6121 + - uid: 5700 components: - type: Transform - pos: -13.5,-26.5 + pos: -0.5,-26.5 parent: 1668 - - uid: 6122 + - uid: 5701 components: - type: Transform - pos: -13.5,-25.5 + pos: 0.5,-26.5 parent: 1668 - - uid: 6123 + - uid: 5702 components: - type: Transform - pos: -13.5,-24.5 + pos: 1.5,-26.5 parent: 1668 - - uid: 6124 + - uid: 5703 components: - type: Transform - pos: -13.5,-23.5 + pos: 3.5,-26.5 parent: 1668 - - uid: 6125 + - uid: 5704 components: - type: Transform - pos: -13.5,-22.5 + pos: 5.5,-26.5 parent: 1668 - - uid: 6126 + - uid: 5705 components: - type: Transform - pos: -13.5,-21.5 + pos: 2.5,-26.5 parent: 1668 - - uid: 6127 + - uid: 5706 components: - type: Transform - pos: 15.5,-30.5 + pos: 6.5,-26.5 parent: 1668 - - uid: 6128 + - uid: 5707 components: - type: Transform - pos: 14.5,-30.5 + pos: 7.5,-26.5 parent: 1668 - - uid: 6129 + - uid: 5708 components: - type: Transform - pos: 13.5,-30.5 + pos: 8.5,-26.5 parent: 1668 - - uid: 6131 + - uid: 5709 components: - type: Transform - pos: 13.5,-32.5 + pos: 9.5,-26.5 parent: 1668 - - uid: 6132 + - uid: 5710 components: - type: Transform - pos: 13.5,-33.5 + pos: 10.5,-26.5 parent: 1668 - - uid: 6133 + - uid: 5711 components: - type: Transform - pos: -0.5,-29.5 + pos: 11.5,-26.5 parent: 1668 - - uid: 6134 + - uid: 5712 components: - type: Transform - pos: -0.5,-30.5 + pos: 12.5,-26.5 parent: 1668 - - uid: 6135 + - uid: 5713 components: - type: Transform - pos: -1.5,-30.5 + pos: 13.5,-26.5 parent: 1668 - - uid: 6136 + - uid: 5714 components: - type: Transform - pos: 0.5,-30.5 + pos: 14.5,-26.5 parent: 1668 - - uid: 6202 + - uid: 5715 components: - type: Transform - pos: -8.5,-30.5 + pos: 15.5,-26.5 parent: 1668 - - uid: 6203 + - uid: 5716 components: - type: Transform - pos: -8.5,-31.5 + pos: 16.5,-26.5 parent: 1668 - - uid: 6204 + - uid: 5717 components: - type: Transform - pos: -8.5,-33.5 + pos: 4.5,-26.5 parent: 1668 - - uid: 6205 + - uid: 5882 components: - type: Transform - pos: -8.5,-32.5 + pos: -15.5,-25.5 parent: 1668 - - uid: 6206 + - uid: 5883 components: - type: Transform - pos: -7.5,-32.5 + pos: -19.5,-25.5 parent: 1668 - - uid: 6207 + - uid: 5884 components: - type: Transform - pos: -6.5,-32.5 + pos: -23.5,-25.5 parent: 1668 - - uid: 6208 + - uid: 5885 components: - type: Transform - pos: -5.5,-32.5 + pos: -27.5,-25.5 parent: 1668 - - uid: 6209 + - uid: 5886 components: - type: Transform - pos: -4.5,-32.5 + pos: -11.5,-25.5 parent: 1668 - - uid: 6210 + - uid: 5887 components: - type: Transform - pos: -9.5,-32.5 + pos: -3.5,-25.5 parent: 1668 - - uid: 6211 + - uid: 5896 components: - type: Transform - pos: -10.5,-32.5 + pos: -23.5,-27.5 parent: 1668 - - uid: 6212 + - uid: 5897 components: - type: Transform - pos: -11.5,-32.5 + pos: -27.5,-27.5 parent: 1668 - - uid: 6213 + - uid: 6132 components: - type: Transform - pos: 7.5,-30.5 + pos: -27.5,-13.5 parent: 1668 - - uid: 6214 + - uid: 6133 components: - type: Transform - pos: 7.5,-31.5 + pos: -28.5,-13.5 parent: 1668 - - uid: 6215 + - uid: 6134 components: - type: Transform - pos: 7.5,-32.5 + pos: -29.5,-13.5 parent: 1668 - - uid: 6216 + - uid: 6498 components: - type: Transform - pos: 7.5,-33.5 + pos: -16.5,-11.5 parent: 1668 - - uid: 6217 + - uid: 6499 components: - type: Transform - pos: 6.5,-32.5 + pos: -16.5,-12.5 parent: 1668 - - uid: 6218 + - uid: 6500 components: - type: Transform - pos: 5.5,-32.5 + pos: -16.5,-13.5 parent: 1668 - - uid: 6219 + - uid: 6501 components: - type: Transform - pos: 4.5,-32.5 + pos: -17.5,-13.5 parent: 1668 - - uid: 6220 + - uid: 6502 components: - type: Transform - pos: 3.5,-32.5 + pos: -18.5,-13.5 parent: 1668 - - uid: 6221 + - uid: 6503 components: - type: Transform - pos: 8.5,-32.5 + pos: -19.5,-13.5 parent: 1668 - - uid: 6222 + - uid: 6504 components: - type: Transform - pos: 9.5,-32.5 + pos: -20.5,-13.5 parent: 1668 - - uid: 6223 + - uid: 6505 components: - type: Transform - pos: 10.5,-32.5 + pos: -21.5,-13.5 parent: 1668 - - uid: 6224 + - uid: 6506 components: - type: Transform - pos: 11.5,-32.5 + pos: -22.5,-13.5 parent: 1668 - - uid: 6225 + - uid: 6507 components: - type: Transform - pos: 12.5,-32.5 + pos: -23.5,-13.5 parent: 1668 - - uid: 6346 + - uid: 6508 components: - type: Transform - pos: -2.5,-34.5 + pos: -24.5,-13.5 parent: 1668 - - uid: 6347 + - uid: 6509 components: - type: Transform - pos: -2.5,-35.5 + pos: -25.5,-13.5 parent: 1668 - - uid: 6348 + - uid: 6510 components: - type: Transform - pos: -2.5,-36.5 + pos: -26.5,-13.5 parent: 1668 - - uid: 6349 + - uid: 6511 components: - type: Transform - pos: -2.5,-37.5 + pos: -26.5,-12.5 parent: 1668 - - uid: 6350 + - uid: 6512 components: - type: Transform - pos: -1.5,-36.5 + pos: -26.5,-11.5 parent: 1668 - - uid: 6351 + - uid: 6513 components: - type: Transform - pos: -0.5,-36.5 + pos: -26.5,-10.5 parent: 1668 - - uid: 6352 + - uid: 6514 components: - type: Transform - pos: 0.5,-36.5 + pos: -26.5,-9.5 parent: 1668 - - uid: 6353 + - uid: 6515 components: - type: Transform - pos: 1.5,-36.5 + pos: -26.5,-8.5 parent: 1668 - - uid: 6354 + - uid: 6516 components: - type: Transform - pos: 2.5,-36.5 + pos: -26.5,-7.5 parent: 1668 - - uid: 6355 + - uid: 6517 components: - type: Transform - pos: 3.5,-36.5 + pos: -26.5,-6.5 parent: 1668 - - uid: 6356 + - uid: 6518 components: - type: Transform - pos: -3.5,-36.5 + pos: -26.5,-5.5 parent: 1668 - - uid: 6357 + - uid: 6519 components: - type: Transform - pos: -4.5,-36.5 + pos: -26.5,-4.5 parent: 1668 - - uid: 6358 + - uid: 6520 components: - type: Transform - pos: -5.5,-36.5 + pos: -25.5,-4.5 parent: 1668 - - uid: 6359 + - uid: 6521 components: - type: Transform - pos: -0.5,-37.5 + pos: -17.5,-12.5 parent: 1668 - - uid: 6360 + - uid: 6522 components: - type: Transform - pos: -0.5,-38.5 + pos: -17.5,-11.5 parent: 1668 - - uid: 6409 + - uid: 6523 components: - type: Transform - pos: -2.5,-40.5 + pos: -17.5,-10.5 parent: 1668 - - uid: 6410 + - uid: 6524 components: - type: Transform - pos: -2.5,-41.5 + pos: -17.5,-9.5 parent: 1668 - - uid: 6411 + - uid: 6525 components: - type: Transform - pos: -2.5,-42.5 + pos: -17.5,-8.5 parent: 1668 - - uid: 6412 + - uid: 6526 components: - type: Transform - pos: -2.5,-43.5 + pos: -17.5,-7.5 parent: 1668 - - uid: 6413 + - uid: 6527 components: - type: Transform - pos: -1.5,-42.5 + pos: -17.5,-6.5 parent: 1668 - - uid: 6414 + - uid: 6528 components: - type: Transform - pos: -0.5,-42.5 + pos: -17.5,-5.5 parent: 1668 - - uid: 6415 + - uid: 6529 components: - type: Transform - pos: 0.5,-42.5 + pos: -17.5,-4.5 parent: 1668 - - uid: 6416 + - uid: 6530 components: - type: Transform - pos: 1.5,-42.5 + pos: -18.5,-4.5 parent: 1668 - - uid: 6417 + - uid: 6531 components: - type: Transform - pos: 2.5,-42.5 + pos: -19.5,-4.5 parent: 1668 - - uid: 6418 + - uid: 6532 components: - type: Transform - pos: 3.5,-42.5 + pos: -21.5,-12.5 parent: 1668 - - uid: 6419 + - uid: 6533 components: - type: Transform - pos: 4.5,-42.5 + pos: -21.5,-11.5 parent: 1668 - - uid: 6420 + - uid: 6534 components: - type: Transform - pos: 4.5,-41.5 + pos: -21.5,-10.5 parent: 1668 - - uid: 6421 + - uid: 6535 components: - type: Transform - pos: 4.5,-40.5 + pos: -21.5,-9.5 parent: 1668 - - uid: 6422 + - uid: 6536 components: - type: Transform - pos: -3.5,-42.5 + pos: -21.5,-8.5 parent: 1668 - - uid: 6423 + - uid: 6537 components: - type: Transform - pos: -4.5,-42.5 + pos: -21.5,-7.5 parent: 1668 - - uid: 6424 + - uid: 6538 components: - type: Transform - pos: -5.5,-42.5 + pos: -22.5,-7.5 parent: 1668 - - uid: 6425 + - uid: 6539 components: - type: Transform - pos: -5.5,-41.5 + pos: -23.5,-7.5 parent: 1668 - - uid: 6426 + - uid: 6540 components: - type: Transform - pos: -5.5,-40.5 + pos: -20.5,-7.5 parent: 1668 - - uid: 6427 + - uid: 6541 components: - type: Transform - pos: -0.5,-41.5 + pos: -25.5,-14.5 parent: 1668 - - uid: 6428 + - uid: 6542 components: - type: Transform - pos: -0.5,-40.5 + pos: -25.5,-15.5 parent: 1668 - - uid: 6429 + - uid: 6543 components: - type: Transform - pos: -0.5,-43.5 + pos: -25.5,-16.5 parent: 1668 - - uid: 6430 + - uid: 6544 components: - type: Transform - pos: -0.5,-44.5 + pos: -22.5,-14.5 parent: 1668 - - uid: 6431 + - uid: 6545 components: - type: Transform - pos: -0.5,-45.5 + pos: -22.5,-15.5 parent: 1668 - - uid: 6432 + - uid: 6546 components: - type: Transform - pos: -0.5,-46.5 + pos: -22.5,-16.5 parent: 1668 - - uid: 6433 + - uid: 6547 components: - type: Transform - pos: -2.5,-44.5 + pos: -19.5,-14.5 parent: 1668 - - uid: 6434 + - uid: 6548 components: - type: Transform - pos: -2.5,-45.5 + pos: -19.5,-15.5 parent: 1668 - - uid: 6435 + - uid: 6549 components: - type: Transform - pos: -2.5,-46.5 + pos: -19.5,-16.5 parent: 1668 - - uid: 6436 + - uid: 6550 components: - type: Transform - pos: 1.5,-44.5 + pos: -16.5,-14.5 parent: 1668 - - uid: 6437 + - uid: 6551 components: - type: Transform - pos: 1.5,-43.5 + pos: -16.5,-15.5 parent: 1668 - - uid: 6438 + - uid: 6552 components: - type: Transform - pos: 1.5,-45.5 + pos: -16.5,-16.5 parent: 1668 - - uid: 6439 + - uid: 6553 components: - type: Transform - pos: 1.5,-46.5 + pos: -13.5,-14.5 parent: 1668 - - uid: 6774 + - uid: 6554 components: - type: Transform - pos: 26.5,-26.5 + pos: -13.5,-15.5 parent: 1668 - - uid: 6776 + - uid: 6555 components: - type: Transform - pos: 27.5,-26.5 + pos: -13.5,-16.5 parent: 1668 - - uid: 6854 + - uid: 6556 components: - type: Transform - pos: 32.5,-27.5 + pos: -10.5,-14.5 parent: 1668 - - uid: 6855 + - uid: 6557 components: - type: Transform - pos: 32.5,-28.5 + pos: -10.5,-15.5 parent: 1668 - - uid: 6856 + - uid: 6558 components: - type: Transform - pos: 32.5,-29.5 + pos: -10.5,-16.5 parent: 1668 - - uid: 6857 + - uid: 6559 components: - type: Transform - pos: 32.5,-30.5 + pos: -7.5,-16.5 parent: 1668 - - uid: 6858 + - uid: 6560 components: - type: Transform - pos: 32.5,-31.5 + pos: -7.5,-15.5 parent: 1668 - - uid: 6859 + - uid: 6561 components: - type: Transform - pos: 31.5,-30.5 + pos: -7.5,-14.5 parent: 1668 - - uid: 6860 + - uid: 6562 components: - type: Transform - pos: 30.5,-30.5 + pos: -7.5,-13.5 parent: 1668 - - uid: 6861 + - uid: 6563 components: - type: Transform - pos: 29.5,-30.5 + pos: -8.5,-13.5 parent: 1668 - - uid: 6862 + - uid: 6564 components: - type: Transform - pos: 28.5,-30.5 + pos: -9.5,-13.5 parent: 1668 - - uid: 6863 + - uid: 6565 components: - type: Transform - pos: 33.5,-30.5 + pos: -10.5,-13.5 parent: 1668 - - uid: 6971 + - uid: 6566 components: - type: Transform - pos: 19.5,-30.5 + pos: -11.5,-13.5 parent: 1668 - - uid: 6972 + - uid: 6567 components: - type: Transform - pos: 20.5,-30.5 + pos: -12.5,-13.5 parent: 1668 - - uid: 6973 + - uid: 6568 components: - type: Transform - pos: 21.5,-30.5 + pos: -13.5,-13.5 parent: 1668 - - uid: 6974 + - uid: 6569 components: - type: Transform - pos: 22.5,-30.5 + pos: -14.5,-13.5 parent: 1668 - - uid: 6975 + - uid: 6570 components: - type: Transform - pos: 22.5,-29.5 + pos: -15.5,-13.5 parent: 1668 - - uid: 6976 + - uid: 6571 components: - type: Transform - pos: 22.5,-31.5 + pos: -6.5,-13.5 parent: 1668 -- proto: CableHV - entities: - - uid: 1391 + - uid: 6572 components: - type: Transform - pos: 27.5,-31.5 + pos: -5.5,-13.5 parent: 1668 - - uid: 1465 + - uid: 6573 components: - type: Transform - pos: 26.5,-25.5 + pos: -4.5,-13.5 parent: 1668 - - uid: 1475 + - uid: 6574 components: - type: Transform - pos: 15.5,-13.5 + pos: -3.5,-13.5 parent: 1668 - - uid: 1476 + - uid: 6651 components: - type: Transform - pos: 16.5,-13.5 + pos: -30.5,-13.5 parent: 1668 - - uid: 1477 + - uid: 6652 components: - type: Transform - pos: 17.5,-13.5 + pos: -31.5,-13.5 parent: 1668 - - uid: 1478 + - uid: 6653 components: - type: Transform - pos: 17.5,-14.5 + pos: -32.5,-13.5 parent: 1668 - - uid: 1479 + - uid: 6654 components: - type: Transform - pos: 18.5,-14.5 + pos: -33.5,-13.5 parent: 1668 - - uid: 1480 + - uid: 6655 components: - type: Transform - pos: 19.5,-14.5 + pos: -34.5,-13.5 parent: 1668 - - uid: 1482 + - uid: 6656 components: - type: Transform - pos: 25.5,-25.5 + pos: -35.5,-13.5 parent: 1668 - - uid: 1659 + - uid: 6657 components: - type: Transform - pos: 18.5,-25.5 + pos: -36.5,-13.5 parent: 1668 - - uid: 1864 + - uid: 6658 components: - type: Transform - pos: -3.5,20.5 + pos: -37.5,-13.5 parent: 1668 - - uid: 1865 + - uid: 6659 components: - type: Transform - pos: -2.5,20.5 + pos: -37.5,-14.5 parent: 1668 - - uid: 1866 + - uid: 6660 components: - type: Transform - pos: -1.5,20.5 + pos: -37.5,-15.5 parent: 1668 - - uid: 1867 + - uid: 6661 components: - type: Transform - pos: -0.5,20.5 + pos: -37.5,-16.5 parent: 1668 - - uid: 1868 + - uid: 6662 components: - type: Transform - pos: 0.5,20.5 + pos: -34.5,-16.5 parent: 1668 - - uid: 1869 + - uid: 6663 components: - type: Transform - pos: 1.5,20.5 + pos: -34.5,-15.5 parent: 1668 - - uid: 1870 + - uid: 6664 components: - type: Transform - pos: 2.5,20.5 + pos: -34.5,-14.5 parent: 1668 - - uid: 1871 + - uid: 6665 components: - type: Transform - pos: -0.5,19.5 + pos: -31.5,-16.5 parent: 1668 - - uid: 1872 + - uid: 6666 components: - type: Transform - pos: -0.5,18.5 + pos: -31.5,-15.5 parent: 1668 - - uid: 1873 + - uid: 6667 components: - type: Transform - pos: -0.5,17.5 + pos: -31.5,-14.5 parent: 1668 - - uid: 1874 + - uid: 6668 components: - type: Transform - pos: -0.5,16.5 + pos: -28.5,-16.5 parent: 1668 - - uid: 1875 + - uid: 6669 components: - type: Transform - pos: -0.5,15.5 + pos: -28.5,-15.5 parent: 1668 - - uid: 1876 + - uid: 6670 components: - type: Transform - pos: -0.5,14.5 + pos: -28.5,-14.5 parent: 1668 - - uid: 1877 + - uid: 7008 components: - type: Transform - pos: -0.5,13.5 + pos: -29.5,-3.5 parent: 1668 - - uid: 1878 + - uid: 7009 components: - type: Transform - pos: -0.5,12.5 + pos: -29.5,-4.5 parent: 1668 - - uid: 1879 + - uid: 7010 components: - type: Transform - pos: -0.5,11.5 + pos: -29.5,-5.5 parent: 1668 - - uid: 1880 + - uid: 7011 components: - type: Transform - pos: -0.5,10.5 + pos: -29.5,-6.5 parent: 1668 - - uid: 1881 + - uid: 7012 components: - type: Transform - pos: -0.5,9.5 + pos: -29.5,-7.5 parent: 1668 - - uid: 1882 + - uid: 7013 components: - type: Transform - pos: -0.5,8.5 + pos: -29.5,-8.5 parent: 1668 - - uid: 1883 + - uid: 7014 components: - type: Transform - pos: -0.5,7.5 + pos: -29.5,-9.5 parent: 1668 - - uid: 1884 + - uid: 7015 components: - type: Transform - pos: -0.5,6.5 + pos: -30.5,-9.5 parent: 1668 - - uid: 1885 + - uid: 7016 components: - type: Transform - pos: -0.5,5.5 + pos: -31.5,-9.5 parent: 1668 - - uid: 1886 + - uid: 7017 components: - type: Transform - pos: -0.5,4.5 + pos: -32.5,-9.5 parent: 1668 - - uid: 1887 + - uid: 7018 components: - type: Transform - pos: -0.5,3.5 + pos: -30.5,-5.5 parent: 1668 - - uid: 1888 + - uid: 7019 components: - type: Transform - pos: 0.5,3.5 + pos: -31.5,-5.5 parent: 1668 - - uid: 1889 + - uid: 7020 components: - type: Transform - pos: 1.5,3.5 + pos: -32.5,-5.5 parent: 1668 - - uid: 1890 + - uid: 7021 components: - type: Transform - pos: 2.5,3.5 + pos: -32.5,-6.5 parent: 1668 - - uid: 1891 + - uid: 7022 components: - type: Transform - pos: 3.5,3.5 + pos: -32.5,-7.5 parent: 1668 - - uid: 1892 + - uid: 7023 components: - type: Transform - pos: 4.5,3.5 + pos: -32.5,-8.5 parent: 1668 - - uid: 1893 + - uid: 7024 components: - type: Transform - pos: 4.5,2.5 + pos: -39.5,-11.5 parent: 1668 - - uid: 1894 + - uid: 7025 components: - type: Transform - pos: 4.5,1.5 + pos: -39.5,-10.5 parent: 1668 - - uid: 1895 + - uid: 7026 components: - type: Transform - pos: 4.5,0.5 + pos: -39.5,-9.5 parent: 1668 - - uid: 1896 + - uid: 7027 components: - type: Transform - pos: 4.5,-0.5 + pos: -40.5,-9.5 parent: 1668 - - uid: 1897 + - uid: 7028 components: - type: Transform - pos: 17.5,-12.5 + pos: -41.5,-9.5 parent: 1668 - - uid: 1898 + - uid: 7029 components: - type: Transform - pos: 17.5,-11.5 + pos: -42.5,-9.5 parent: 1668 - - uid: 1899 + - uid: 7030 components: - type: Transform - pos: 16.5,-11.5 + pos: -43.5,-9.5 parent: 1668 - - uid: 1900 + - uid: 7031 components: - type: Transform - pos: 15.5,-11.5 + pos: -44.5,-9.5 parent: 1668 - - uid: 1901 + - uid: 7032 components: - type: Transform - pos: 14.5,-11.5 + pos: -44.5,-8.5 parent: 1668 - - uid: 1902 + - uid: 7033 components: - type: Transform - pos: 13.5,-11.5 + pos: -44.5,-7.5 parent: 1668 - - uid: 1903 + - uid: 7034 components: - type: Transform - pos: 12.5,-11.5 + pos: -44.5,-6.5 parent: 1668 - - uid: 1904 + - uid: 7035 components: - type: Transform - pos: 11.5,-11.5 + pos: -44.5,-5.5 parent: 1668 - - uid: 1905 + - uid: 7036 components: - type: Transform - pos: 10.5,-11.5 + pos: -43.5,-5.5 parent: 1668 - - uid: 1906 + - uid: 7037 components: - type: Transform - pos: 9.5,-11.5 + pos: -42.5,-5.5 parent: 1668 - - uid: 1907 + - uid: 7038 components: - type: Transform - pos: 8.5,-11.5 + pos: -41.5,-5.5 parent: 1668 - - uid: 1908 + - uid: 7039 components: - type: Transform - pos: 7.5,-11.5 + pos: -40.5,-5.5 parent: 1668 - - uid: 1909 + - uid: 7040 components: - type: Transform - pos: 6.5,-11.5 + pos: -39.5,-5.5 parent: 1668 - - uid: 1910 + - uid: 7041 components: - type: Transform - pos: 5.5,-11.5 + pos: -38.5,-5.5 parent: 1668 - - uid: 1911 + - uid: 7042 components: - type: Transform - pos: 4.5,-11.5 + pos: -37.5,-5.5 parent: 1668 - - uid: 1912 + - uid: 7043 components: - type: Transform - pos: 3.5,-11.5 + pos: -36.5,-5.5 parent: 1668 - - uid: 1913 + - uid: 7044 components: - type: Transform - pos: 2.5,-11.5 + pos: -36.5,-6.5 parent: 1668 - - uid: 1914 + - uid: 7045 components: - type: Transform - pos: 1.5,-11.5 + pos: -36.5,-7.5 parent: 1668 - - uid: 1915 + - uid: 7046 components: - type: Transform - pos: 0.5,-11.5 + pos: -36.5,-8.5 parent: 1668 - - uid: 1916 + - uid: 7047 components: - type: Transform - pos: -0.5,-11.5 + pos: -36.5,-9.5 parent: 1668 - - uid: 1917 + - uid: 7048 components: - type: Transform - pos: -0.5,-10.5 + pos: -37.5,-9.5 parent: 1668 - - uid: 1918 + - uid: 7049 components: - type: Transform - pos: -0.5,-9.5 + pos: -38.5,-9.5 parent: 1668 - - uid: 1919 + - uid: 7054 components: - type: Transform - pos: -0.5,-8.5 + pos: -29.5,2.5 parent: 1668 - - uid: 1920 + - uid: 7055 components: - type: Transform - pos: -0.5,-7.5 + pos: -29.5,1.5 parent: 1668 - - uid: 1921 + - uid: 7056 components: - type: Transform - pos: -0.5,-6.5 + pos: -29.5,0.5 parent: 1668 - - uid: 1922 + - uid: 7057 components: - type: Transform - pos: -1.5,-5.5 + pos: -29.5,-0.5 parent: 1668 - - uid: 1923 + - uid: 7058 components: - type: Transform - pos: -0.5,-4.5 + pos: -28.5,-0.5 parent: 1668 - - uid: 1924 + - uid: 7059 components: - type: Transform - pos: 0.5,-4.5 + pos: -27.5,-0.5 parent: 1668 - - uid: 1925 + - uid: 7060 components: - type: Transform - pos: 1.5,-4.5 + pos: -26.5,-0.5 parent: 1668 - - uid: 1926 + - uid: 7061 components: - type: Transform - pos: 2.5,-4.5 + pos: -25.5,-0.5 parent: 1668 - - uid: 1927 + - uid: 7062 components: - type: Transform - pos: 3.5,-4.5 + pos: -24.5,-0.5 parent: 1668 - - uid: 1928 + - uid: 7063 components: - type: Transform - pos: 4.5,-4.5 + pos: -23.5,-0.5 parent: 1668 - - uid: 1929 + - uid: 7064 components: - type: Transform - pos: 4.5,-3.5 + pos: -22.5,-0.5 parent: 1668 - - uid: 1930 + - uid: 7065 components: - type: Transform - pos: 4.5,-2.5 + pos: -21.5,-0.5 parent: 1668 - - uid: 1931 + - uid: 7066 components: - type: Transform - pos: 4.5,-1.5 + pos: -20.5,-0.5 parent: 1668 - - uid: 1932 + - uid: 7067 components: - type: Transform - pos: 17.5,-10.5 + pos: -19.5,-0.5 parent: 1668 - - uid: 1933 + - uid: 7068 components: - type: Transform - pos: 17.5,-9.5 + pos: -18.5,-0.5 parent: 1668 - - uid: 1934 + - uid: 7069 components: - type: Transform - pos: 17.5,-8.5 + pos: -17.5,-0.5 parent: 1668 - - uid: 1935 + - uid: 7070 components: - type: Transform - pos: 17.5,-7.5 + pos: -16.5,-0.5 parent: 1668 - - uid: 1936 + - uid: 7071 components: - type: Transform - pos: 17.5,-6.5 + pos: -15.5,-0.5 parent: 1668 - - uid: 1937 + - uid: 7072 components: - type: Transform - pos: 16.5,-6.5 + pos: -14.5,-0.5 parent: 1668 - - uid: 1938 + - uid: 7073 components: - type: Transform - pos: 15.5,-6.5 + pos: -13.5,-0.5 parent: 1668 - - uid: 1939 + - uid: 7074 components: - type: Transform - pos: 14.5,-6.5 + pos: -12.5,-0.5 parent: 1668 - - uid: 1940 + - uid: 7075 components: - type: Transform - pos: 13.5,-6.5 + pos: -11.5,-0.5 parent: 1668 - - uid: 1941 + - uid: 7076 components: - type: Transform - pos: 12.5,-6.5 + pos: -10.5,-0.5 parent: 1668 - - uid: 1942 + - uid: 7077 components: - type: Transform - pos: 12.5,-5.5 + pos: -9.5,-0.5 parent: 1668 - - uid: 1943 + - uid: 7078 components: - type: Transform - pos: 12.5,-4.5 + pos: -30.5,-0.5 parent: 1668 - - uid: 1944 + - uid: 7079 components: - type: Transform - pos: 12.5,-3.5 + pos: -31.5,-0.5 parent: 1668 - - uid: 1945 + - uid: 7080 components: - type: Transform - pos: 12.5,-2.5 + pos: -32.5,-0.5 parent: 1668 - - uid: 1946 + - uid: 7081 components: - type: Transform - pos: 12.5,-1.5 + pos: -33.5,-0.5 parent: 1668 - - uid: 1947 + - uid: 7082 components: - type: Transform - pos: 12.5,-0.5 + pos: -34.5,-0.5 parent: 1668 - - uid: 1948 + - uid: 7083 components: - type: Transform - pos: 11.5,-0.5 + pos: -35.5,-0.5 parent: 1668 - - uid: 1949 + - uid: 7084 components: - type: Transform - pos: 10.5,-0.5 + pos: -36.5,-0.5 parent: 1668 - - uid: 1950 + - uid: 7085 components: - type: Transform - pos: 9.5,-0.5 + pos: -37.5,-0.5 parent: 1668 - - uid: 1951 + - uid: 7086 components: - type: Transform - pos: 8.5,-0.5 + pos: -38.5,-0.5 parent: 1668 - - uid: 1952 + - uid: 7087 components: - type: Transform - pos: 7.5,-0.5 + pos: -39.5,-0.5 parent: 1668 - - uid: 1953 + - uid: 7088 components: - type: Transform - pos: 6.5,-0.5 + pos: -40.5,-0.5 parent: 1668 - - uid: 1954 + - uid: 7089 components: - type: Transform - pos: 5.5,-0.5 + pos: -41.5,-0.5 parent: 1668 - - uid: 2523 + - uid: 7090 components: - type: Transform - pos: 0.5,12.5 + pos: -42.5,-0.5 parent: 1668 - - uid: 2524 + - uid: 7091 components: - type: Transform - pos: 1.5,12.5 + pos: -43.5,-0.5 parent: 1668 - - uid: 2525 + - uid: 7092 components: - type: Transform - pos: 2.5,12.5 + pos: -44.5,-0.5 parent: 1668 - - uid: 2526 + - uid: 7093 components: - type: Transform - pos: 3.5,12.5 + pos: -45.5,-0.5 parent: 1668 - - uid: 2527 + - uid: 7094 components: - type: Transform - pos: 4.5,12.5 + pos: -46.5,-0.5 parent: 1668 - - uid: 2528 + - uid: 7174 components: - type: Transform - pos: 5.5,12.5 + pos: -47.5,-0.5 parent: 1668 - - uid: 2529 + - uid: 7175 components: - type: Transform - pos: 6.5,12.5 + pos: -48.5,-0.5 parent: 1668 - - uid: 2530 + - uid: 7176 components: - type: Transform - pos: 7.5,12.5 + pos: -49.5,-0.5 parent: 1668 - - uid: 2531 + - uid: 7177 components: - type: Transform - pos: 8.5,12.5 + pos: -50.5,-0.5 parent: 1668 - - uid: 2532 + - uid: 7178 components: - type: Transform - pos: 9.5,12.5 + pos: -51.5,-0.5 parent: 1668 - - uid: 2533 + - uid: 7179 components: - type: Transform - pos: 10.5,12.5 + pos: -52.5,-0.5 parent: 1668 - - uid: 2534 + - uid: 7180 components: - type: Transform - pos: 11.5,12.5 + pos: -53.5,-0.5 parent: 1668 - - uid: 2535 + - uid: 7181 components: - type: Transform - pos: 12.5,12.5 + pos: -54.5,-0.5 parent: 1668 - - uid: 2536 + - uid: 7210 components: - type: Transform - pos: 13.5,12.5 + pos: -51.5,2.5 parent: 1668 - - uid: 2537 + - uid: 7211 components: - type: Transform - pos: 14.5,12.5 + pos: -51.5,3.5 parent: 1668 - - uid: 2538 + - uid: 7212 components: - type: Transform - pos: 14.5,13.5 + pos: -51.5,4.5 parent: 1668 - - uid: 2539 + - uid: 7213 components: - type: Transform - pos: 14.5,14.5 + pos: -51.5,5.5 parent: 1668 - - uid: 2540 + - uid: 7214 components: - type: Transform - pos: 14.5,15.5 + pos: -50.5,5.5 parent: 1668 - - uid: 2541 + - uid: 7215 components: - type: Transform - pos: 14.5,16.5 + pos: -49.5,5.5 parent: 1668 - - uid: 2542 + - uid: 7216 components: - type: Transform - pos: 14.5,17.5 + pos: -48.5,5.5 parent: 1668 - - uid: 2543 + - uid: 7217 components: - type: Transform - pos: 14.5,18.5 + pos: -48.5,4.5 parent: 1668 - - uid: 2544 + - uid: 7218 components: - type: Transform - pos: 15.5,18.5 + pos: -45.5,2.5 parent: 1668 - - uid: 2545 + - uid: 7219 components: - type: Transform - pos: 15.5,19.5 + pos: -45.5,3.5 parent: 1668 - - uid: 3257 + - uid: 7220 components: - type: Transform - pos: 16.5,18.5 + pos: -45.5,4.5 parent: 1668 - - uid: 3523 + - uid: 7221 components: - type: Transform - pos: -1.5,-4.5 + pos: -45.5,5.5 parent: 1668 - - uid: 3524 + - uid: 7222 components: - type: Transform - pos: -1.5,-6.5 + pos: -44.5,5.5 parent: 1668 - - uid: 3525 + - uid: 7223 components: - type: Transform - pos: -1.5,4.5 + pos: -43.5,5.5 parent: 1668 - - uid: 3526 + - uid: 7224 components: - type: Transform - pos: -2.5,4.5 + pos: -42.5,5.5 parent: 1668 - - uid: 3527 + - uid: 7225 components: - type: Transform - pos: -3.5,4.5 + pos: -42.5,4.5 parent: 1668 - - uid: 3528 + - uid: 7226 components: - type: Transform - pos: -4.5,4.5 + pos: -47.5,-3.5 parent: 1668 - - uid: 3529 + - uid: 7227 components: - type: Transform - pos: -5.5,4.5 + pos: -47.5,-4.5 parent: 1668 - - uid: 3530 + - uid: 7228 components: - type: Transform - pos: -6.5,4.5 + pos: -47.5,-5.5 parent: 1668 - - uid: 3531 + - uid: 7229 components: - type: Transform - pos: -2.5,-4.5 + pos: -47.5,-6.5 parent: 1668 - - uid: 3532 + - uid: 7230 components: - type: Transform - pos: -3.5,-4.5 + pos: -48.5,-6.5 parent: 1668 - - uid: 3533 + - uid: 7231 components: - type: Transform - pos: -4.5,-4.5 + pos: -49.5,-6.5 parent: 1668 - - uid: 3534 + - uid: 7232 components: - type: Transform - pos: -5.5,-4.5 + pos: -50.5,-6.5 parent: 1668 - - uid: 3535 + - uid: 7233 components: - type: Transform - pos: -6.5,-4.5 + pos: -50.5,-5.5 parent: 1668 - - uid: 3536 + - uid: 7466 components: - type: Transform - pos: -6.5,-3.5 + pos: -29.5,-26.5 parent: 1668 - - uid: 3537 + - uid: 7467 components: - type: Transform - pos: -6.5,-2.5 + pos: -30.5,-26.5 parent: 1668 - - uid: 3538 + - uid: 7468 components: - type: Transform - pos: -6.5,-1.5 + pos: -31.5,-26.5 parent: 1668 - - uid: 3539 + - uid: 7469 components: - type: Transform - pos: -6.5,-0.5 + pos: -32.5,-26.5 parent: 1668 - - uid: 3540 + - uid: 7470 components: - type: Transform - pos: -6.5,0.5 + pos: -33.5,-26.5 parent: 1668 - - uid: 3541 + - uid: 7471 components: - type: Transform - pos: -6.5,1.5 + pos: -34.5,-26.5 parent: 1668 - - uid: 3542 + - uid: 7472 components: - type: Transform - pos: -6.5,2.5 + pos: -35.5,-26.5 parent: 1668 - - uid: 3543 + - uid: 7473 components: - type: Transform - pos: -6.5,3.5 + pos: -36.5,-26.5 parent: 1668 - - uid: 3544 + - uid: 7474 components: - type: Transform - pos: -7.5,-0.5 + pos: -37.5,-26.5 parent: 1668 - - uid: 3545 + - uid: 7475 components: - type: Transform - pos: -8.5,-0.5 + pos: -38.5,-26.5 parent: 1668 - - uid: 3546 + - uid: 7476 components: - type: Transform - pos: -9.5,-0.5 + pos: -39.5,-26.5 parent: 1668 - - uid: 3547 + - uid: 7477 components: - type: Transform - pos: -10.5,-0.5 + pos: -39.5,-25.5 parent: 1668 - - uid: 3548 + - uid: 7478 components: - type: Transform - pos: -11.5,-0.5 + pos: -39.5,-27.5 parent: 1668 - - uid: 3549 + - uid: 7479 components: - type: Transform - pos: -12.5,-0.5 + pos: -35.5,-27.5 parent: 1668 - - uid: 3550 + - uid: 7480 components: - type: Transform - pos: -13.5,-0.5 + pos: -35.5,-25.5 parent: 1668 - - uid: 3551 + - uid: 7481 components: - type: Transform - pos: -14.5,-0.5 + pos: -31.5,-27.5 parent: 1668 - - uid: 3552 + - uid: 7482 components: - type: Transform - pos: -15.5,-0.5 + pos: -31.5,-25.5 parent: 1668 - - uid: 3553 + - uid: 8800 components: - type: Transform - pos: -16.5,-0.5 + pos: -10.5,-11.5 parent: 1668 - - uid: 3554 + - uid: 8801 components: - type: Transform - pos: -17.5,-0.5 + pos: -10.5,-10.5 parent: 1668 - - uid: 3555 + - uid: 8802 components: - type: Transform - pos: -18.5,-0.5 + pos: -10.5,-9.5 parent: 1668 - - uid: 3556 + - uid: 8803 components: - type: Transform - pos: -19.5,-0.5 + pos: -10.5,-8.5 parent: 1668 - - uid: 3557 + - uid: 8804 components: - type: Transform - pos: -20.5,0.5 + pos: -10.5,-7.5 parent: 1668 - - uid: 3558 + - uid: 8805 components: - type: Transform - pos: -19.5,0.5 + pos: -10.5,-6.5 parent: 1668 - - uid: 3559 + - uid: 8806 components: - type: Transform - pos: -21.5,0.5 + pos: -11.5,-7.5 parent: 1668 - - uid: 3560 + - uid: 8807 components: - type: Transform - pos: -21.5,1.5 + pos: -12.5,-7.5 parent: 1668 - - uid: 3561 + - uid: 8808 components: - type: Transform - pos: -21.5,2.5 + pos: -13.5,-7.5 parent: 1668 - - uid: 3562 + - uid: 8809 components: - type: Transform - pos: -21.5,3.5 + pos: -13.5,-9.5 parent: 1668 - - uid: 3563 + - uid: 8810 components: - type: Transform - pos: -21.5,4.5 + pos: -12.5,-9.5 parent: 1668 - - uid: 3564 + - uid: 8811 components: - type: Transform - pos: -21.5,5.5 + pos: -11.5,-9.5 parent: 1668 - - uid: 3565 + - uid: 8812 components: - type: Transform - pos: -20.5,5.5 + pos: -14.5,-7.5 parent: 1668 - - uid: 3566 + - uid: 8813 components: - type: Transform - pos: -19.5,5.5 + pos: -14.5,-9.5 parent: 1668 - - uid: 3567 + - uid: 8814 components: - type: Transform - pos: -18.5,5.5 + pos: -13.5,-8.5 parent: 1668 - - uid: 3568 + - uid: 9137 components: - type: Transform - pos: -17.5,5.5 + pos: 22.5,-28.5 parent: 1668 - - uid: 3569 + - uid: 9138 components: - type: Transform - pos: -16.5,5.5 + pos: 22.5,-29.5 parent: 1668 - - uid: 3570 + - uid: 9139 components: - type: Transform - pos: -15.5,5.5 + pos: 22.5,-30.5 parent: 1668 - - uid: 3571 + - uid: 9140 components: - type: Transform - pos: -15.5,6.5 + pos: 22.5,-31.5 parent: 1668 - - uid: 3574 + - uid: 9141 components: - type: Transform - pos: -15.5,4.5 + pos: 22.5,-32.5 parent: 1668 - - uid: 3950 + - uid: 9142 components: - type: Transform - pos: -22.5,0.5 + pos: 22.5,-33.5 parent: 1668 - - uid: 3951 + - uid: 9143 components: - type: Transform - pos: -23.5,0.5 + pos: 21.5,-32.5 parent: 1668 - - uid: 3952 + - uid: 9144 components: - type: Transform - pos: -24.5,0.5 + pos: 20.5,-32.5 parent: 1668 - - uid: 3953 + - uid: 9249 components: - type: Transform - pos: -25.5,0.5 + pos: -34.5,14.5 parent: 1668 - - uid: 3954 + - uid: 9250 components: - type: Transform - pos: -26.5,0.5 + pos: -34.5,13.5 parent: 1668 - - uid: 3955 + - uid: 9251 components: - type: Transform - pos: -27.5,0.5 + pos: -34.5,12.5 parent: 1668 - - uid: 3956 + - uid: 9252 components: - type: Transform - pos: -28.5,0.5 + pos: -34.5,11.5 parent: 1668 - - uid: 3957 + - uid: 9253 components: - type: Transform - pos: -29.5,0.5 + pos: -34.5,10.5 parent: 1668 - - uid: 3958 + - uid: 9254 components: - type: Transform - pos: -30.5,0.5 + pos: -34.5,8.5 parent: 1668 - - uid: 3959 + - uid: 9255 components: - type: Transform - pos: -30.5,1.5 + pos: -35.5,11.5 parent: 1668 - - uid: 3960 + - uid: 9256 components: - type: Transform - pos: -30.5,2.5 + pos: -36.5,11.5 parent: 1668 - - uid: 3961 + - uid: 9257 components: - type: Transform - pos: -30.5,3.5 + pos: -37.5,11.5 parent: 1668 - - uid: 3962 + - uid: 9258 components: - type: Transform - pos: -30.5,4.5 + pos: -33.5,11.5 parent: 1668 - - uid: 3963 + - uid: 9259 components: - type: Transform - pos: -29.5,4.5 + pos: -32.5,11.5 parent: 1668 - - uid: 3964 + - uid: 9260 components: - type: Transform - pos: -28.5,4.5 + pos: -31.5,11.5 parent: 1668 - - uid: 3965 + - uid: 9261 components: - type: Transform - pos: -27.5,4.5 + pos: -30.5,11.5 parent: 1668 - - uid: 3966 + - uid: 9262 components: - type: Transform - pos: -27.5,5.5 + pos: -34.5,7.5 parent: 1668 - - uid: 3967 + - uid: 9263 components: - type: Transform - pos: -27.5,6.5 + pos: -34.5,6.5 parent: 1668 - - uid: 4359 + - uid: 9264 components: - type: Transform - pos: 22.5,-16.5 + pos: -34.5,5.5 parent: 1668 - - uid: 4360 + - uid: 9265 components: - type: Transform - pos: 22.5,-15.5 + pos: -34.5,4.5 parent: 1668 - - uid: 4577 + - uid: 9266 components: - type: Transform - pos: 24.5,-25.5 + pos: -34.5,3.5 parent: 1668 - - uid: 4580 + - uid: 9267 components: - type: Transform - pos: 19.5,-25.5 + pos: -33.5,5.5 parent: 1668 - - uid: 4634 + - uid: 9268 components: - type: Transform - pos: 27.5,-27.5 + pos: -32.5,5.5 parent: 1668 - - uid: 4667 + - uid: 9269 components: - type: Transform - pos: 5.5,-28.5 + pos: -31.5,5.5 parent: 1668 - - uid: 4668 + - uid: 9270 components: - type: Transform - pos: 5.5,-27.5 + pos: -30.5,5.5 parent: 1668 - - uid: 4669 + - uid: 9271 components: - type: Transform - pos: 5.5,-29.5 + pos: -29.5,5.5 parent: 1668 - - uid: 4764 + - uid: 9272 components: - type: Transform - pos: 17.5,-17.5 + pos: -23.5,5.5 parent: 1668 - - uid: 4765 + - uid: 9273 components: - type: Transform - pos: 16.5,-17.5 + pos: -24.5,5.5 parent: 1668 - - uid: 4766 + - uid: 9274 components: - type: Transform - pos: 16.5,-18.5 + pos: -35.5,5.5 parent: 1668 - - uid: 4767 + - uid: 9275 components: - type: Transform - pos: 16.5,-19.5 + pos: -36.5,5.5 parent: 1668 - - uid: 4768 + - uid: 9276 components: - type: Transform - pos: 16.5,-20.5 + pos: -37.5,5.5 parent: 1668 - - uid: 4769 + - uid: 9277 components: - type: Transform - pos: 17.5,-20.5 + pos: -38.5,5.5 parent: 1668 - - uid: 4770 + - uid: 9278 components: - type: Transform - pos: 18.5,-20.5 + pos: -39.5,5.5 parent: 1668 - - uid: 4771 + - uid: 9279 components: - type: Transform - pos: 19.5,-20.5 + pos: -39.5,4.5 parent: 1668 - - uid: 4772 +- proto: CableApcStack + entities: + - uid: 6776 components: - type: Transform - pos: 20.5,-20.5 - parent: 1668 - - uid: 4773 + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6799 components: - type: Transform - pos: 20.5,-19.5 - parent: 1668 - - uid: 4774 + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableHV + entities: + - uid: 3198 components: - type: Transform - pos: 20.5,-18.5 + pos: -13.5,15.5 parent: 1668 - - uid: 4775 + - uid: 3199 components: - type: Transform - pos: 20.5,-17.5 + pos: -12.5,15.5 parent: 1668 - - uid: 4776 + - uid: 3201 components: - type: Transform - pos: 20.5,-16.5 + pos: -14.5,18.5 parent: 1668 - - uid: 4777 + - uid: 3202 components: - type: Transform - pos: 20.5,-15.5 + pos: -14.5,17.5 parent: 1668 - - uid: 4778 + - uid: 3203 components: - type: Transform - pos: 20.5,-14.5 + pos: -14.5,19.5 parent: 1668 - - uid: 4779 + - uid: 3204 components: - type: Transform - pos: 16.5,-21.5 + pos: -13.5,17.5 parent: 1668 - - uid: 4780 + - uid: 3205 components: - type: Transform - pos: 16.5,-22.5 + pos: -13.5,18.5 parent: 1668 - - uid: 4781 + - uid: 3206 components: - type: Transform - pos: 16.5,-23.5 + pos: -11.5,19.5 parent: 1668 - - uid: 4782 + - uid: 3207 components: - type: Transform - pos: 16.5,-24.5 + pos: -13.5,19.5 parent: 1668 - - uid: 4783 + - uid: 3208 components: - type: Transform - pos: 16.5,-25.5 + pos: -11.5,17.5 parent: 1668 - - uid: 4784 + - uid: 3210 components: - type: Transform - pos: 15.5,-25.5 + pos: -12.5,17.5 parent: 1668 - - uid: 4785 + - uid: 3213 components: - type: Transform - pos: 14.5,-25.5 + pos: -12.5,19.5 parent: 1668 - - uid: 4786 + - uid: 3214 components: - type: Transform - pos: 13.5,-25.5 + pos: -11.5,18.5 parent: 1668 - - uid: 4787 + - uid: 3215 components: - type: Transform - pos: 12.5,-25.5 + pos: -12.5,18.5 parent: 1668 - - uid: 4788 + - uid: 3218 components: - type: Transform - pos: 12.5,-24.5 + pos: -11.5,16.5 parent: 1668 - - uid: 4789 + - uid: 3219 components: - type: Transform - pos: 12.5,-23.5 + pos: -11.5,15.5 parent: 1668 - - uid: 4790 + - uid: 3735 components: - type: Transform - pos: 12.5,-22.5 + pos: -10.5,18.5 parent: 1668 - - uid: 4791 + - uid: 3736 components: - type: Transform - pos: 12.5,-21.5 + pos: -9.5,18.5 parent: 1668 - - uid: 4792 + - uid: 3737 components: - type: Transform - pos: 12.5,-20.5 + pos: -9.5,17.5 parent: 1668 - - uid: 4793 + - uid: 3738 components: - type: Transform - pos: 12.5,-19.5 + pos: -9.5,16.5 parent: 1668 - - uid: 4794 + - uid: 3739 components: - type: Transform - pos: 12.5,-18.5 + pos: -9.5,15.5 parent: 1668 - - uid: 4795 + - uid: 3740 components: - type: Transform - pos: 11.5,-18.5 + pos: -9.5,14.5 parent: 1668 - - uid: 4796 + - uid: 3741 components: - type: Transform - pos: 10.5,-18.5 + pos: -9.5,13.5 parent: 1668 - - uid: 4797 + - uid: 3742 components: - type: Transform - pos: 9.5,-18.5 + pos: -9.5,12.5 parent: 1668 - - uid: 4798 + - uid: 3743 components: - type: Transform - pos: 8.5,-18.5 + pos: -9.5,11.5 parent: 1668 - - uid: 4799 + - uid: 3744 components: - type: Transform - pos: 7.5,-18.5 + pos: -9.5,10.5 parent: 1668 - - uid: 4800 + - uid: 3745 components: - type: Transform - pos: 6.5,-18.5 + pos: -8.5,10.5 parent: 1668 - - uid: 4801 + - uid: 3746 components: - type: Transform - pos: 5.5,-18.5 + pos: -7.5,10.5 parent: 1668 - - uid: 4802 + - uid: 3747 components: - type: Transform - pos: 4.5,-18.5 + pos: -6.5,10.5 parent: 1668 - - uid: 4803 + - uid: 3748 components: - type: Transform - pos: 3.5,-18.5 + pos: -5.5,10.5 parent: 1668 - - uid: 4804 + - uid: 3749 components: - type: Transform - pos: 2.5,-18.5 + pos: -5.5,11.5 parent: 1668 - - uid: 4805 + - uid: 3750 components: - type: Transform - pos: 1.5,-18.5 + pos: -5.5,12.5 parent: 1668 - - uid: 4806 + - uid: 3751 components: - type: Transform - pos: 0.5,-18.5 + pos: -5.5,13.5 parent: 1668 - - uid: 4808 + - uid: 3752 components: - type: Transform - pos: -0.5,-17.5 + pos: -5.5,14.5 parent: 1668 - - uid: 4809 + - uid: 3753 components: - type: Transform - pos: -0.5,-16.5 + pos: -5.5,15.5 parent: 1668 - - uid: 4810 + - uid: 3754 components: - type: Transform - pos: -0.5,-15.5 + pos: -4.5,15.5 parent: 1668 - - uid: 4811 + - uid: 3755 components: - type: Transform - pos: -0.5,-14.5 + pos: -3.5,15.5 parent: 1668 - - uid: 4812 + - uid: 3756 components: - type: Transform - pos: -0.5,-13.5 + pos: -2.5,15.5 parent: 1668 - - uid: 4813 + - uid: 3757 components: - type: Transform - pos: -0.5,-12.5 + pos: -1.5,15.5 parent: 1668 - - uid: 4814 + - uid: 3758 components: - type: Transform - pos: 15.5,-17.5 + pos: -0.5,15.5 parent: 1668 - - uid: 4856 + - uid: 3759 components: - type: Transform - pos: 0.5,-17.5 + pos: 0.5,15.5 parent: 1668 - - uid: 4972 + - uid: 3760 components: - type: Transform - pos: 15.5,-21.5 + pos: 1.5,15.5 parent: 1668 - - uid: 4974 + - uid: 3761 components: - type: Transform - pos: 18.5,-17.5 + pos: 2.5,15.5 parent: 1668 - - uid: 4975 + - uid: 3762 components: - type: Transform - pos: 19.5,-17.5 + pos: 3.5,15.5 parent: 1668 - - uid: 5071 + - uid: 3763 components: - type: Transform - pos: 22.5,-17.5 + pos: 4.5,15.5 parent: 1668 - - uid: 5072 + - uid: 3764 components: - type: Transform - pos: 23.5,-15.5 + pos: 5.5,15.5 parent: 1668 - - uid: 5073 + - uid: 3765 components: - type: Transform - pos: 23.5,-16.5 + pos: 6.5,15.5 parent: 1668 - - uid: 5074 + - uid: 3766 components: - type: Transform - pos: 23.5,-17.5 + pos: 7.5,15.5 parent: 1668 - - uid: 5081 + - uid: 3767 components: - type: Transform - pos: 21.5,-16.5 + pos: 8.5,15.5 parent: 1668 - - uid: 5082 + - uid: 3768 components: - type: Transform - pos: 21.5,-17.5 + pos: 9.5,15.5 parent: 1668 - - uid: 5083 + - uid: 3769 components: - type: Transform - pos: 21.5,-15.5 + pos: 10.5,15.5 parent: 1668 - - uid: 5084 + - uid: 3770 components: - type: Transform - pos: 24.5,-16.5 + pos: 11.5,15.5 parent: 1668 - - uid: 5085 + - uid: 3771 components: - type: Transform - pos: 25.5,-16.5 + pos: 12.5,15.5 parent: 1668 - - uid: 5086 + - uid: 3772 components: - type: Transform - pos: 26.5,-16.5 + pos: 13.5,15.5 parent: 1668 - - uid: 5087 + - uid: 3773 components: - type: Transform - pos: 27.5,-16.5 + pos: 14.5,15.5 parent: 1668 - - uid: 5088 + - uid: 3774 components: - type: Transform - pos: 28.5,-16.5 + pos: 16.5,15.5 parent: 1668 - - uid: 5089 + - uid: 3775 components: - type: Transform - pos: 29.5,-16.5 + pos: 17.5,15.5 parent: 1668 - - uid: 5090 + - uid: 3776 components: - type: Transform - pos: 30.5,-16.5 + pos: 18.5,15.5 parent: 1668 - - uid: 5091 + - uid: 3777 components: - type: Transform - pos: 31.5,-16.5 + pos: 19.5,15.5 parent: 1668 - - uid: 5092 + - uid: 3778 components: - type: Transform - pos: 32.5,-16.5 + pos: 15.5,15.5 parent: 1668 - - uid: 5093 + - uid: 3779 components: - type: Transform - pos: 32.5,-17.5 + pos: 19.5,16.5 parent: 1668 - - uid: 5094 + - uid: 3780 components: - type: Transform - pos: 32.5,-18.5 + pos: 19.5,17.5 parent: 1668 - - uid: 5095 + - uid: 3781 components: - type: Transform - pos: 32.5,-19.5 + pos: 19.5,18.5 parent: 1668 - - uid: 5096 + - uid: 3782 components: - type: Transform - pos: 32.5,-20.5 + pos: 19.5,21.5 parent: 1668 - - uid: 5097 + - uid: 3783 components: - type: Transform - pos: 32.5,-21.5 + pos: 19.5,20.5 parent: 1668 - - uid: 5098 + - uid: 3784 components: - type: Transform - pos: 32.5,-22.5 + pos: 19.5,22.5 parent: 1668 - - uid: 5099 + - uid: 3785 components: - type: Transform - pos: 32.5,-23.5 + pos: 19.5,23.5 parent: 1668 - - uid: 5100 + - uid: 3786 components: - type: Transform - pos: 32.5,-24.5 + pos: 19.5,24.5 parent: 1668 - - uid: 5101 + - uid: 3787 components: - type: Transform - pos: 32.5,-25.5 + pos: 19.5,25.5 parent: 1668 - - uid: 5185 + - uid: 3788 components: - type: Transform - pos: 31.5,-25.5 + pos: 19.5,26.5 parent: 1668 - - uid: 5186 + - uid: 3789 components: - type: Transform - pos: 30.5,-25.5 + pos: 19.5,27.5 parent: 1668 - - uid: 5187 + - uid: 3790 components: - type: Transform - pos: 33.5,-25.5 + pos: 19.5,28.5 parent: 1668 - - uid: 5188 + - uid: 3791 components: - type: Transform - pos: 34.5,-25.5 + pos: 19.5,19.5 parent: 1668 - - uid: 5189 + - uid: 3792 components: - type: Transform - pos: 34.5,-23.5 + pos: 18.5,28.5 parent: 1668 - - uid: 5190 + - uid: 4858 components: - type: Transform - pos: 33.5,-23.5 + pos: -0.5,14.5 parent: 1668 - - uid: 5191 + - uid: 4859 components: - type: Transform - pos: 31.5,-23.5 + pos: -0.5,13.5 parent: 1668 - - uid: 5192 + - uid: 4860 components: - type: Transform - pos: 30.5,-23.5 + pos: -0.5,12.5 parent: 1668 - - uid: 5193 + - uid: 4861 components: - type: Transform - pos: 31.5,-21.5 + pos: -0.5,11.5 parent: 1668 - - uid: 5194 + - uid: 4862 components: - type: Transform - pos: 30.5,-21.5 + pos: -0.5,9.5 parent: 1668 - - uid: 5195 + - uid: 4863 components: - type: Transform - pos: 33.5,-21.5 + pos: -0.5,10.5 parent: 1668 - - uid: 5196 + - uid: 4864 components: - type: Transform - pos: 34.5,-21.5 + pos: -0.5,7.5 parent: 1668 - - uid: 5341 + - uid: 4865 components: - type: Transform - pos: 27.5,-26.5 + pos: -0.5,6.5 parent: 1668 - - uid: 5342 + - uid: 4866 components: - type: Transform - pos: 20.5,-25.5 + pos: -0.5,8.5 parent: 1668 - - uid: 5343 + - uid: 4867 components: - type: Transform - pos: 23.5,-25.5 + pos: -0.5,4.5 parent: 1668 - - uid: 5370 + - uid: 4868 components: - type: Transform - pos: 22.5,-25.5 + pos: -0.5,5.5 parent: 1668 - - uid: 5393 + - uid: 4869 components: - type: Transform - pos: 27.5,-25.5 + pos: 0.5,4.5 parent: 1668 - - uid: 5807 + - uid: 4870 components: - type: Transform - pos: -3.5,-27.5 + pos: 1.5,4.5 parent: 1668 - - uid: 5808 + - uid: 4871 components: - type: Transform - pos: 1.5,-27.5 + pos: 2.5,4.5 parent: 1668 - - uid: 5809 + - uid: 4872 components: - type: Transform - pos: 2.5,-27.5 + pos: 3.5,4.5 parent: 1668 - - uid: 5810 + - uid: 4873 components: - type: Transform - pos: 3.5,-27.5 + pos: 4.5,4.5 parent: 1668 - - uid: 5811 + - uid: 4874 components: - type: Transform - pos: 4.5,-27.5 + pos: 5.5,4.5 parent: 1668 - - uid: 5812 + - uid: 4875 components: - type: Transform - pos: -1.5,-27.5 + pos: 5.5,3.5 parent: 1668 - - uid: 5813 + - uid: 4876 components: - type: Transform - pos: -2.5,-27.5 + pos: 5.5,2.5 parent: 1668 - - uid: 6006 + - uid: 4877 components: - type: Transform - pos: 12.5,-26.5 + pos: 5.5,1.5 parent: 1668 - - uid: 6007 + - uid: 4878 components: - type: Transform - pos: 12.5,-27.5 + pos: 5.5,0.5 parent: 1668 - - uid: 6008 + - uid: 4879 components: - type: Transform - pos: 12.5,-28.5 + pos: 5.5,-0.5 parent: 1668 - - uid: 6009 + - uid: 4880 components: - type: Transform - pos: 12.5,-29.5 + pos: 5.5,-2.5 parent: 1668 - - uid: 6010 + - uid: 4881 components: - type: Transform - pos: 12.5,-30.5 + pos: 5.5,-1.5 parent: 1668 - - uid: 6011 + - uid: 4882 components: - type: Transform - pos: 12.5,-31.5 + pos: 5.5,-4.5 parent: 1668 - - uid: 6012 + - uid: 4883 components: - type: Transform - pos: 11.5,-31.5 + pos: 5.5,-5.5 parent: 1668 - - uid: 6013 + - uid: 4884 components: - type: Transform - pos: 10.5,-31.5 + pos: 5.5,-3.5 parent: 1668 - - uid: 6014 + - uid: 4885 components: - type: Transform - pos: 9.5,-31.5 + pos: 4.5,-5.5 parent: 1668 - - uid: 6015 + - uid: 4886 components: - type: Transform - pos: 8.5,-31.5 + pos: 3.5,-5.5 parent: 1668 - - uid: 6016 + - uid: 4887 components: - type: Transform - pos: 7.5,-31.5 + pos: 2.5,-5.5 parent: 1668 - - uid: 6017 + - uid: 4888 components: - type: Transform - pos: 6.5,-31.5 + pos: 1.5,-5.5 parent: 1668 - - uid: 6018 + - uid: 4889 components: - type: Transform - pos: 5.5,-31.5 + pos: 0.5,-5.5 parent: 1668 - - uid: 6019 + - uid: 4890 components: - type: Transform - pos: -6.5,-28.5 + pos: -0.5,-5.5 parent: 1668 - - uid: 6020 + - uid: 4891 components: - type: Transform - pos: -6.5,-27.5 + pos: -2.5,-5.5 parent: 1668 - - uid: 6021 + - uid: 4892 components: - type: Transform - pos: -5.5,-27.5 + pos: -3.5,-5.5 parent: 1668 - - uid: 6022 + - uid: 4893 components: - type: Transform - pos: -0.5,-27.5 + pos: -4.5,-5.5 parent: 1668 - - uid: 6023 + - uid: 4894 components: - type: Transform - pos: 5.5,-30.5 + pos: -5.5,-5.5 parent: 1668 - - uid: 6026 + - uid: 4895 components: - type: Transform - pos: 0.5,-27.5 + pos: -6.5,-5.5 parent: 1668 - - uid: 6027 + - uid: 4896 components: - type: Transform - pos: -4.5,-27.5 + pos: -1.5,-5.5 parent: 1668 - - uid: 6028 + - uid: 4897 components: - type: Transform - pos: -6.5,-30.5 + pos: -6.5,-4.5 parent: 1668 - - uid: 6029 + - uid: 4898 components: - type: Transform - pos: -6.5,-29.5 + pos: -6.5,-3.5 parent: 1668 - - uid: 6030 + - uid: 4899 components: - type: Transform - pos: -6.5,-31.5 + pos: -6.5,-2.5 parent: 1668 - - uid: 6031 + - uid: 4900 components: - type: Transform - pos: -7.5,-31.5 + pos: -6.5,-1.5 parent: 1668 - - uid: 6032 + - uid: 4901 components: - type: Transform - pos: -8.5,-31.5 + pos: -6.5,-0.5 parent: 1668 - - uid: 6033 + - uid: 4902 components: - type: Transform - pos: -9.5,-31.5 + pos: -6.5,0.5 parent: 1668 - - uid: 6034 + - uid: 4903 components: - type: Transform - pos: -10.5,-31.5 + pos: -6.5,1.5 parent: 1668 - - uid: 6035 + - uid: 4904 components: - type: Transform - pos: -11.5,-31.5 + pos: -6.5,2.5 parent: 1668 - - uid: 6036 + - uid: 4905 components: - type: Transform - pos: -12.5,-31.5 + pos: -6.5,3.5 parent: 1668 - - uid: 6037 + - uid: 4906 components: - type: Transform - pos: -13.5,-31.5 + pos: -6.5,4.5 parent: 1668 - - uid: 6038 + - uid: 4907 components: - type: Transform - pos: -14.5,-31.5 + pos: -5.5,4.5 parent: 1668 - - uid: 6039 + - uid: 4908 components: - type: Transform - pos: -14.5,-30.5 + pos: -4.5,4.5 parent: 1668 - - uid: 6040 + - uid: 4909 components: - type: Transform - pos: -14.5,-29.5 + pos: -3.5,4.5 parent: 1668 - - uid: 6041 + - uid: 4910 components: - type: Transform - pos: -14.5,-28.5 + pos: -2.5,4.5 parent: 1668 - - uid: 6042 + - uid: 4911 components: - type: Transform - pos: -14.5,-27.5 + pos: -1.5,4.5 parent: 1668 - - uid: 6043 + - uid: 4912 components: - type: Transform - pos: -14.5,-26.5 + pos: -0.5,-6.5 parent: 1668 - - uid: 6044 + - uid: 4913 components: - type: Transform - pos: -14.5,-25.5 + pos: -0.5,-7.5 parent: 1668 - - uid: 6045 + - uid: 4914 components: - type: Transform - pos: -15.5,-25.5 + pos: -0.5,-8.5 parent: 1668 - - uid: 6046 + - uid: 4915 components: - type: Transform - pos: -16.5,-25.5 + pos: -0.5,-10.5 parent: 1668 - - uid: 6047 + - uid: 4916 components: - type: Transform - pos: -17.5,-25.5 + pos: -0.5,-9.5 parent: 1668 - - uid: 6048 + - uid: 4917 components: - type: Transform - pos: -18.5,-25.5 + pos: -0.5,-12.5 parent: 1668 - - uid: 6049 + - uid: 4918 components: - type: Transform - pos: -18.5,-26.5 + pos: -0.5,-13.5 parent: 1668 - - uid: 6050 + - uid: 4919 components: - type: Transform - pos: -18.5,-27.5 + pos: -0.5,-11.5 parent: 1668 - - uid: 6051 + - uid: 4920 components: - type: Transform - pos: -18.5,-28.5 + pos: -0.5,-15.5 parent: 1668 - - uid: 6052 + - uid: 4921 components: - type: Transform - pos: -18.5,-29.5 + pos: -0.5,-16.5 parent: 1668 - - uid: 6053 + - uid: 4922 components: - type: Transform - pos: -17.5,-29.5 + pos: -0.5,-17.5 parent: 1668 - - uid: 6054 + - uid: 4923 components: - type: Transform - pos: -16.5,-29.5 + pos: -0.5,-18.5 parent: 1668 - - uid: 6166 + - uid: 4924 components: - type: Transform - pos: -6.5,-32.5 + pos: -0.5,-19.5 parent: 1668 - - uid: 6167 + - uid: 4925 components: - type: Transform - pos: -5.5,-32.5 + pos: -0.5,-20.5 parent: 1668 - - uid: 6168 + - uid: 4926 components: - type: Transform - pos: -4.5,-32.5 + pos: -0.5,-21.5 parent: 1668 - - uid: 6169 + - uid: 4927 components: - type: Transform - pos: -3.5,-32.5 + pos: -0.5,-22.5 parent: 1668 - - uid: 6170 + - uid: 4928 components: - type: Transform - pos: -2.5,-32.5 + pos: -0.5,-23.5 parent: 1668 - - uid: 6171 + - uid: 4929 components: - type: Transform - pos: -2.5,-33.5 + pos: -0.5,-24.5 parent: 1668 - - uid: 6172 + - uid: 4930 components: - type: Transform - pos: -2.5,-31.5 + pos: -0.5,-25.5 parent: 1668 - - uid: 6173 + - uid: 4931 components: - type: Transform - pos: 5.5,-32.5 + pos: -0.5,-26.5 parent: 1668 - - uid: 6174 + - uid: 4932 components: - type: Transform - pos: 4.5,-32.5 + pos: -0.5,-14.5 parent: 1668 - - uid: 6175 + - uid: 4933 components: - type: Transform - pos: 3.5,-32.5 + pos: 0.5,-26.5 parent: 1668 - - uid: 6176 + - uid: 4934 components: - type: Transform - pos: 2.5,-32.5 + pos: 1.5,-26.5 parent: 1668 - - uid: 6177 + - uid: 4935 components: - type: Transform - pos: 1.5,-32.5 + pos: 2.5,-26.5 parent: 1668 - - uid: 6178 + - uid: 4936 components: - type: Transform - pos: 1.5,-33.5 + pos: 3.5,-26.5 parent: 1668 - - uid: 6179 + - uid: 4937 components: - type: Transform - pos: 1.5,-31.5 + pos: 4.5,-26.5 parent: 1668 - - uid: 6253 + - uid: 4938 components: - type: Transform - pos: -3.5,-33.5 + pos: 5.5,-26.5 parent: 1668 - - uid: 6254 + - uid: 4939 components: - type: Transform - pos: -3.5,-34.5 + pos: 6.5,-26.5 parent: 1668 - - uid: 6255 + - uid: 4940 components: - type: Transform - pos: -3.5,-35.5 + pos: 7.5,-26.5 parent: 1668 - - uid: 6256 + - uid: 4941 components: - type: Transform - pos: -2.5,-35.5 + pos: 8.5,-26.5 parent: 1668 - - uid: 6257 + - uid: 4942 components: - type: Transform - pos: -1.5,-35.5 + pos: 9.5,-26.5 parent: 1668 - - uid: 6258 + - uid: 4943 components: - type: Transform - pos: -0.5,-35.5 + pos: 11.5,-26.5 parent: 1668 - - uid: 6259 + - uid: 4944 components: - type: Transform - pos: 0.5,-35.5 + pos: 12.5,-26.5 parent: 1668 - - uid: 6260 + - uid: 4945 components: - type: Transform - pos: 1.5,-35.5 + pos: 10.5,-26.5 parent: 1668 - - uid: 6261 + - uid: 4946 components: - type: Transform - pos: 2.5,-35.5 + pos: 12.5,-27.5 parent: 1668 - - uid: 6262 + - uid: 4947 components: - type: Transform - pos: 2.5,-34.5 + pos: 12.5,-28.5 parent: 1668 - - uid: 6263 + - uid: 4948 components: - type: Transform - pos: 2.5,-33.5 + pos: 12.5,-29.5 parent: 1668 - - uid: 6264 + - uid: 4949 components: - type: Transform - pos: -0.5,-34.5 + pos: 12.5,-30.5 parent: 1668 - - uid: 6265 + - uid: 4950 components: - type: Transform - pos: 0.5,-34.5 + pos: 12.5,-31.5 parent: 1668 - - uid: 6266 + - uid: 4951 components: - type: Transform - pos: -1.5,-34.5 + pos: 12.5,-32.5 parent: 1668 - - uid: 6594 + - uid: 4952 components: - type: Transform - pos: 27.5,-29.5 + pos: 12.5,-33.5 parent: 1668 - - uid: 6631 + - uid: 4953 components: - type: Transform - pos: 27.5,-28.5 + pos: 12.5,-34.5 parent: 1668 - - uid: 6773 + - uid: 4954 components: - type: Transform - pos: 17.5,-25.5 + pos: 12.5,-35.5 parent: 1668 - - uid: 6777 + - uid: 4955 components: - type: Transform - pos: 27.5,-30.5 + pos: 12.5,-36.5 parent: 1668 - - uid: 6786 + - uid: 4956 components: - type: Transform - pos: 21.5,-25.5 + pos: 13.5,-36.5 parent: 1668 -- proto: CableMV - entities: - - uid: 1146 + - uid: 4957 components: - type: Transform - pos: 15.5,-13.5 + pos: 14.5,-36.5 parent: 1668 - - uid: 1147 + - uid: 4958 components: - type: Transform - pos: 16.5,-13.5 + pos: 15.5,-36.5 parent: 1668 - - uid: 1148 + - uid: 4959 components: - type: Transform - pos: 17.5,-13.5 + pos: 16.5,-36.5 parent: 1668 - - uid: 1149 + - uid: 4960 components: - type: Transform - pos: 17.5,-12.5 + pos: 16.5,-37.5 parent: 1668 - - uid: 1150 + - uid: 4961 components: - type: Transform - pos: 17.5,-11.5 + pos: 16.5,-38.5 parent: 1668 - - uid: 1151 + - uid: 4962 components: - type: Transform - pos: 18.5,-11.5 + pos: 16.5,-39.5 parent: 1668 - - uid: 1153 + - uid: 4963 components: - type: Transform - pos: 19.5,-11.5 + pos: 16.5,-40.5 parent: 1668 - - uid: 1154 + - uid: 4964 components: - type: Transform - pos: 21.5,-11.5 + pos: 16.5,-41.5 parent: 1668 - - uid: 1155 + - uid: 4965 components: - type: Transform - pos: 22.5,-11.5 + pos: 16.5,-42.5 parent: 1668 - - uid: 1156 + - uid: 4966 components: - type: Transform - pos: 23.5,-11.5 + pos: 16.5,-43.5 parent: 1668 - - uid: 1157 + - uid: 4967 components: - type: Transform - pos: 23.5,-10.5 + pos: 16.5,-44.5 parent: 1668 - - uid: 1158 + - uid: 4968 components: - type: Transform - pos: 17.5,-10.5 + pos: 16.5,-45.5 parent: 1668 - - uid: 1159 + - uid: 4969 components: - type: Transform - pos: 17.5,-9.5 + pos: 15.5,-45.5 parent: 1668 - - uid: 1160 + - uid: 4970 components: - type: Transform - pos: 17.5,-8.5 + pos: 14.5,-45.5 parent: 1668 - - uid: 1161 + - uid: 4971 components: - type: Transform - pos: 17.5,-7.5 + pos: 14.5,-46.5 parent: 1668 - - uid: 1162 + - uid: 4972 components: - type: Transform - pos: 17.5,-6.5 + pos: 14.5,-46.5 parent: 1668 - - uid: 1163 + - uid: 4973 components: - type: Transform - pos: 18.5,-6.5 + pos: 14.5,-47.5 parent: 1668 - - uid: 1164 + - uid: 4974 components: - type: Transform - pos: 19.5,-6.5 + pos: 14.5,-48.5 parent: 1668 - - uid: 1165 + - uid: 4975 components: - type: Transform - pos: 20.5,-6.5 + pos: 13.5,-48.5 parent: 1668 - - uid: 1166 + - uid: 4976 components: - type: Transform - pos: 20.5,-7.5 + pos: 12.5,-48.5 parent: 1668 - - uid: 1167 + - uid: 4977 components: - type: Transform - pos: 16.5,-6.5 + pos: 11.5,-48.5 parent: 1668 - - uid: 1168 + - uid: 4978 components: - type: Transform - pos: 15.5,-6.5 + pos: 10.5,-48.5 parent: 1668 - - uid: 1169 + - uid: 4979 components: - type: Transform - pos: 13.5,-6.5 + pos: 9.5,-48.5 parent: 1668 - - uid: 1170 + - uid: 4980 components: - type: Transform - pos: 14.5,-6.5 + pos: 8.5,-48.5 parent: 1668 - - uid: 1171 + - uid: 4981 components: - type: Transform - pos: 12.5,-6.5 + pos: 7.5,-48.5 parent: 1668 - - uid: 1172 + - uid: 4982 components: - type: Transform - pos: 11.5,-6.5 + pos: 6.5,-48.5 parent: 1668 - - uid: 1173 + - uid: 4983 components: - type: Transform - pos: 10.5,-6.5 + pos: 5.5,-48.5 parent: 1668 - - uid: 1174 + - uid: 4984 components: - type: Transform - pos: 10.5,-5.5 + pos: 4.5,-48.5 parent: 1668 - - uid: 1175 + - uid: 4985 components: - type: Transform - pos: 10.5,-4.5 + pos: 3.5,-48.5 parent: 1668 - - uid: 1176 + - uid: 4986 components: - type: Transform - pos: 10.5,-3.5 + pos: 2.5,-48.5 parent: 1668 - - uid: 1182 + - uid: 4987 components: - type: Transform - pos: 19.5,-10.5 + pos: 2.5,-49.5 parent: 1668 - - uid: 1321 + - uid: 4988 components: - type: Transform - pos: -3.5,4.5 + pos: 1.5,-48.5 parent: 1668 - - uid: 1323 + - uid: 4989 components: - type: Transform - pos: 16.5,-11.5 + pos: 0.5,-48.5 parent: 1668 - - uid: 1324 + - uid: 4990 components: - type: Transform - pos: 15.5,-11.5 + pos: -0.5,-48.5 parent: 1668 - - uid: 1325 + - uid: 4991 components: - type: Transform - pos: 14.5,-11.5 + pos: -1.5,-48.5 parent: 1668 - - uid: 1326 + - uid: 4992 components: - type: Transform - pos: 13.5,-11.5 + pos: -2.5,-48.5 parent: 1668 - - uid: 1327 + - uid: 4993 components: - type: Transform - pos: 12.5,-11.5 + pos: -3.5,-48.5 parent: 1668 - - uid: 1328 + - uid: 4994 components: - type: Transform - pos: 12.5,-10.5 + pos: -4.5,-48.5 parent: 1668 - - uid: 1329 + - uid: 4995 components: - type: Transform - pos: 11.5,-11.5 + pos: -5.5,-48.5 parent: 1668 - - uid: 1330 + - uid: 4996 components: - type: Transform - pos: 10.5,-11.5 + pos: -6.5,-48.5 parent: 1668 - - uid: 1331 + - uid: 4997 components: - type: Transform - pos: 9.5,-11.5 + pos: -7.5,-48.5 parent: 1668 - - uid: 1332 + - uid: 4998 components: - type: Transform - pos: 8.5,-11.5 + pos: -8.5,-48.5 parent: 1668 - - uid: 1333 + - uid: 4999 components: - type: Transform - pos: 7.5,-11.5 + pos: -9.5,-48.5 parent: 1668 - - uid: 1334 + - uid: 5000 components: - type: Transform - pos: 6.5,-11.5 + pos: -10.5,-48.5 parent: 1668 - - uid: 1335 + - uid: 5001 components: - type: Transform - pos: 5.5,-11.5 + pos: -11.5,-48.5 parent: 1668 - - uid: 1336 + - uid: 5002 components: - type: Transform - pos: 4.5,-11.5 + pos: -12.5,-48.5 parent: 1668 - - uid: 1337 + - uid: 5003 components: - type: Transform - pos: 3.5,-11.5 + pos: -13.5,-48.5 parent: 1668 - - uid: 1338 + - uid: 5004 components: - type: Transform - pos: 3.5,-10.5 + pos: -14.5,-48.5 parent: 1668 - - uid: 1339 + - uid: 5005 components: - type: Transform - pos: 3.5,-9.5 + pos: -15.5,-48.5 parent: 1668 - - uid: 1340 + - uid: 5006 components: - type: Transform - pos: 3.5,-8.5 + pos: -15.5,-47.5 parent: 1668 - - uid: 1483 + - uid: 5007 components: - type: Transform - pos: 27.5,-31.5 + pos: -15.5,-46.5 parent: 1668 - - uid: 1486 + - uid: 5008 components: - type: Transform - pos: 28.5,-31.5 + pos: -15.5,-45.5 parent: 1668 - - uid: 1487 + - uid: 5009 components: - type: Transform - pos: 30.5,-31.5 + pos: -16.5,-45.5 parent: 1668 - - uid: 1658 + - uid: 5010 components: - type: Transform - pos: 31.5,-31.5 + pos: -17.5,-45.5 parent: 1668 - - uid: 1805 + - uid: 5011 components: - type: Transform - pos: -3.5,20.5 + pos: -17.5,-44.5 parent: 1668 - - uid: 1806 + - uid: 5012 components: - type: Transform - pos: -3.5,21.5 + pos: -17.5,-43.5 parent: 1668 - - uid: 1807 + - uid: 5013 components: - type: Transform - pos: -4.5,21.5 + pos: -17.5,-42.5 parent: 1668 - - uid: 1808 + - uid: 5014 components: - type: Transform - pos: -5.5,21.5 + pos: -17.5,-41.5 parent: 1668 - - uid: 1809 + - uid: 5015 components: - type: Transform - pos: -5.5,20.5 + pos: -17.5,-39.5 parent: 1668 - - uid: 1810 + - uid: 5016 components: - type: Transform - pos: -5.5,19.5 + pos: -17.5,-38.5 parent: 1668 - - uid: 1811 + - uid: 5017 components: - type: Transform - pos: -4.5,19.5 + pos: -17.5,-40.5 parent: 1668 - - uid: 1812 + - uid: 5018 components: - type: Transform - pos: -6.5,19.5 + pos: -17.5,-36.5 parent: 1668 - - uid: 1813 + - uid: 5019 components: - type: Transform - pos: -6.5,18.5 + pos: -17.5,-37.5 parent: 1668 - - uid: 1814 + - uid: 5020 components: - type: Transform - pos: -6.5,17.5 + pos: -16.5,-36.5 parent: 1668 - - uid: 1815 + - uid: 5021 components: - type: Transform - pos: -5.5,17.5 + pos: -15.5,-36.5 parent: 1668 - - uid: 1816 + - uid: 5022 components: - type: Transform - pos: -4.5,17.5 + pos: -14.5,-36.5 parent: 1668 - - uid: 1817 + - uid: 5023 components: - type: Transform - pos: -6.5,16.5 + pos: -13.5,-36.5 parent: 1668 - - uid: 1818 + - uid: 5024 components: - type: Transform - pos: -6.5,15.5 + pos: -13.5,-35.5 parent: 1668 - - uid: 1819 + - uid: 5025 components: - type: Transform - pos: -6.5,14.5 + pos: -13.5,-34.5 parent: 1668 - - uid: 1820 + - uid: 5026 components: - type: Transform - pos: -6.5,13.5 + pos: -13.5,-33.5 parent: 1668 - - uid: 1821 + - uid: 5027 components: - type: Transform - pos: -6.5,12.5 + pos: -13.5,-32.5 parent: 1668 - - uid: 1822 + - uid: 5028 components: - type: Transform - pos: -7.5,12.5 + pos: -13.5,-31.5 parent: 1668 - - uid: 1823 + - uid: 5029 components: - type: Transform - pos: -8.5,12.5 + pos: -13.5,-30.5 parent: 1668 - - uid: 1824 + - uid: 5030 components: - type: Transform - pos: -8.5,13.5 + pos: -13.5,-29.5 parent: 1668 - - uid: 1825 + - uid: 5031 components: - type: Transform - pos: -5.5,12.5 + pos: -13.5,-28.5 parent: 1668 - - uid: 1826 + - uid: 5032 components: - type: Transform - pos: -5.5,11.5 + pos: -13.5,-27.5 parent: 1668 - - uid: 1827 + - uid: 5033 components: - type: Transform - pos: -4.5,11.5 + pos: -13.5,-26.5 parent: 1668 - - uid: 1828 + - uid: 5034 components: - type: Transform - pos: -7.5,19.5 + pos: -12.5,-26.5 parent: 1668 - - uid: 1829 + - uid: 5035 components: - type: Transform - pos: -8.5,19.5 + pos: -11.5,-26.5 parent: 1668 - - uid: 1830 + - uid: 5036 components: - type: Transform - pos: -9.5,19.5 + pos: -10.5,-26.5 parent: 1668 - - uid: 1831 + - uid: 5037 components: - type: Transform - pos: -10.5,19.5 + pos: -9.5,-26.5 parent: 1668 - - uid: 1832 + - uid: 5038 components: - type: Transform - pos: -10.5,18.5 + pos: -8.5,-26.5 parent: 1668 - - uid: 1833 + - uid: 5039 components: - type: Transform - pos: -10.5,17.5 + pos: -7.5,-26.5 parent: 1668 - - uid: 1834 + - uid: 5040 components: - type: Transform - pos: -11.5,17.5 + pos: -6.5,-26.5 parent: 1668 - - uid: 1835 + - uid: 5041 components: - type: Transform - pos: -12.5,17.5 + pos: -5.5,-26.5 parent: 1668 - - uid: 1836 + - uid: 5042 components: - type: Transform - pos: -13.5,17.5 + pos: -3.5,-26.5 parent: 1668 - - uid: 1837 + - uid: 5043 components: - type: Transform - pos: -14.5,17.5 + pos: -2.5,-26.5 parent: 1668 - - uid: 1838 + - uid: 5044 components: - type: Transform - pos: -14.5,18.5 + pos: -4.5,-26.5 parent: 1668 - - uid: 1839 + - uid: 5045 components: - type: Transform - pos: 2.5,20.5 + pos: -1.5,-26.5 parent: 1668 - - uid: 1840 + - uid: 5727 components: - type: Transform - pos: 1.5,20.5 + pos: -1.5,-17.5 parent: 1668 - - uid: 1841 + - uid: 5728 components: - type: Transform - pos: 0.5,20.5 + pos: -2.5,-17.5 parent: 1668 - - uid: 1842 + - uid: 5729 components: - type: Transform - pos: -0.5,20.5 + pos: -3.5,-17.5 parent: 1668 - - uid: 1843 + - uid: 5730 components: - type: Transform - pos: -0.5,19.5 + pos: -4.5,-17.5 parent: 1668 - - uid: 1844 + - uid: 5731 components: - type: Transform - pos: -0.5,18.5 + pos: -5.5,-17.5 parent: 1668 - - uid: 1845 + - uid: 5732 components: - type: Transform - pos: -0.5,17.5 + pos: -5.5,-16.5 parent: 1668 - - uid: 1846 + - uid: 5930 components: - type: Transform - pos: -0.5,16.5 + pos: -7.5,-0.5 parent: 1668 - - uid: 1847 + - uid: 5931 components: - type: Transform - pos: -0.5,15.5 + pos: -8.5,-0.5 parent: 1668 - - uid: 1848 + - uid: 5932 components: - type: Transform - pos: -0.5,14.5 + pos: -9.5,-0.5 parent: 1668 - - uid: 1849 + - uid: 5933 components: - type: Transform - pos: -0.5,13.5 + pos: -10.5,-0.5 parent: 1668 - - uid: 1850 + - uid: 5934 components: - type: Transform - pos: -0.5,12.5 + pos: -11.5,-0.5 parent: 1668 - - uid: 1851 + - uid: 5935 components: - type: Transform - pos: -0.5,11.5 + pos: -12.5,-0.5 parent: 1668 - - uid: 1852 + - uid: 5936 components: - type: Transform - pos: -0.5,10.5 + pos: -14.5,-0.5 parent: 1668 - - uid: 1853 + - uid: 5937 components: - type: Transform - pos: -0.5,9.5 + pos: -15.5,-0.5 parent: 1668 - - uid: 1854 + - uid: 5938 components: - type: Transform - pos: -0.5,8.5 + pos: -16.5,-0.5 parent: 1668 - - uid: 1855 + - uid: 5939 components: - type: Transform - pos: -0.5,7.5 + pos: -17.5,-0.5 parent: 1668 - - uid: 1856 + - uid: 5940 components: - type: Transform - pos: -0.5,6.5 + pos: -13.5,-0.5 parent: 1668 - - uid: 1857 + - uid: 5941 components: - type: Transform - pos: -0.5,5.5 + pos: -19.5,-0.5 parent: 1668 - - uid: 1858 + - uid: 5942 components: - type: Transform - pos: -0.5,4.5 + pos: -20.5,-0.5 parent: 1668 - - uid: 1859 + - uid: 5943 components: - type: Transform - pos: -1.5,4.5 + pos: -18.5,-0.5 parent: 1668 - - uid: 1860 + - uid: 5944 components: - type: Transform - pos: -2.5,4.5 + pos: -20.5,0.5 parent: 1668 - - uid: 1862 + - uid: 5945 components: - type: Transform - pos: -2.5,3.5 + pos: -20.5,1.5 parent: 1668 - - uid: 1863 + - uid: 5946 components: - type: Transform - pos: -2.5,2.5 + pos: -20.5,2.5 parent: 1668 - - uid: 2014 + - uid: 5947 components: - type: Transform - pos: 0.5,16.5 + pos: -20.5,3.5 parent: 1668 - - uid: 2015 + - uid: 5948 components: - type: Transform - pos: 1.5,16.5 + pos: -20.5,4.5 parent: 1668 - - uid: 2016 + - uid: 5949 components: - type: Transform - pos: 1.5,17.5 + pos: -20.5,5.5 parent: 1668 - - uid: 2017 + - uid: 5950 components: - type: Transform - pos: -0.5,21.5 + pos: -20.5,6.5 parent: 1668 - - uid: 2018 + - uid: 5951 components: - type: Transform - pos: -1.5,21.5 + pos: -19.5,6.5 parent: 1668 - - uid: 2019 + - uid: 5952 components: - type: Transform - pos: -1.5,22.5 + pos: -17.5,6.5 parent: 1668 - - uid: 2056 + - uid: 5953 components: - type: Transform - pos: -3.5,5.5 + pos: -16.5,6.5 parent: 1668 - - uid: 2947 + - uid: 5954 components: - type: Transform - pos: 15.5,19.5 + pos: -15.5,6.5 parent: 1668 - - uid: 2948 + - uid: 5955 components: - type: Transform - pos: 15.5,18.5 + pos: -14.5,6.5 parent: 1668 - - uid: 2949 + - uid: 5956 components: - type: Transform - pos: 14.5,18.5 + pos: -13.5,6.5 parent: 1668 - - uid: 2950 + - uid: 5957 components: - type: Transform - pos: 14.5,17.5 + pos: -18.5,6.5 parent: 1668 - - uid: 2951 + - uid: 5958 components: - type: Transform - pos: 14.5,16.5 + pos: -13.5,7.5 parent: 1668 - - uid: 2952 + - uid: 5959 components: - type: Transform - pos: 14.5,15.5 + pos: -13.5,5.5 parent: 1668 - - uid: 2953 + - uid: 5960 components: - type: Transform - pos: 14.5,14.5 + pos: -12.5,5.5 parent: 1668 - - uid: 2954 + - uid: 9343 components: - type: Transform - pos: 14.5,13.5 + pos: 34.5,-13.5 parent: 1668 - - uid: 2955 + - uid: 9344 components: - type: Transform - pos: 15.5,13.5 + pos: 33.5,-13.5 parent: 1668 - - uid: 2956 + - uid: 9345 components: - type: Transform - pos: 16.5,13.5 + pos: 33.5,-14.5 parent: 1668 - - uid: 2957 + - uid: 9346 components: - type: Transform - pos: 17.5,13.5 + pos: 33.5,-15.5 parent: 1668 - - uid: 2958 + - uid: 9347 components: - type: Transform - pos: 17.5,14.5 + pos: 33.5,-16.5 parent: 1668 - - uid: 2959 + - uid: 9348 components: - type: Transform - pos: 17.5,15.5 + pos: 32.5,-16.5 parent: 1668 - - uid: 2960 + - uid: 9349 components: - type: Transform - pos: 17.5,16.5 + pos: 31.5,-16.5 parent: 1668 - - uid: 2961 + - uid: 9350 components: - type: Transform - pos: 17.5,17.5 + pos: 30.5,-16.5 parent: 1668 - - uid: 2962 + - uid: 9351 components: - type: Transform - pos: 17.5,12.5 + pos: 29.5,-16.5 parent: 1668 - - uid: 2963 + - uid: 9352 components: - type: Transform - pos: 18.5,12.5 + pos: 28.5,-16.5 parent: 1668 - - uid: 2964 + - uid: 9353 components: - type: Transform - pos: 19.5,12.5 + pos: 27.5,-16.5 parent: 1668 - - uid: 2965 + - uid: 9354 components: - type: Transform - pos: 20.5,12.5 + pos: 26.5,-16.5 parent: 1668 - - uid: 2966 + - uid: 9355 components: - type: Transform - pos: 21.5,12.5 + pos: 25.5,-16.5 parent: 1668 - - uid: 2967 + - uid: 9356 components: - type: Transform - pos: 22.5,12.5 + pos: 24.5,-16.5 parent: 1668 - - uid: 2968 + - uid: 9357 components: - type: Transform - pos: 23.5,12.5 + pos: 23.5,-16.5 parent: 1668 - - uid: 2969 + - uid: 9358 components: - type: Transform - pos: 24.5,12.5 + pos: 22.5,-16.5 parent: 1668 - - uid: 2970 + - uid: 9359 components: - type: Transform - pos: 24.5,13.5 + pos: 22.5,-17.5 parent: 1668 - - uid: 2971 + - uid: 9360 components: - type: Transform - pos: 24.5,14.5 + pos: 22.5,-18.5 parent: 1668 - - uid: 2972 + - uid: 9361 components: - type: Transform - pos: 19.5,13.5 + pos: 22.5,-19.5 parent: 1668 - - uid: 2973 + - uid: 9362 components: - type: Transform - pos: 19.5,14.5 + pos: 22.5,-20.5 parent: 1668 - - uid: 2974 + - uid: 9363 components: - type: Transform - pos: 19.5,15.5 + pos: 22.5,-21.5 parent: 1668 - - uid: 2975 + - uid: 9364 components: - type: Transform - pos: 19.5,16.5 + pos: 22.5,-23.5 parent: 1668 - - uid: 2976 + - uid: 9365 components: - type: Transform - pos: 19.5,17.5 + pos: 22.5,-24.5 parent: 1668 - - uid: 2977 + - uid: 9366 components: - type: Transform - pos: 19.5,18.5 + pos: 22.5,-25.5 parent: 1668 - - uid: 2978 + - uid: 9367 components: - type: Transform - pos: 19.5,19.5 + pos: 22.5,-22.5 parent: 1668 - - uid: 2979 + - uid: 9368 components: - type: Transform - pos: 19.5,20.5 + pos: 22.5,-26.5 parent: 1668 - - uid: 2980 + - uid: 9369 components: - type: Transform - pos: 19.5,21.5 + pos: 21.5,-26.5 parent: 1668 - - uid: 2981 + - uid: 9370 components: - type: Transform - pos: 20.5,21.5 + pos: 20.5,-26.5 parent: 1668 - - uid: 2982 + - uid: 9371 components: - type: Transform - pos: 21.5,21.5 + pos: 19.5,-26.5 parent: 1668 - - uid: 2983 + - uid: 9372 components: - type: Transform - pos: 25.5,12.5 + pos: 18.5,-26.5 parent: 1668 - - uid: 2984 + - uid: 9373 components: - type: Transform - pos: 26.5,12.5 + pos: 17.5,-26.5 parent: 1668 - - uid: 2985 + - uid: 9374 components: - type: Transform - pos: 27.5,12.5 + pos: 16.5,-26.5 parent: 1668 - - uid: 2986 + - uid: 9375 components: - type: Transform - pos: 28.5,12.5 + pos: 15.5,-26.5 parent: 1668 - - uid: 2987 + - uid: 9376 components: - type: Transform - pos: 29.5,12.5 + pos: 14.5,-26.5 parent: 1668 - - uid: 2988 + - uid: 9377 components: - type: Transform - pos: 30.5,12.5 + pos: 13.5,-26.5 parent: 1668 - - uid: 2989 +- proto: CableHVStack + entities: + - uid: 6780 components: - type: Transform - pos: 31.5,12.5 - parent: 1668 - - uid: 2990 + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6800 components: - type: Transform - pos: 32.5,12.5 - parent: 1668 - - uid: 2991 + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableMV + entities: + - uid: 1780 components: - type: Transform - pos: 33.5,12.5 + pos: 34.5,-13.5 parent: 1668 - - uid: 2992 + - uid: 1783 components: - type: Transform - pos: 34.5,12.5 + pos: 33.5,-13.5 parent: 1668 - - uid: 2993 + - uid: 1784 components: - type: Transform - pos: 34.5,13.5 + pos: 32.5,-13.5 parent: 1668 - - uid: 2994 + - uid: 1785 components: - type: Transform - pos: 34.5,14.5 + pos: 33.5,-14.5 parent: 1668 - - uid: 2995 + - uid: 1786 components: - type: Transform - pos: 34.5,15.5 + pos: 33.5,-15.5 parent: 1668 - - uid: 2996 + - uid: 1787 components: - type: Transform - pos: 34.5,16.5 + pos: 33.5,-16.5 parent: 1668 - - uid: 2997 + - uid: 1788 components: - type: Transform - pos: 34.5,17.5 + pos: 32.5,-16.5 parent: 1668 - - uid: 2998 + - uid: 1789 components: - type: Transform - pos: 34.5,18.5 + pos: 31.5,-16.5 parent: 1668 - - uid: 2999 + - uid: 1790 components: - type: Transform - pos: 34.5,19.5 + pos: 30.5,-16.5 parent: 1668 - - uid: 3000 + - uid: 1791 components: - type: Transform - pos: 35.5,19.5 + pos: 29.5,-16.5 parent: 1668 - - uid: 3001 + - uid: 1792 components: - type: Transform - pos: 13.5,15.5 + pos: 28.5,-16.5 parent: 1668 - - uid: 3002 + - uid: 1793 components: - type: Transform - pos: 12.5,15.5 + pos: 27.5,-16.5 parent: 1668 - - uid: 3003 + - uid: 1794 components: - type: Transform - pos: 11.5,15.5 + pos: 26.5,-16.5 parent: 1668 - - uid: 3004 + - uid: 1795 components: - type: Transform - pos: 10.5,15.5 + pos: 24.5,-16.5 parent: 1668 - - uid: 3005 + - uid: 1796 components: - type: Transform - pos: 9.5,15.5 + pos: 23.5,-16.5 parent: 1668 - - uid: 3006 + - uid: 1797 components: - type: Transform - pos: 8.5,15.5 + pos: 25.5,-16.5 parent: 1668 - - uid: 3007 + - uid: 1798 components: - type: Transform - pos: 7.5,15.5 + pos: 23.5,-15.5 parent: 1668 - - uid: 3008 + - uid: 1799 components: - type: Transform - pos: 7.5,16.5 + pos: 23.5,-14.5 parent: 1668 - - uid: 3009 + - uid: 1800 components: - type: Transform - pos: 11.5,16.5 + pos: 21.5,-17.5 parent: 1668 - - uid: 3010 + - uid: 1801 components: - type: Transform - pos: 11.5,17.5 + pos: 21.5,-18.5 parent: 1668 - - uid: 3011 + - uid: 1802 components: - type: Transform - pos: 11.5,18.5 + pos: 21.5,-19.5 parent: 1668 - - uid: 3012 + - uid: 1803 components: - type: Transform - pos: 11.5,19.5 + pos: 21.5,-20.5 parent: 1668 - - uid: 3013 + - uid: 1804 components: - type: Transform - pos: 11.5,20.5 + pos: 21.5,-22.5 parent: 1668 - - uid: 3014 + - uid: 1805 components: - type: Transform - pos: 11.5,21.5 + pos: 21.5,-23.5 parent: 1668 - - uid: 3015 + - uid: 1806 components: - type: Transform - pos: 10.5,21.5 + pos: 21.5,-24.5 parent: 1668 - - uid: 3016 + - uid: 1807 components: - type: Transform - pos: 9.5,21.5 + pos: 21.5,-25.5 parent: 1668 - - uid: 3017 + - uid: 1808 components: - type: Transform - pos: 9.5,20.5 + pos: 21.5,-26.5 parent: 1668 - - uid: 3018 + - uid: 1809 components: - type: Transform - pos: 9.5,19.5 + pos: 21.5,-21.5 parent: 1668 - - uid: 3019 + - uid: 1810 components: - type: Transform - pos: 9.5,18.5 + pos: 22.5,-26.5 parent: 1668 - - uid: 3020 + - uid: 1811 components: - type: Transform - pos: 8.5,18.5 + pos: 23.5,-26.5 parent: 1668 - - uid: 3021 + - uid: 1812 components: - type: Transform - pos: 7.5,18.5 + pos: 24.5,-26.5 parent: 1668 - - uid: 3022 + - uid: 1813 components: - type: Transform - pos: 9.5,22.5 + pos: 25.5,-26.5 parent: 1668 - - uid: 3023 + - uid: 1814 components: - type: Transform - pos: 9.5,23.5 + pos: 26.5,-26.5 parent: 1668 - - uid: 3024 + - uid: 1815 components: - type: Transform - pos: 9.5,24.5 + pos: 27.5,-26.5 parent: 1668 - - uid: 3025 + - uid: 1816 components: - type: Transform - pos: 9.5,25.5 + pos: 28.5,-26.5 parent: 1668 - - uid: 3026 + - uid: 1817 components: - type: Transform - pos: 9.5,26.5 + pos: 29.5,-26.5 parent: 1668 - - uid: 3027 + - uid: 1818 components: - type: Transform - pos: 9.5,27.5 + pos: 30.5,-26.5 parent: 1668 - - uid: 3028 + - uid: 1819 components: - type: Transform - pos: 9.5,28.5 + pos: 31.5,-26.5 parent: 1668 - - uid: 3029 + - uid: 1820 components: - type: Transform - pos: 9.5,29.5 + pos: 32.5,-26.5 parent: 1668 - - uid: 3030 + - uid: 1821 components: - type: Transform - pos: 9.5,30.5 + pos: 33.5,-26.5 parent: 1668 - - uid: 3031 + - uid: 1822 components: - type: Transform - pos: 8.5,30.5 + pos: 33.5,-25.5 parent: 1668 - - uid: 3032 + - uid: 1823 components: - type: Transform - pos: 7.5,30.5 + pos: 33.5,-24.5 parent: 1668 - - uid: 3575 + - uid: 1824 components: - type: Transform - pos: -15.5,6.5 + pos: 33.5,-23.5 parent: 1668 - - uid: 3576 + - uid: 1825 components: - type: Transform - pos: -15.5,5.5 + pos: 33.5,-22.5 parent: 1668 - - uid: 3578 + - uid: 1826 components: - type: Transform - pos: -14.5,6.5 + pos: 33.5,-21.5 parent: 1668 - - uid: 3579 + - uid: 1827 components: - type: Transform - pos: -13.5,6.5 + pos: 33.5,-20.5 parent: 1668 - - uid: 3580 + - uid: 1828 components: - type: Transform - pos: -16.5,5.5 + pos: 22.5,-17.5 parent: 1668 - - uid: 3581 + - uid: 1829 components: - type: Transform - pos: -17.5,5.5 + pos: 32.5,-20.5 parent: 1668 - - uid: 3582 + - uid: 1830 components: - type: Transform - pos: -18.5,5.5 + pos: 31.5,-20.5 parent: 1668 - - uid: 3583 + - uid: 1831 components: - type: Transform - pos: -19.5,5.5 + pos: 23.5,-17.5 parent: 1668 - - uid: 3584 + - uid: 1832 components: - type: Transform - pos: -20.5,5.5 + pos: 20.5,-26.5 parent: 1668 - - uid: 3585 + - uid: 1833 components: - type: Transform - pos: -21.5,5.5 + pos: 19.5,-26.5 parent: 1668 - - uid: 3586 + - uid: 1834 components: - type: Transform - pos: -22.5,5.5 + pos: 18.5,-26.5 parent: 1668 - - uid: 3587 + - uid: 1835 components: - type: Transform - pos: -22.5,6.5 + pos: 17.5,-26.5 parent: 1668 - - uid: 3588 + - uid: 1836 components: - type: Transform - pos: -22.5,7.5 + pos: 16.5,-26.5 parent: 1668 - - uid: 3589 + - uid: 1837 components: - type: Transform - pos: -22.5,8.5 + pos: 15.5,-26.5 parent: 1668 - - uid: 3590 + - uid: 1838 components: - type: Transform - pos: -22.5,9.5 + pos: 14.5,-26.5 parent: 1668 - - uid: 3591 + - uid: 1839 components: - type: Transform - pos: -22.5,10.5 + pos: 14.5,-25.5 parent: 1668 - - uid: 3592 + - uid: 1840 components: - type: Transform - pos: -22.5,11.5 + pos: 14.5,-24.5 parent: 1668 - - uid: 3593 + - uid: 3200 components: - type: Transform - pos: -22.5,12.5 + pos: -13.5,15.5 parent: 1668 - - uid: 3594 + - uid: 3220 components: - type: Transform - pos: -22.5,13.5 + pos: -12.5,15.5 parent: 1668 - - uid: 3595 + - uid: 3226 components: - type: Transform - pos: -21.5,11.5 + pos: -11.5,15.5 parent: 1668 - - uid: 3596 + - uid: 3229 components: - type: Transform - pos: -20.5,11.5 + pos: -11.5,14.5 parent: 1668 - - uid: 3597 + - uid: 3618 components: - type: Transform - pos: -19.5,11.5 + pos: -2.5,28.5 parent: 1668 - - uid: 3598 + - uid: 3793 components: - type: Transform - pos: -18.5,11.5 + pos: -19.5,18.5 parent: 1668 - - uid: 3599 + - uid: 3794 components: - type: Transform - pos: -17.5,11.5 + pos: -18.5,18.5 parent: 1668 - - uid: 3600 + - uid: 3795 components: - type: Transform - pos: -16.5,11.5 + pos: -17.5,18.5 parent: 1668 - - uid: 3601 + - uid: 3796 components: - type: Transform - pos: -16.5,12.5 + pos: -16.5,18.5 parent: 1668 - - uid: 3602 + - uid: 3797 components: - type: Transform - pos: -16.5,13.5 + pos: -15.5,18.5 parent: 1668 - - uid: 4105 + - uid: 3798 components: - type: Transform - pos: -31.5,2.5 + pos: -15.5,17.5 parent: 1668 - - uid: 4106 + - uid: 3799 components: - type: Transform - pos: -31.5,3.5 + pos: -15.5,16.5 parent: 1668 - - uid: 4107 + - uid: 3800 components: - type: Transform - pos: -31.5,4.5 + pos: -15.5,15.5 parent: 1668 - - uid: 4108 + - uid: 3801 components: - type: Transform - pos: -31.5,5.5 + pos: -14.5,15.5 parent: 1668 - - uid: 4109 + - uid: 3802 components: - type: Transform - pos: -31.5,6.5 + pos: -10.5,15.5 parent: 1668 - - uid: 4110 + - uid: 3803 components: - type: Transform - pos: -30.5,4.5 + pos: -9.5,15.5 parent: 1668 - - uid: 4111 + - uid: 3804 components: - type: Transform - pos: -29.5,4.5 + pos: -8.5,15.5 parent: 1668 - - uid: 4112 + - uid: 3805 components: - type: Transform - pos: -28.5,4.5 + pos: -8.5,14.5 parent: 1668 - - uid: 4113 + - uid: 3806 components: - type: Transform - pos: -27.5,4.5 + pos: -8.5,13.5 parent: 1668 - - uid: 4114 + - uid: 3807 components: - type: Transform - pos: -27.5,5.5 + pos: -8.5,12.5 parent: 1668 - - uid: 4115 + - uid: 3808 components: - type: Transform - pos: -27.5,6.5 + pos: -8.5,11.5 parent: 1668 - - uid: 4116 + - uid: 3809 components: - type: Transform - pos: -31.5,7.5 + pos: -7.5,11.5 parent: 1668 - - uid: 4117 + - uid: 3810 components: - type: Transform - pos: -31.5,1.5 + pos: -6.5,11.5 parent: 1668 - - uid: 4118 + - uid: 3811 components: - type: Transform - pos: -31.5,0.5 + pos: -6.5,12.5 parent: 1668 - - uid: 4119 + - uid: 3812 components: - type: Transform - pos: -31.5,-0.5 + pos: -6.5,13.5 parent: 1668 - - uid: 4120 + - uid: 3813 components: - type: Transform - pos: -30.5,-0.5 + pos: -6.5,14.5 parent: 1668 - - uid: 4121 + - uid: 3814 components: - type: Transform - pos: -29.5,-0.5 + pos: -6.5,15.5 parent: 1668 - - uid: 4122 + - uid: 3815 components: - type: Transform - pos: -28.5,-0.5 + pos: -6.5,16.5 parent: 1668 - - uid: 4123 + - uid: 3816 components: - type: Transform - pos: -27.5,-0.5 + pos: -5.5,16.5 parent: 1668 - - uid: 4124 + - uid: 3817 components: - type: Transform - pos: -26.5,-0.5 + pos: -4.5,16.5 parent: 1668 - - uid: 4125 + - uid: 3818 components: - type: Transform - pos: -25.5,-0.5 + pos: -3.5,16.5 parent: 1668 - - uid: 4126 + - uid: 3819 components: - type: Transform - pos: -24.5,-0.5 + pos: -2.5,16.5 parent: 1668 - - uid: 4127 + - uid: 3820 components: - type: Transform - pos: -23.5,-0.5 + pos: -1.5,16.5 parent: 1668 - - uid: 4128 + - uid: 3821 components: - type: Transform - pos: -22.5,-0.5 + pos: 18.5,28.5 parent: 1668 - - uid: 4129 + - uid: 3822 components: - type: Transform - pos: -21.5,-0.5 + pos: -1.5,17.5 parent: 1668 - - uid: 4130 + - uid: 3823 components: - type: Transform - pos: -21.5,-1.5 + pos: -1.5,18.5 parent: 1668 - - uid: 4131 + - uid: 3824 components: - type: Transform - pos: -21.5,-2.5 + pos: -1.5,19.5 parent: 1668 - - uid: 4132 + - uid: 3825 components: - type: Transform - pos: -20.5,-0.5 + pos: -1.5,20.5 parent: 1668 - - uid: 4133 + - uid: 3826 components: - type: Transform - pos: -19.5,-0.5 + pos: -1.5,21.5 parent: 1668 - - uid: 4134 + - uid: 3827 components: - type: Transform - pos: -18.5,-0.5 + pos: -1.5,24.5 parent: 1668 - - uid: 4135 + - uid: 3828 components: - type: Transform - pos: -17.5,-0.5 + pos: -1.5,23.5 parent: 1668 - - uid: 4136 + - uid: 3829 components: - type: Transform - pos: -17.5,0.5 + pos: -1.5,25.5 parent: 1668 - - uid: 4137 + - uid: 3830 components: - type: Transform - pos: -17.5,1.5 + pos: -1.5,26.5 parent: 1668 - - uid: 4138 + - uid: 3831 components: - type: Transform - pos: -16.5,-0.5 + pos: -1.5,27.5 parent: 1668 - - uid: 4139 + - uid: 3832 components: - type: Transform - pos: -15.5,-0.5 + pos: -1.5,28.5 parent: 1668 - - uid: 4140 + - uid: 3833 components: - type: Transform - pos: -14.5,-0.5 + pos: -1.5,22.5 parent: 1668 - - uid: 4141 + - uid: 3834 components: - type: Transform - pos: -13.5,-0.5 + pos: 19.5,28.5 parent: 1668 - - uid: 4142 + - uid: 3835 components: - type: Transform - pos: -13.5,-1.5 + pos: 19.5,27.5 parent: 1668 - - uid: 4143 + - uid: 3836 components: - type: Transform - pos: -13.5,-2.5 + pos: 19.5,26.5 parent: 1668 - - uid: 4257 + - uid: 3837 components: - type: Transform - pos: 29.5,-31.5 + pos: 19.5,25.5 parent: 1668 - - uid: 4807 + - uid: 3838 components: - type: Transform - pos: 0.5,-17.5 + pos: 19.5,24.5 parent: 1668 - - uid: 4817 + - uid: 3839 components: - type: Transform - pos: 15.5,-17.5 + pos: 19.5,23.5 parent: 1668 - - uid: 4818 + - uid: 3840 components: - type: Transform - pos: 15.5,-18.5 + pos: 19.5,21.5 parent: 1668 - - uid: 4819 + - uid: 3841 components: - type: Transform - pos: 16.5,-18.5 + pos: 19.5,22.5 parent: 1668 - - uid: 4820 + - uid: 3842 components: - type: Transform - pos: 16.5,-19.5 + pos: 19.5,20.5 parent: 1668 - - uid: 4821 + - uid: 3843 components: - type: Transform - pos: 16.5,-20.5 + pos: 19.5,19.5 parent: 1668 - - uid: 4822 + - uid: 3844 components: - type: Transform - pos: 16.5,-21.5 + pos: 19.5,18.5 parent: 1668 - - uid: 4823 + - uid: 3845 components: - type: Transform - pos: 16.5,-22.5 + pos: 19.5,17.5 parent: 1668 - - uid: 4824 + - uid: 3846 components: - type: Transform - pos: 16.5,-23.5 + pos: 19.5,16.5 parent: 1668 - - uid: 4825 + - uid: 3847 components: - type: Transform - pos: 15.5,-23.5 + pos: 20.5,19.5 parent: 1668 - - uid: 4826 + - uid: 3848 components: - type: Transform - pos: 14.5,-23.5 + pos: 18.5,16.5 parent: 1668 - - uid: 4827 + - uid: 3849 components: - type: Transform - pos: 13.5,-23.5 + pos: 17.5,16.5 parent: 1668 - - uid: 4828 + - uid: 3850 components: - type: Transform - pos: 13.5,-22.5 + pos: 16.5,16.5 parent: 1668 - - uid: 4829 + - uid: 3851 components: - type: Transform - pos: 12.5,-22.5 + pos: 15.5,16.5 parent: 1668 - - uid: 4830 + - uid: 3852 components: - type: Transform - pos: 11.5,-22.5 + pos: 14.5,16.5 parent: 1668 - - uid: 4831 + - uid: 3853 components: - type: Transform - pos: 10.5,-22.5 + pos: 14.5,17.5 parent: 1668 - - uid: 4832 + - uid: 3854 components: - type: Transform - pos: 9.5,-22.5 + pos: 28.5,9.5 parent: 1668 - - uid: 4833 + - uid: 3855 components: - type: Transform - pos: 8.5,-22.5 + pos: 28.5,10.5 parent: 1668 - - uid: 4834 + - uid: 3856 components: - type: Transform - pos: 8.5,-23.5 + pos: 29.5,10.5 parent: 1668 - - uid: 4835 + - uid: 3857 components: - type: Transform - pos: 8.5,-24.5 + pos: 29.5,11.5 parent: 1668 - - uid: 4836 + - uid: 3858 components: - type: Transform - pos: 7.5,-24.5 + pos: 29.5,12.5 parent: 1668 - - uid: 4837 + - uid: 3859 components: - type: Transform - pos: 12.5,-21.5 + pos: 29.5,13.5 parent: 1668 - - uid: 4838 + - uid: 3860 components: - type: Transform - pos: 12.5,-20.5 + pos: 29.5,14.5 parent: 1668 - - uid: 4839 + - uid: 3861 components: - type: Transform - pos: 12.5,-19.5 + pos: 29.5,15.5 parent: 1668 - - uid: 4840 + - uid: 3862 components: - type: Transform - pos: 11.5,-19.5 + pos: 28.5,15.5 parent: 1668 - - uid: 4841 + - uid: 3863 components: - type: Transform - pos: 10.5,-19.5 + pos: 27.5,15.5 parent: 1668 - - uid: 4842 + - uid: 3864 components: - type: Transform - pos: 9.5,-19.5 + pos: 26.5,15.5 parent: 1668 - - uid: 4843 + - uid: 3865 components: - type: Transform - pos: 8.5,-19.5 + pos: 25.5,15.5 parent: 1668 - - uid: 4844 + - uid: 3866 components: - type: Transform - pos: 8.5,-18.5 + pos: 24.5,15.5 parent: 1668 - - uid: 4845 + - uid: 3867 components: - type: Transform - pos: 8.5,-17.5 + pos: 23.5,15.5 parent: 1668 - - uid: 4846 + - uid: 3868 components: - type: Transform - pos: 7.5,-18.5 + pos: 22.5,15.5 parent: 1668 - - uid: 4847 + - uid: 3869 components: - type: Transform - pos: 6.5,-18.5 + pos: 21.5,15.5 parent: 1668 - - uid: 4848 + - uid: 3870 components: - type: Transform - pos: 5.5,-18.5 + pos: 20.5,15.5 parent: 1668 - - uid: 4849 + - uid: 3871 components: - type: Transform - pos: 4.5,-18.5 + pos: 19.5,15.5 parent: 1668 - - uid: 4850 + - uid: 3872 components: - type: Transform - pos: 3.5,-18.5 + pos: 18.5,8.5 parent: 1668 - - uid: 4851 + - uid: 3873 components: - type: Transform - pos: 2.5,-18.5 + pos: 17.5,8.5 parent: 1668 - - uid: 4852 + - uid: 3874 components: - type: Transform - pos: 1.5,-18.5 + pos: 16.5,8.5 parent: 1668 - - uid: 4853 + - uid: 3875 components: - type: Transform - pos: 1.5,-19.5 + pos: 16.5,9.5 parent: 1668 - - uid: 4854 + - uid: 3876 components: - type: Transform - pos: 1.5,-20.5 + pos: 16.5,10.5 parent: 1668 - - uid: 4855 + - uid: 3877 components: - type: Transform - pos: 0.5,-18.5 + pos: 16.5,11.5 parent: 1668 - - uid: 4857 + - uid: 3878 components: - type: Transform - pos: -0.5,-17.5 + pos: 16.5,12.5 parent: 1668 - - uid: 4858 + - uid: 3879 components: - type: Transform - pos: -0.5,-16.5 + pos: 16.5,13.5 parent: 1668 - - uid: 4859 + - uid: 3880 components: - type: Transform - pos: -0.5,-15.5 + pos: 16.5,14.5 parent: 1668 - - uid: 4860 + - uid: 3881 components: - type: Transform - pos: -0.5,-14.5 + pos: 16.5,15.5 parent: 1668 - - uid: 4861 + - uid: 3919 components: - type: Transform - pos: -0.5,-13.5 + pos: -1.5,15.5 parent: 1668 - - uid: 4862 + - uid: 3920 components: - type: Transform - pos: -0.5,-12.5 + pos: -0.5,15.5 parent: 1668 - - uid: 4863 + - uid: 3921 components: - type: Transform - pos: -0.5,-11.5 + pos: 0.5,15.5 parent: 1668 - - uid: 4864 + - uid: 3922 components: - type: Transform - pos: -0.5,-10.5 + pos: 1.5,15.5 parent: 1668 - - uid: 4865 + - uid: 3940 components: - type: Transform - pos: -0.5,-9.5 + pos: 3.5,16.5 parent: 1668 - - uid: 4866 + - uid: 3942 components: - type: Transform - pos: -1.5,-9.5 + pos: 3.5,15.5 parent: 1668 - - uid: 4867 + - uid: 3944 components: - type: Transform - pos: -2.5,-9.5 + pos: 2.5,15.5 parent: 1668 - - uid: 4868 + - uid: 3947 components: - type: Transform - pos: -3.5,-9.5 + pos: 3.5,17.5 parent: 1668 - - uid: 4869 + - uid: 4173 components: - type: Transform - pos: -0.5,-19.5 + pos: 17.5,7.5 parent: 1668 - - uid: 4870 + - uid: 4174 components: - type: Transform - pos: -0.5,-20.5 + pos: 17.5,6.5 parent: 1668 - - uid: 4871 + - uid: 4175 components: - type: Transform - pos: -0.5,-21.5 + pos: 17.5,5.5 parent: 1668 - - uid: 4872 + - uid: 4176 components: - type: Transform - pos: -0.5,-22.5 + pos: 17.5,4.5 parent: 1668 - - uid: 4873 + - uid: 4177 components: - type: Transform - pos: -0.5,-23.5 + pos: 17.5,3.5 parent: 1668 - - uid: 4874 + - uid: 4178 components: - type: Transform - pos: -0.5,-24.5 + pos: 18.5,3.5 parent: 1668 - - uid: 4875 + - uid: 5046 components: - type: Transform - pos: -0.5,-25.5 + pos: 2.5,-49.5 parent: 1668 - - uid: 4876 + - uid: 5047 components: - type: Transform - pos: -1.5,-25.5 + pos: 2.5,-48.5 parent: 1668 - - uid: 4877 + - uid: 5048 components: - type: Transform - pos: -2.5,-25.5 + pos: 1.5,-48.5 parent: 1668 - - uid: 4878 + - uid: 5049 components: - type: Transform - pos: -2.5,-24.5 + pos: 0.5,-48.5 parent: 1668 - - uid: 4879 + - uid: 5050 components: - type: Transform - pos: -3.5,-25.5 + pos: -0.5,-48.5 parent: 1668 - - uid: 4880 + - uid: 5051 components: - type: Transform - pos: -4.5,-25.5 + pos: -1.5,-48.5 parent: 1668 - - uid: 4881 + - uid: 5052 components: - type: Transform - pos: -5.5,-25.5 + pos: -2.5,-48.5 parent: 1668 - - uid: 4882 + - uid: 5053 components: - type: Transform - pos: -6.5,-25.5 + pos: -3.5,-48.5 parent: 1668 - - uid: 4883 + - uid: 5054 components: - type: Transform - pos: -7.5,-25.5 + pos: -3.5,-49.5 parent: 1668 - - uid: 4884 + - uid: 5055 components: - type: Transform - pos: -8.5,-25.5 + pos: -3.5,-50.5 parent: 1668 - - uid: 4885 + - uid: 5056 components: - type: Transform - pos: -9.5,-25.5 + pos: -4.5,-48.5 parent: 1668 - - uid: 4886 + - uid: 5057 components: - type: Transform - pos: -9.5,-24.5 + pos: -5.5,-48.5 parent: 1668 - - uid: 4887 + - uid: 5058 components: - type: Transform - pos: -8.5,-24.5 + pos: -6.5,-48.5 parent: 1668 - - uid: 4888 + - uid: 5059 components: - type: Transform - pos: -1.5,-18.5 + pos: -7.5,-48.5 parent: 1668 - - uid: 4889 + - uid: 5060 components: - type: Transform - pos: -2.5,-18.5 + pos: -8.5,-48.5 parent: 1668 - - uid: 4890 + - uid: 5061 components: - type: Transform - pos: -3.5,-18.5 + pos: -9.5,-48.5 parent: 1668 - - uid: 4891 + - uid: 5062 components: - type: Transform - pos: -4.5,-18.5 + pos: -10.5,-48.5 parent: 1668 - - uid: 4892 + - uid: 5063 components: - type: Transform - pos: -5.5,-18.5 + pos: -11.5,-48.5 parent: 1668 - - uid: 4893 + - uid: 5064 components: - type: Transform - pos: -6.5,-18.5 + pos: -12.5,-48.5 parent: 1668 - - uid: 4894 + - uid: 5065 components: - type: Transform - pos: -7.5,-18.5 + pos: -13.5,-48.5 parent: 1668 - - uid: 4895 + - uid: 5066 components: - type: Transform - pos: -8.5,-18.5 + pos: -14.5,-48.5 parent: 1668 - - uid: 4896 + - uid: 5067 components: - type: Transform - pos: -9.5,-18.5 + pos: -16.5,-48.5 parent: 1668 - - uid: 4897 + - uid: 5069 components: - type: Transform - pos: -9.5,-17.5 + pos: -16.5,-47.5 parent: 1668 - - uid: 4966 + - uid: 5070 components: - type: Transform - pos: -1.5,-19.5 + pos: -16.5,-46.5 parent: 1668 - - uid: 4967 + - uid: 5071 components: - type: Transform - pos: -1.5,-17.5 + pos: -16.5,-45.5 parent: 1668 - - uid: 4976 + - uid: 5072 components: - type: Transform - pos: 17.5,-17.5 + pos: -16.5,-44.5 parent: 1668 - - uid: 4978 + - uid: 5073 components: - type: Transform - pos: 18.5,-17.5 + pos: 3.5,-48.5 parent: 1668 - - uid: 4979 + - uid: 5074 components: - type: Transform - pos: 19.5,-17.5 + pos: 4.5,-48.5 parent: 1668 - - uid: 4980 + - uid: 5075 components: - type: Transform - pos: 20.5,-17.5 + pos: 5.5,-48.5 parent: 1668 - - uid: 4981 + - uid: 5076 components: - type: Transform - pos: 20.5,-16.5 + pos: 6.5,-48.5 parent: 1668 - - uid: 4982 + - uid: 5077 components: - type: Transform - pos: 20.5,-15.5 + pos: 7.5,-48.5 parent: 1668 - - uid: 4983 + - uid: 5080 components: - type: Transform - pos: 20.5,-14.5 + pos: 8.5,-48.5 parent: 1668 - - uid: 4984 + - uid: 5081 components: - type: Transform - pos: 20.5,-13.5 + pos: 9.5,-48.5 parent: 1668 - - uid: 4985 + - uid: 5082 components: - type: Transform - pos: 20.5,-12.5 + pos: 10.5,-48.5 parent: 1668 - - uid: 4986 + - uid: 5083 components: - type: Transform - pos: 20.5,-10.5 + pos: 11.5,-48.5 parent: 1668 - - uid: 4987 + - uid: 5084 components: - type: Transform - pos: 21.5,-10.5 + pos: 12.5,-48.5 parent: 1668 - - uid: 4988 + - uid: 5085 components: - type: Transform - pos: 20.5,-18.5 + pos: 13.5,-48.5 parent: 1668 - - uid: 4989 + - uid: 5086 components: - type: Transform - pos: 20.5,-19.5 + pos: 14.5,-48.5 parent: 1668 - - uid: 4990 + - uid: 5087 components: - type: Transform - pos: 19.5,-19.5 + pos: 15.5,-48.5 parent: 1668 - - uid: 4991 + - uid: 5088 components: - type: Transform - pos: 18.5,-19.5 + pos: 15.5,-47.5 parent: 1668 - - uid: 5277 + - uid: 5089 components: - type: Transform - pos: 21.5,-18.5 + pos: 15.5,-46.5 parent: 1668 - - uid: 5278 + - uid: 5090 components: - type: Transform - pos: 22.5,-18.5 + pos: 15.5,-45.5 parent: 1668 - - uid: 5279 + - uid: 5091 components: - type: Transform - pos: 23.5,-18.5 + pos: 15.5,-44.5 parent: 1668 - - uid: 5280 + - uid: 5092 components: - type: Transform - pos: 24.5,-18.5 + pos: 16.5,-44.5 parent: 1668 - - uid: 5281 + - uid: 5093 components: - type: Transform - pos: 25.5,-18.5 + pos: 16.5,-43.5 parent: 1668 - - uid: 5282 + - uid: 5094 components: - type: Transform - pos: 26.5,-18.5 + pos: 16.5,-42.5 parent: 1668 - - uid: 5283 + - uid: 5095 components: - type: Transform - pos: 27.5,-18.5 + pos: 16.5,-41.5 parent: 1668 - - uid: 5284 + - uid: 5096 components: - type: Transform - pos: 28.5,-18.5 + pos: 16.5,-40.5 parent: 1668 - - uid: 5285 + - uid: 5097 components: - type: Transform - pos: 29.5,-18.5 + pos: 16.5,-39.5 parent: 1668 - - uid: 5286 + - uid: 5098 components: - type: Transform - pos: 29.5,-19.5 + pos: 16.5,-38.5 parent: 1668 - - uid: 5287 + - uid: 5099 components: - type: Transform - pos: 30.5,-18.5 + pos: 16.5,-37.5 parent: 1668 - - uid: 5288 + - uid: 5100 components: - type: Transform - pos: 30.5,-17.5 + pos: 16.5,-36.5 parent: 1668 - - uid: 5289 + - uid: 5101 components: - type: Transform - pos: 30.5,-16.5 + pos: 16.5,-35.5 parent: 1668 - - uid: 5290 + - uid: 5102 components: - type: Transform - pos: 30.5,-15.5 + pos: 15.5,-35.5 parent: 1668 - - uid: 5291 + - uid: 5103 components: - type: Transform - pos: 30.5,-14.5 + pos: 14.5,-35.5 parent: 1668 - - uid: 5292 + - uid: 5104 components: - type: Transform - pos: 30.5,-13.5 + pos: 14.5,-34.5 parent: 1668 - - uid: 5293 + - uid: 5105 components: - type: Transform - pos: 30.5,-12.5 + pos: -17.5,-44.5 parent: 1668 - - uid: 5294 + - uid: 5106 components: - type: Transform - pos: 30.5,-11.5 + pos: -17.5,-43.5 parent: 1668 - - uid: 5295 + - uid: 5107 components: - type: Transform - pos: 30.5,-10.5 + pos: -17.5,-42.5 parent: 1668 - - uid: 5296 + - uid: 5108 components: - type: Transform - pos: 31.5,-10.5 + pos: -17.5,-41.5 parent: 1668 - - uid: 5297 + - uid: 5109 components: - type: Transform - pos: 32.5,-10.5 + pos: -17.5,-40.5 parent: 1668 - - uid: 5298 + - uid: 5110 components: - type: Transform - pos: 33.5,-10.5 + pos: -17.5,-39.5 parent: 1668 - - uid: 5299 + - uid: 5111 components: - type: Transform - pos: 34.5,-10.5 + pos: -17.5,-37.5 parent: 1668 - - uid: 5300 + - uid: 5112 components: - type: Transform - pos: 34.5,-9.5 + pos: -17.5,-36.5 parent: 1668 - - uid: 5301 + - uid: 5113 components: - type: Transform - pos: 22.5,-23.5 + pos: -17.5,-35.5 parent: 1668 - - uid: 5302 + - uid: 5114 components: - type: Transform - pos: 23.5,-23.5 + pos: -17.5,-38.5 parent: 1668 - - uid: 5303 + - uid: 5115 components: - type: Transform - pos: 24.5,-23.5 + pos: -15.5,-35.5 parent: 1668 - - uid: 5304 + - uid: 5116 components: - type: Transform - pos: 24.5,-22.5 + pos: -16.5,-35.5 parent: 1668 - - uid: 5305 + - uid: 5117 components: - type: Transform - pos: 24.5,-21.5 + pos: -15.5,-34.5 parent: 1668 - - uid: 5306 + - uid: 5118 components: - type: Transform - pos: 24.5,-20.5 + pos: -14.5,-34.5 parent: 1668 - - uid: 5307 + - uid: 5119 components: - type: Transform - pos: 24.5,-19.5 + pos: -14.5,-33.5 parent: 1668 - - uid: 5424 + - uid: 5120 components: - type: Transform - pos: 16.5,-28.5 + pos: -14.5,-32.5 parent: 1668 - - uid: 5425 + - uid: 5121 components: - type: Transform - pos: 16.5,-27.5 + pos: -14.5,-31.5 parent: 1668 - - uid: 5426 + - uid: 5122 components: - type: Transform - pos: 16.5,-26.5 + pos: -14.5,-30.5 parent: 1668 - - uid: 5427 + - uid: 5123 components: - type: Transform - pos: 16.5,-25.5 + pos: -13.5,-30.5 parent: 1668 - - uid: 5428 + - uid: 5124 components: - type: Transform - pos: 17.5,-25.5 + pos: -12.5,-30.5 parent: 1668 - - uid: 5429 + - uid: 5125 components: - type: Transform - pos: 18.5,-25.5 + pos: -11.5,-30.5 parent: 1668 - - uid: 5430 + - uid: 5126 components: - type: Transform - pos: 19.5,-25.5 + pos: -9.5,-30.5 parent: 1668 - - uid: 5431 + - uid: 5127 components: - type: Transform - pos: 20.5,-25.5 + pos: -8.5,-30.5 parent: 1668 - - uid: 5432 + - uid: 5128 components: - type: Transform - pos: 21.5,-25.5 + pos: -7.5,-30.5 parent: 1668 - - uid: 5433 + - uid: 5129 components: - type: Transform - pos: 22.5,-25.5 + pos: -10.5,-30.5 parent: 1668 - - uid: 5434 + - uid: 5130 components: - type: Transform - pos: 23.5,-25.5 + pos: -7.5,-31.5 parent: 1668 - - uid: 5435 + - uid: 5131 components: - type: Transform - pos: 24.5,-25.5 + pos: -7.5,-32.5 parent: 1668 - - uid: 5436 + - uid: 5132 components: - type: Transform - pos: 24.5,-24.5 + pos: -7.5,-33.5 parent: 1668 - - uid: 5437 + - uid: 5133 components: - type: Transform - pos: 20.5,-24.5 + pos: -7.5,-34.5 parent: 1668 - - uid: 5438 + - uid: 5134 components: - type: Transform - pos: 20.5,-23.5 + pos: -6.5,-34.5 parent: 1668 - - uid: 5439 + - uid: 5135 components: - type: Transform - pos: 21.5,-23.5 + pos: -5.5,-34.5 parent: 1668 - - uid: 5440 + - uid: 5136 components: - type: Transform - pos: 19.5,-23.5 + pos: -4.5,-34.5 parent: 1668 - - uid: 5832 + - uid: 5137 components: - type: Transform - pos: 10.5,6.5 + pos: -3.5,-34.5 parent: 1668 - - uid: 5833 + - uid: 5138 components: - type: Transform - pos: 9.5,6.5 + pos: -1.5,-34.5 parent: 1668 - - uid: 5834 + - uid: 5139 components: - type: Transform - pos: 9.5,5.5 + pos: -2.5,-34.5 parent: 1668 - - uid: 5835 + - uid: 5140 components: - type: Transform - pos: 9.5,4.5 + pos: -1.5,-33.5 parent: 1668 - - uid: 5836 + - uid: 5141 components: - type: Transform - pos: 9.5,3.5 + pos: -1.5,-32.5 parent: 1668 - - uid: 5837 + - uid: 5142 components: - type: Transform - pos: 9.5,2.5 + pos: -0.5,-34.5 parent: 1668 - - uid: 5838 + - uid: 5143 components: - type: Transform - pos: 9.5,1.5 + pos: 0.5,-34.5 parent: 1668 - - uid: 5839 + - uid: 5144 components: - type: Transform - pos: 10.5,1.5 + pos: 1.5,-34.5 parent: 1668 - - uid: 5840 + - uid: 5145 components: - type: Transform - pos: 10.5,0.5 + pos: 2.5,-34.5 parent: 1668 - - uid: 5841 + - uid: 5146 components: - type: Transform - pos: 10.5,-0.5 + pos: 3.5,-34.5 parent: 1668 - - uid: 5842 + - uid: 5147 components: - type: Transform - pos: 10.5,-1.5 + pos: 4.5,-34.5 parent: 1668 - - uid: 5843 + - uid: 5148 components: - type: Transform - pos: 10.5,-2.5 + pos: 5.5,-34.5 parent: 1668 - - uid: 5844 + - uid: 5149 components: - type: Transform - pos: 11.5,6.5 + pos: 6.5,-34.5 parent: 1668 - - uid: 5845 + - uid: 5150 components: - type: Transform - pos: 12.5,6.5 + pos: 6.5,-33.5 parent: 1668 - - uid: 5846 + - uid: 5151 components: - type: Transform - pos: 12.5,7.5 + pos: 6.5,-32.5 parent: 1668 - - uid: 5854 + - uid: 5152 components: - type: Transform - pos: 20.5,6.5 + pos: 6.5,-31.5 parent: 1668 - - uid: 5855 + - uid: 5153 components: - type: Transform - pos: 20.5,5.5 + pos: 6.5,-30.5 parent: 1668 - - uid: 5856 + - uid: 5154 components: - type: Transform - pos: 19.5,5.5 + pos: 7.5,-30.5 parent: 1668 - - uid: 5857 + - uid: 5155 components: - type: Transform - pos: 18.5,5.5 + pos: 8.5,-30.5 parent: 1668 - - uid: 5858 + - uid: 5156 components: - type: Transform - pos: 17.5,5.5 + pos: 9.5,-30.5 parent: 1668 - - uid: 5859 + - uid: 5157 components: - type: Transform - pos: 16.5,5.5 + pos: 10.5,-30.5 parent: 1668 - - uid: 5860 + - uid: 5158 components: - type: Transform - pos: 15.5,5.5 + pos: 11.5,-30.5 parent: 1668 - - uid: 5861 + - uid: 5159 components: - type: Transform - pos: 14.5,5.5 + pos: 12.5,-30.5 parent: 1668 - - uid: 5862 + - uid: 5160 components: - type: Transform - pos: 13.5,5.5 + pos: 13.5,-30.5 parent: 1668 - - uid: 5863 + - uid: 5161 components: - type: Transform - pos: 12.5,5.5 + pos: 13.5,-31.5 parent: 1668 - - uid: 5865 + - uid: 5162 components: - type: Transform - pos: 20.5,4.5 + pos: 13.5,-32.5 parent: 1668 - - uid: 5866 + - uid: 5163 components: - type: Transform - pos: 20.5,3.5 + pos: 13.5,-33.5 parent: 1668 - - uid: 5867 + - uid: 5164 components: - type: Transform - pos: 20.5,2.5 + pos: 13.5,-34.5 parent: 1668 - - uid: 5868 + - uid: 5278 components: - type: Transform - pos: 20.5,1.5 + pos: -5.5,-47.5 parent: 1668 - - uid: 5869 + - uid: 5279 components: - type: Transform - pos: 20.5,0.5 + pos: -5.5,-46.5 parent: 1668 - - uid: 5870 + - uid: 5280 components: - type: Transform - pos: 20.5,-0.5 + pos: -5.5,-45.5 parent: 1668 - - uid: 5871 + - uid: 5281 components: - type: Transform - pos: 20.5,-1.5 + pos: -5.5,-44.5 parent: 1668 - - uid: 5872 + - uid: 5282 components: - type: Transform - pos: 20.5,-2.5 + pos: -5.5,-43.5 parent: 1668 - - uid: 5873 + - uid: 5283 components: - type: Transform - pos: 20.5,-3.5 + pos: -5.5,-41.5 parent: 1668 - - uid: 5874 + - uid: 5284 components: - type: Transform - pos: 20.5,-4.5 + pos: -5.5,-40.5 parent: 1668 - - uid: 5875 + - uid: 5285 components: - type: Transform - pos: 20.5,-5.5 + pos: -5.5,-42.5 parent: 1668 - - uid: 6055 + - uid: 5286 components: - type: Transform - pos: -16.5,-29.5 + pos: -5.5,-39.5 parent: 1668 - - uid: 6056 + - uid: 5287 components: - type: Transform - pos: -16.5,-30.5 + pos: -6.5,-39.5 parent: 1668 - - uid: 6057 + - uid: 5288 components: - type: Transform - pos: -17.5,-29.5 + pos: -7.5,-39.5 parent: 1668 - - uid: 6058 + - uid: 5289 components: - type: Transform - pos: -18.5,-29.5 + pos: -8.5,-39.5 parent: 1668 - - uid: 6059 + - uid: 5290 components: - type: Transform - pos: -18.5,-28.5 + pos: -9.5,-39.5 parent: 1668 - - uid: 6060 + - uid: 5291 components: - type: Transform - pos: -18.5,-27.5 + pos: -10.5,-39.5 parent: 1668 - - uid: 6061 + - uid: 5292 components: - type: Transform - pos: -18.5,-26.5 + pos: -11.5,-39.5 parent: 1668 - - uid: 6062 + - uid: 5293 components: - type: Transform - pos: -18.5,-25.5 + pos: -12.5,-39.5 parent: 1668 - - uid: 6063 + - uid: 5294 components: - type: Transform - pos: -18.5,-24.5 + pos: -12.5,-38.5 parent: 1668 - - uid: 6064 + - uid: 5295 components: - type: Transform - pos: -18.5,-23.5 + pos: -12.5,-37.5 parent: 1668 - - uid: 6065 + - uid: 5296 components: - type: Transform - pos: -18.5,-22.5 + pos: -5.5,-38.5 parent: 1668 - - uid: 6066 + - uid: 5297 components: - type: Transform - pos: -17.5,-22.5 + pos: -5.5,-37.5 parent: 1668 - - uid: 6104 + - uid: 5298 components: - type: Transform - pos: -17.5,-26.5 + pos: -5.5,-36.5 parent: 1668 - - uid: 6105 + - uid: 5299 components: - type: Transform - pos: -16.5,-26.5 + pos: -5.5,-35.5 parent: 1668 - - uid: 6106 + - uid: 5300 components: - type: Transform - pos: -15.5,-26.5 + pos: 4.5,-47.5 parent: 1668 - - uid: 6107 + - uid: 5301 components: - type: Transform - pos: -14.5,-26.5 + pos: 4.5,-46.5 parent: 1668 - - uid: 6108 + - uid: 5302 components: - type: Transform - pos: -14.5,-27.5 + pos: 4.5,-45.5 parent: 1668 - - uid: 6109 + - uid: 5303 components: - type: Transform - pos: -14.5,-28.5 + pos: 4.5,-44.5 parent: 1668 - - uid: 6110 + - uid: 5304 components: - type: Transform - pos: -14.5,-28.5 + pos: 4.5,-43.5 parent: 1668 - - uid: 6111 + - uid: 5305 components: - type: Transform - pos: -15.5,-28.5 + pos: 4.5,-42.5 parent: 1668 - - uid: 6182 + - uid: 5306 components: - type: Transform - pos: -14.5,-29.5 + pos: 4.5,-41.5 parent: 1668 - - uid: 6183 + - uid: 5307 components: - type: Transform - pos: -14.5,-30.5 + pos: 4.5,-40.5 parent: 1668 - - uid: 6184 + - uid: 5308 components: - type: Transform - pos: -13.5,-30.5 + pos: 4.5,-39.5 parent: 1668 - - uid: 6185 + - uid: 5309 components: - type: Transform - pos: -12.5,-30.5 + pos: 4.5,-38.5 parent: 1668 - - uid: 6186 + - uid: 5310 components: - type: Transform - pos: -11.5,-30.5 + pos: 4.5,-37.5 parent: 1668 - - uid: 6187 + - uid: 5311 components: - type: Transform - pos: -10.5,-30.5 + pos: 4.5,-35.5 parent: 1668 - - uid: 6188 + - uid: 5312 components: - type: Transform - pos: -9.5,-30.5 + pos: 4.5,-36.5 parent: 1668 - - uid: 6189 + - uid: 5313 components: - type: Transform - pos: -8.5,-30.5 + pos: 5.5,-39.5 parent: 1668 - - uid: 6190 + - uid: 5314 components: - type: Transform - pos: 7.5,-30.5 + pos: 6.5,-39.5 parent: 1668 - - uid: 6191 + - uid: 5315 components: - type: Transform - pos: 8.5,-30.5 + pos: 7.5,-39.5 parent: 1668 - - uid: 6192 + - uid: 5316 components: - type: Transform - pos: 9.5,-30.5 + pos: 8.5,-39.5 parent: 1668 - - uid: 6193 + - uid: 5317 components: - type: Transform - pos: 10.5,-30.5 + pos: 9.5,-39.5 parent: 1668 - - uid: 6194 + - uid: 5318 components: - type: Transform - pos: 11.5,-30.5 + pos: 10.5,-39.5 parent: 1668 - - uid: 6195 + - uid: 5319 components: - type: Transform - pos: 12.5,-30.5 + pos: 11.5,-39.5 parent: 1668 - - uid: 6196 + - uid: 5320 components: - type: Transform - pos: 13.5,-30.5 + pos: 11.5,-38.5 parent: 1668 - - uid: 6197 + - uid: 5322 components: - type: Transform - pos: 13.5,-29.5 + pos: 11.5,-37.5 parent: 1668 - - uid: 6198 + - uid: 5668 components: - type: Transform - pos: 13.5,-28.5 + pos: -7.5,-25.5 parent: 1668 - - uid: 6199 + - uid: 5669 components: - type: Transform - pos: 13.5,-27.5 + pos: -7.5,-24.5 parent: 1668 - - uid: 6200 + - uid: 5733 components: - type: Transform - pos: 14.5,-27.5 + pos: -5.5,-16.5 parent: 1668 - - uid: 6201 + - uid: 5734 components: - type: Transform - pos: 15.5,-27.5 + pos: -5.5,-17.5 parent: 1668 - - uid: 6336 + - uid: 5735 components: - type: Transform - pos: -8.5,-31.5 + pos: -4.5,-17.5 parent: 1668 - - uid: 6337 + - uid: 5736 components: - type: Transform - pos: -7.5,-31.5 + pos: -3.5,-17.5 parent: 1668 - - uid: 6338 + - uid: 5737 components: - type: Transform - pos: -6.5,-31.5 + pos: -2.5,-17.5 parent: 1668 - - uid: 6339 + - uid: 5738 components: - type: Transform - pos: -5.5,-31.5 + pos: -1.5,-17.5 parent: 1668 - - uid: 6340 + - uid: 5739 components: - type: Transform - pos: -4.5,-31.5 + pos: -0.5,-17.5 parent: 1668 - - uid: 6341 + - uid: 5740 components: - type: Transform - pos: -3.5,-31.5 + pos: -0.5,-18.5 parent: 1668 - - uid: 6342 + - uid: 5741 components: - type: Transform - pos: -3.5,-32.5 + pos: -0.5,-19.5 parent: 1668 - - uid: 6343 + - uid: 5742 components: - type: Transform - pos: -3.5,-33.5 + pos: -0.5,-20.5 parent: 1668 - - uid: 6344 + - uid: 5743 components: - type: Transform - pos: -3.5,-34.5 + pos: -0.5,-21.5 parent: 1668 - - uid: 6345 + - uid: 5744 components: - type: Transform - pos: -2.5,-34.5 + pos: -0.5,-22.5 parent: 1668 - - uid: 6398 + - uid: 5745 components: - type: Transform - pos: -2.5,-35.5 + pos: -0.5,-23.5 parent: 1668 - - uid: 6399 + - uid: 5746 components: - type: Transform - pos: -2.5,-36.5 + pos: 0.5,-23.5 parent: 1668 - - uid: 6400 + - uid: 5747 components: - type: Transform - pos: -2.5,-36.5 + pos: 1.5,-23.5 parent: 1668 - - uid: 6401 + - uid: 5748 components: - type: Transform - pos: -1.5,-37.5 + pos: 2.5,-23.5 parent: 1668 - - uid: 6402 + - uid: 5749 components: - type: Transform - pos: -2.5,-37.5 + pos: 3.5,-23.5 parent: 1668 - - uid: 6403 + - uid: 5750 components: - type: Transform - pos: -1.5,-38.5 + pos: 3.5,-24.5 parent: 1668 - - uid: 6404 + - uid: 5751 components: - type: Transform - pos: -1.5,-39.5 + pos: 4.5,-23.5 parent: 1668 - - uid: 6405 + - uid: 5752 components: - type: Transform - pos: -1.5,-40.5 + pos: 4.5,-22.5 parent: 1668 - - uid: 6406 + - uid: 5753 components: - type: Transform - pos: -1.5,-41.5 + pos: 4.5,-21.5 parent: 1668 - - uid: 6407 + - uid: 5754 components: - type: Transform - pos: -2.5,-41.5 + pos: 4.5,-20.5 parent: 1668 - - uid: 6408 + - uid: 5755 components: - type: Transform - pos: -2.5,-40.5 + pos: 4.5,-19.5 parent: 1668 - - uid: 6515 + - uid: 5756 components: - type: Transform - pos: 5.5,30.5 + pos: 4.5,-18.5 parent: 1668 - - uid: 6516 + - uid: 5757 components: - type: Transform - pos: 6.5,30.5 + pos: 8.5,-18.5 parent: 1668 - - uid: 6517 + - uid: 5758 components: - type: Transform - pos: 7.5,29.5 + pos: 6.5,-18.5 parent: 1668 - - uid: 6518 + - uid: 5759 components: - type: Transform - pos: 7.5,28.5 + pos: 7.5,-18.5 parent: 1668 - - uid: 6519 + - uid: 5760 components: - type: Transform - pos: 7.5,27.5 + pos: 9.5,-18.5 parent: 1668 - - uid: 6520 + - uid: 5761 components: - type: Transform - pos: 7.5,26.5 + pos: 9.5,-17.5 parent: 1668 - - uid: 6547 + - uid: 5762 components: - type: Transform - pos: 8.5,26.5 + pos: 9.5,-16.5 parent: 1668 - - uid: 6548 + - uid: 5763 components: - type: Transform - pos: 10.5,26.5 + pos: 5.5,-18.5 parent: 1668 - - uid: 6549 + - uid: 5764 components: - type: Transform - pos: 11.5,26.5 + pos: 9.5,-15.5 parent: 1668 - - uid: 6550 + - uid: 5765 components: - type: Transform - pos: 11.5,27.5 + pos: 9.5,-14.5 parent: 1668 - - uid: 6551 + - uid: 5766 components: - type: Transform - pos: 11.5,28.5 + pos: 9.5,-13.5 parent: 1668 - - uid: 6552 + - uid: 5767 components: - type: Transform - pos: 11.5,29.5 + pos: 9.5,-12.5 parent: 1668 - - uid: 6553 + - uid: 5768 components: - type: Transform - pos: 11.5,30.5 + pos: 9.5,-11.5 parent: 1668 - - uid: 6554 + - uid: 5769 components: - type: Transform - pos: 12.5,30.5 + pos: 9.5,-10.5 parent: 1668 - - uid: 6577 + - uid: 5770 components: - type: Transform - pos: 13.5,30.5 + pos: 9.5,-9.5 parent: 1668 - - uid: 6849 + - uid: 5771 components: - type: Transform - pos: 32.5,-31.5 + pos: 9.5,-8.5 parent: 1668 - - uid: 6850 + - uid: 5772 components: - type: Transform - pos: 32.5,-30.5 + pos: 8.5,-8.5 parent: 1668 - - uid: 6851 + - uid: 5773 components: - type: Transform - pos: 32.5,-29.5 + pos: 8.5,-7.5 parent: 1668 - - uid: 6852 + - uid: 5774 components: - type: Transform - pos: 32.5,-28.5 + pos: 10.5,-10.5 parent: 1668 - - uid: 6853 + - uid: 5775 components: - type: Transform - pos: 32.5,-27.5 + pos: 11.5,-10.5 parent: 1668 -- proto: CableTerminal - entities: - - uid: 2191 + - uid: 5776 components: - type: Transform - pos: 27.5,-29.5 + pos: 12.5,-10.5 parent: 1668 - - uid: 5075 + - uid: 5777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-15.5 + pos: 13.5,-10.5 parent: 1668 - - uid: 5076 + - uid: 5778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-16.5 + pos: 14.5,-10.5 parent: 1668 - - uid: 5077 + - uid: 5779 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-17.5 + pos: 15.5,-10.5 parent: 1668 -- proto: CargoPallet - entities: - - uid: 6924 + - uid: 5780 components: - type: Transform - pos: -6.5,26.5 + pos: 16.5,-10.5 parent: 1668 - - uid: 6925 + - uid: 5781 components: - type: Transform - pos: -7.5,26.5 + pos: 17.5,-10.5 parent: 1668 - - uid: 6926 + - uid: 5782 components: - type: Transform - pos: -8.5,26.5 + pos: 18.5,-10.5 parent: 1668 - - uid: 6927 + - uid: 5783 components: - type: Transform - pos: -6.5,28.5 + pos: 18.5,-9.5 parent: 1668 - - uid: 6928 + - uid: 5784 components: - type: Transform - pos: -7.5,28.5 + pos: 18.5,-8.5 parent: 1668 - - uid: 6929 + - uid: 5785 components: - type: Transform - pos: -8.5,28.5 + pos: 18.5,-7.5 parent: 1668 -- proto: Carpet - entities: - - uid: 2714 + - uid: 5786 components: - type: Transform - pos: 6.5,18.5 + pos: 8.5,2.5 parent: 1668 - - uid: 2715 + - uid: 5787 components: - type: Transform - pos: 6.5,19.5 + pos: 8.5,1.5 parent: 1668 - - uid: 2716 + - uid: 5788 components: - type: Transform - pos: 5.5,18.5 + pos: 8.5,0.5 parent: 1668 - - uid: 2717 + - uid: 5789 components: - type: Transform - pos: 5.5,19.5 + pos: 8.5,-0.5 parent: 1668 -- proto: CarpetGreen - entities: - - uid: 148 + - uid: 5790 components: - type: Transform - pos: 0.5,0.5 + pos: 8.5,-1.5 parent: 1668 - - uid: 149 + - uid: 5791 components: - type: Transform - pos: -1.5,-0.5 + pos: 8.5,-2.5 parent: 1668 - - uid: 204 + - uid: 5792 components: - type: Transform - pos: 0.5,-0.5 + pos: 9.5,-2.5 parent: 1668 - - uid: 205 + - uid: 5793 components: - type: Transform - pos: -0.5,-0.5 + pos: 9.5,-3.5 parent: 1668 - - uid: 207 + - uid: 5794 components: - type: Transform - pos: -0.5,0.5 + pos: 9.5,-4.5 parent: 1668 - - uid: 1428 + - uid: 5795 components: - type: Transform - pos: -1.5,0.5 + pos: 9.5,-5.5 parent: 1668 - - uid: 3728 + - uid: 5796 components: - type: Transform - pos: -16.5,10.5 + pos: 9.5,-6.5 parent: 1668 - - uid: 3729 + - uid: 5797 components: - type: Transform - pos: -16.5,11.5 + pos: 9.5,-7.5 parent: 1668 - - uid: 3730 + - uid: 5798 components: - type: Transform - pos: -15.5,10.5 + pos: 7.5,-0.5 parent: 1668 - - uid: 3731 + - uid: 5799 components: - type: Transform - pos: -15.5,11.5 + pos: 6.5,-0.5 parent: 1668 - - uid: 3732 + - uid: 5800 components: - type: Transform - pos: -19.5,11.5 + pos: 5.5,-0.5 parent: 1668 - - uid: 3733 + - uid: 5801 components: - type: Transform - pos: -19.5,10.5 + pos: 5.5,-1.5 parent: 1668 - - uid: 3735 + - uid: 5802 components: - type: Transform - pos: -18.5,11.5 + pos: 5.5,-2.5 parent: 1668 - - uid: 3736 + - uid: 5803 components: - type: Transform - pos: -18.5,10.5 + pos: 5.5,-3.5 parent: 1668 - - uid: 3738 + - uid: 5804 components: - type: Transform - pos: -19.5,5.5 + pos: 5.5,-4.5 parent: 1668 - - uid: 3739 + - uid: 5805 components: - type: Transform - pos: -19.5,6.5 + pos: 5.5,-5.5 parent: 1668 - - uid: 3740 + - uid: 5806 components: - type: Transform - pos: -18.5,5.5 + pos: 4.5,-5.5 parent: 1668 - - uid: 3741 + - uid: 5807 components: - type: Transform - pos: -18.5,6.5 + pos: 3.5,-5.5 parent: 1668 -- proto: Catwalk - entities: - - uid: 347 + - uid: 5808 components: - type: Transform - pos: 34.5,2.5 + pos: 2.5,-5.5 parent: 1668 - - uid: 1065 + - uid: 5809 components: - type: Transform - pos: 34.5,-3.5 + pos: 1.5,-5.5 parent: 1668 - - uid: 1066 + - uid: 5810 components: - type: Transform - pos: 34.5,-5.5 + pos: 0.5,-5.5 parent: 1668 - - uid: 1067 + - uid: 5811 components: - type: Transform - pos: 34.5,4.5 + pos: -0.5,-5.5 parent: 1668 - - uid: 1179 + - uid: 5812 components: - type: Transform - pos: 16.5,-13.5 + pos: -0.5,-6.5 parent: 1668 - - uid: 2032 + - uid: 5813 components: - type: Transform - pos: -0.5,18.5 + pos: -0.5,-7.5 parent: 1668 - - uid: 2033 + - uid: 5814 components: - type: Transform - pos: -0.5,19.5 + pos: -0.5,-8.5 parent: 1668 - - uid: 2034 + - uid: 5815 components: - type: Transform - pos: -0.5,20.5 + pos: -0.5,-9.5 parent: 1668 - - uid: 2035 + - uid: 5816 components: - type: Transform - pos: 0.5,20.5 + pos: -0.5,-10.5 parent: 1668 - - uid: 2036 + - uid: 5817 components: - type: Transform - pos: 1.5,20.5 + pos: -0.5,-11.5 parent: 1668 - - uid: 2037 + - uid: 5818 components: - type: Transform - pos: -1.5,20.5 + pos: -0.5,-12.5 parent: 1668 - - uid: 2038 + - uid: 5819 components: - type: Transform - pos: -2.5,20.5 + pos: -0.5,-13.5 parent: 1668 - - uid: 2046 + - uid: 5820 components: - type: Transform - pos: -0.5,23.5 + pos: -0.5,-14.5 parent: 1668 - - uid: 2047 + - uid: 5821 components: - type: Transform - pos: -1.5,23.5 + pos: -0.5,-15.5 parent: 1668 - - uid: 2048 + - uid: 5822 components: - type: Transform - pos: -2.5,23.5 + pos: -0.5,-16.5 parent: 1668 - - uid: 2049 + - uid: 5823 components: - type: Transform - pos: -2.5,24.5 + pos: -2.5,2.5 parent: 1668 - - uid: 3239 + - uid: 5824 components: - type: Transform - pos: -2.5,26.5 + pos: -2.5,1.5 parent: 1668 - - uid: 3240 + - uid: 5825 components: - type: Transform - pos: -2.5,27.5 + pos: -2.5,0.5 parent: 1668 - - uid: 3241 + - uid: 5826 components: - type: Transform - pos: -2.5,28.5 + pos: -3.5,0.5 parent: 1668 - - uid: 3242 + - uid: 5827 components: - type: Transform - pos: -2.5,29.5 + pos: -4.5,0.5 parent: 1668 - - uid: 3243 + - uid: 5828 components: - type: Transform - pos: -2.5,30.5 + pos: -5.5,0.5 parent: 1668 - - uid: 3244 + - uid: 5829 components: - type: Transform - pos: -2.5,31.5 + pos: -6.5,0.5 parent: 1668 - - uid: 3246 + - uid: 5830 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,32.5 + pos: -6.5,-0.5 parent: 1668 - - uid: 3251 + - uid: 5831 components: - type: Transform - pos: 14.5,17.5 + pos: -6.5,-1.5 parent: 1668 - - uid: 3252 + - uid: 5832 components: - type: Transform - pos: 14.5,18.5 + pos: -6.5,-2.5 parent: 1668 - - uid: 3253 + - uid: 5833 components: - type: Transform - pos: 15.5,18.5 + pos: -6.5,-3.5 parent: 1668 - - uid: 3709 + - uid: 5834 components: - type: Transform - pos: -16.5,4.5 + pos: -6.5,-4.5 parent: 1668 - - uid: 3710 + - uid: 5835 components: - type: Transform - pos: -15.5,4.5 + pos: -6.5,-5.5 parent: 1668 - - uid: 3711 + - uid: 5836 components: - type: Transform - pos: -14.5,4.5 + pos: -5.5,-5.5 parent: 1668 - - uid: 3712 + - uid: 5837 components: - type: Transform - pos: -14.5,6.5 + pos: -4.5,-5.5 parent: 1668 - - uid: 4146 + - uid: 5838 components: - type: Transform - pos: -33.5,0.5 + pos: -3.5,-5.5 parent: 1668 - - uid: 4147 + - uid: 5839 components: - type: Transform - pos: -33.5,-1.5 + pos: -1.5,-5.5 parent: 1668 - - uid: 4181 + - uid: 5840 components: - type: Transform - pos: -27.5,3.5 + pos: -2.5,-5.5 parent: 1668 - - uid: 4182 + - uid: 5841 components: - type: Transform - pos: -27.5,4.5 + pos: -1.5,0.5 parent: 1668 - - uid: 4183 + - uid: 5842 components: - type: Transform - pos: -27.5,5.5 + pos: -0.5,0.5 parent: 1668 - - uid: 4568 + - uid: 5843 components: - type: Transform - pos: -13.5,-14.5 + pos: 0.5,0.5 parent: 1668 - - uid: 4569 + - uid: 5844 components: - type: Transform - pos: -13.5,-13.5 + pos: 1.5,0.5 parent: 1668 - - uid: 4570 + - uid: 5845 components: - type: Transform - pos: -13.5,-12.5 + pos: 2.5,0.5 parent: 1668 - - uid: 4571 + - uid: 5846 components: - type: Transform - pos: -13.5,-11.5 + pos: 3.5,0.5 parent: 1668 - - uid: 4572 + - uid: 5847 components: - type: Transform - pos: -12.5,-11.5 + pos: 4.5,0.5 parent: 1668 - - uid: 4573 + - uid: 5848 components: - type: Transform - pos: -11.5,-11.5 + pos: 5.5,0.5 parent: 1668 - - uid: 4574 + - uid: 5849 components: - type: Transform - pos: -10.5,-11.5 + pos: 5.5,1.5 parent: 1668 - - uid: 5197 + - uid: 5850 components: - type: Transform - pos: 32.5,-24.5 + pos: 5.5,2.5 parent: 1668 - - uid: 5198 + - uid: 5851 components: - type: Transform - pos: 31.5,-25.5 + pos: 5.5,3.5 parent: 1668 - - uid: 5199 + - uid: 5852 components: - type: Transform - pos: 33.5,-25.5 + pos: 6.5,3.5 parent: 1668 - - uid: 5200 + - uid: 5853 components: - type: Transform - pos: 32.5,-25.5 + pos: 7.5,3.5 parent: 1668 - - uid: 5201 + - uid: 5854 components: - type: Transform - pos: 30.5,-25.5 + pos: -6.5,-25.5 parent: 1668 - - uid: 5202 + - uid: 5855 components: - type: Transform - pos: 34.5,-25.5 + pos: -5.5,-25.5 parent: 1668 - - uid: 5203 + - uid: 5856 components: - type: Transform - pos: 34.5,-23.5 + pos: -4.5,-25.5 parent: 1668 - - uid: 5204 + - uid: 5857 components: - type: Transform - pos: 33.5,-23.5 + pos: -2.5,-25.5 parent: 1668 - - uid: 5205 + - uid: 5858 components: - type: Transform - pos: 32.5,-23.5 + pos: -1.5,-25.5 parent: 1668 - - uid: 5206 + - uid: 5859 components: - type: Transform - pos: 31.5,-23.5 + pos: -0.5,-25.5 parent: 1668 - - uid: 5207 + - uid: 5860 components: - type: Transform - pos: 30.5,-23.5 + pos: -3.5,-25.5 parent: 1668 - - uid: 5208 + - uid: 5861 components: - type: Transform - pos: 32.5,-22.5 + pos: -0.5,-24.5 parent: 1668 - - uid: 5209 + - uid: 5964 components: - type: Transform - pos: 30.5,-21.5 + pos: -13.5,7.5 parent: 1668 - - uid: 5210 + - uid: 5965 components: - type: Transform - pos: 31.5,-21.5 + pos: -13.5,6.5 parent: 1668 - - uid: 5211 + - uid: 5966 components: - type: Transform - pos: 32.5,-21.5 + pos: -14.5,6.5 parent: 1668 - - uid: 5212 + - uid: 5967 components: - type: Transform - pos: 33.5,-21.5 + pos: -15.5,6.5 parent: 1668 - - uid: 5213 + - uid: 5968 components: - type: Transform - pos: 34.5,-21.5 + pos: -15.5,7.5 parent: 1668 - - uid: 5323 + - uid: 5969 components: - type: Transform - pos: 24.5,-16.5 + pos: -16.5,7.5 parent: 1668 - - uid: 5324 + - uid: 5970 components: - type: Transform - pos: 25.5,-16.5 + pos: -16.5,8.5 parent: 1668 - - uid: 5325 + - uid: 5971 components: - type: Transform - pos: 26.5,-16.5 + pos: -16.5,9.5 parent: 1668 - - uid: 5326 + - uid: 5972 components: - type: Transform - pos: 27.5,-16.5 + pos: -16.5,10.5 parent: 1668 - - uid: 6142 + - uid: 5973 components: - type: Transform - pos: -22.5,-26.5 + pos: -17.5,10.5 parent: 1668 - - uid: 6143 + - uid: 5974 components: - type: Transform - pos: -22.5,-24.5 + pos: -18.5,10.5 parent: 1668 - - uid: 6440 + - uid: 5975 components: - type: Transform - pos: -1.5,-45.5 + pos: -18.5,11.5 parent: 1668 - - uid: 6441 + - uid: 5976 components: - type: Transform - pos: 0.5,-45.5 + pos: -18.5,12.5 parent: 1668 -- proto: CentcomIDCard - entities: - - uid: 3721 + - uid: 5977 components: - type: Transform - pos: -16.521366,8.567018 + pos: -18.5,13.5 parent: 1668 -- proto: CentcomPDA - entities: - - uid: 6617 + - uid: 5978 components: - type: Transform - pos: -20.428675,10.647655 + pos: -19.5,13.5 parent: 1668 -- proto: Chair - entities: - - uid: 517 + - uid: 5979 components: - type: Transform - pos: 22.5,5.5 + pos: -19.5,14.5 parent: 1668 - - uid: 518 + - uid: 5980 components: - type: Transform - pos: 23.5,5.5 + pos: -19.5,10.5 parent: 1668 - - uid: 519 + - uid: 5981 components: - type: Transform - pos: 24.5,5.5 + pos: -20.5,10.5 parent: 1668 - - uid: 520 + - uid: 5982 components: - type: Transform - pos: 28.5,5.5 + pos: -21.5,10.5 parent: 1668 - - uid: 521 + - uid: 5983 components: - type: Transform - pos: 29.5,5.5 + pos: -21.5,9.5 parent: 1668 - - uid: 522 + - uid: 5984 components: - type: Transform - pos: 30.5,5.5 + pos: -21.5,8.5 parent: 1668 - - uid: 532 + - uid: 5985 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-6.5 + pos: -21.5,7.5 parent: 1668 - - uid: 533 + - uid: 5986 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-6.5 + pos: -21.5,6.5 parent: 1668 - - uid: 534 + - uid: 5987 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-6.5 + pos: -20.5,6.5 parent: 1668 - - uid: 535 + - uid: 5988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-6.5 + pos: -19.5,6.5 parent: 1668 - - uid: 536 + - uid: 5989 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-6.5 + pos: -19.5,7.5 parent: 1668 - - uid: 537 + - uid: 5990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-6.5 + pos: -19.5,8.5 parent: 1668 - - uid: 538 + - uid: 5991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-4.5 + pos: -20.5,5.5 parent: 1668 - - uid: 539 + - uid: 5992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-2.5 + pos: -20.5,4.5 parent: 1668 - - uid: 540 + - uid: 5993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,1.5 + pos: -20.5,3.5 parent: 1668 - - uid: 541 + - uid: 5994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,3.5 + pos: -20.5,2.5 parent: 1668 - - uid: 634 + - uid: 5995 components: - type: Transform - pos: 10.5,1.5 + pos: -20.5,1.5 parent: 1668 - - uid: 635 + - uid: 5996 components: - type: Transform - pos: 11.5,1.5 + pos: -20.5,0.5 parent: 1668 - - uid: 636 + - uid: 5997 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-2.5 + pos: -20.5,-0.5 parent: 1668 - - uid: 637 + - uid: 6480 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-2.5 + pos: -1.5,-13.5 parent: 1668 - - uid: 638 + - uid: 6481 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-2.5 + pos: -2.5,-13.5 parent: 1668 - - uid: 639 + - uid: 6482 components: - type: Transform - pos: 13.5,1.5 + pos: -3.5,-13.5 parent: 1668 - - uid: 1644 + - uid: 6483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,11.5 + pos: -4.5,-13.5 parent: 1668 - - uid: 1645 + - uid: 6484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,13.5 + pos: -5.5,-13.5 parent: 1668 - - uid: 2168 + - uid: 6485 components: - type: Transform - pos: 1.5,16.5 + pos: -6.5,-13.5 parent: 1668 - - uid: 2169 + - uid: 6486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,15.5 + pos: -7.5,-13.5 parent: 1668 - - uid: 2170 + - uid: 6487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,14.5 + pos: -8.5,-13.5 parent: 1668 - - uid: 2171 + - uid: 6488 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,8.5 + pos: -9.5,-13.5 parent: 1668 - - uid: 2172 + - uid: 6489 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,8.5 + pos: -10.5,-13.5 parent: 1668 - - uid: 2173 + - uid: 6490 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,8.5 + pos: -11.5,-13.5 parent: 1668 - - uid: 2174 + - uid: 6491 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,8.5 + pos: -12.5,-13.5 parent: 1668 - - uid: 2175 + - uid: 6492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,9.5 + pos: -13.5,-13.5 parent: 1668 - - uid: 2176 + - uid: 6493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,10.5 + pos: -15.5,-13.5 parent: 1668 - - uid: 2415 + - uid: 6494 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,16.5 + pos: -14.5,-13.5 parent: 1668 - - uid: 2416 + - uid: 6495 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,16.5 + pos: -16.5,-13.5 parent: 1668 - - uid: 2417 + - uid: 6496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,16.5 + pos: -16.5,-12.5 parent: 1668 - - uid: 2418 + - uid: 6497 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,16.5 + pos: -16.5,-11.5 parent: 1668 - - uid: 2419 + - uid: 6960 components: - type: Transform - pos: 26.5,21.5 + pos: -21.5,-0.5 parent: 1668 - - uid: 2420 + - uid: 6961 components: - type: Transform - pos: 30.5,21.5 + pos: -22.5,-0.5 parent: 1668 - - uid: 2427 + - uid: 6962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,15.5 + pos: -23.5,-0.5 parent: 1668 - - uid: 2428 + - uid: 6963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,16.5 + pos: -24.5,-0.5 parent: 1668 - - uid: 2429 + - uid: 6964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,17.5 + pos: -25.5,-0.5 parent: 1668 - - uid: 2430 + - uid: 6965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,18.5 + pos: -26.5,-0.5 parent: 1668 - - uid: 2431 + - uid: 6966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,15.5 + pos: -27.5,-0.5 parent: 1668 - - uid: 2432 + - uid: 6967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,16.5 + pos: -28.5,-0.5 parent: 1668 - - uid: 2433 + - uid: 6968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,17.5 + pos: -29.5,-0.5 parent: 1668 - - uid: 2434 + - uid: 6969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,18.5 + pos: -31.5,-0.5 parent: 1668 - - uid: 2441 + - uid: 6970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-16.5 + pos: -32.5,-0.5 parent: 1668 - - uid: 2472 + - uid: 6971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,13.5 + pos: -30.5,-0.5 parent: 1668 - - uid: 2473 + - uid: 6972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,13.5 + pos: -33.5,-0.5 parent: 1668 - - uid: 2474 + - uid: 6973 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,13.5 + pos: -34.5,-0.5 parent: 1668 - - uid: 2475 + - uid: 6974 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,13.5 + pos: -35.5,-0.5 parent: 1668 - - uid: 2476 + - uid: 6975 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,13.5 + pos: -36.5,-0.5 parent: 1668 - - uid: 2477 + - uid: 6976 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,13.5 + pos: -37.5,-0.5 parent: 1668 - - uid: 2478 + - uid: 6977 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,12.5 + pos: -38.5,-0.5 parent: 1668 - - uid: 2479 + - uid: 6978 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,12.5 + pos: -38.5,-1.5 parent: 1668 - - uid: 2480 + - uid: 6979 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,12.5 + pos: -38.5,-2.5 parent: 1668 - - uid: 2481 + - uid: 6980 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,12.5 + pos: -38.5,-3.5 parent: 1668 - - uid: 2482 + - uid: 6981 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,12.5 + pos: -38.5,-4.5 parent: 1668 - - uid: 2483 + - uid: 6982 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,12.5 + pos: -38.5,-5.5 parent: 1668 - - uid: 2484 + - uid: 6983 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,12.5 + pos: -38.5,-6.5 parent: 1668 - - uid: 2485 + - uid: 6984 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,12.5 + pos: -38.5,-7.5 parent: 1668 - - uid: 2827 + - uid: 6985 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,21.5 + pos: -38.5,-8.5 parent: 1668 - - uid: 2828 + - uid: 6987 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,21.5 + pos: -38.5,-9.5 parent: 1668 - - uid: 3172 + - uid: 6988 components: - type: Transform - pos: 8.5,15.5 + pos: -38.5,-10.5 parent: 1668 - - uid: 3173 + - uid: 6989 components: - type: Transform - pos: 7.5,15.5 + pos: -39.5,-10.5 parent: 1668 - - uid: 3174 + - uid: 6990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,10.5 + pos: -39.5,-11.5 parent: 1668 - - uid: 3175 + - uid: 6991 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,10.5 + pos: -37.5,-7.5 parent: 1668 - - uid: 3176 + - uid: 6994 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,10.5 + pos: -36.5,-7.5 parent: 1668 - - uid: 3177 + - uid: 6995 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,10.5 + pos: -35.5,-7.5 parent: 1668 - - uid: 3827 + - uid: 6996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,23.5 + pos: -34.5,-7.5 parent: 1668 - - uid: 4152 + - uid: 6997 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,1.5 + pos: -33.5,-7.5 parent: 1668 - - uid: 4153 + - uid: 6998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-0.5 + pos: -32.5,-7.5 parent: 1668 - - uid: 4154 + - uid: 6999 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 + pos: -31.5,-7.5 parent: 1668 - - uid: 4155 + - uid: 7000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-2.5 + pos: -30.5,-7.5 parent: 1668 - - uid: 4156 + - uid: 7001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-0.5 + pos: -29.5,-7.5 parent: 1668 - - uid: 4157 + - uid: 7002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,1.5 + pos: -29.5,-6.5 parent: 1668 - - uid: 4160 + - uid: 7003 components: - type: Transform - pos: -31.5,6.5 + pos: -29.5,-5.5 parent: 1668 - - uid: 4161 + - uid: 7004 components: - type: Transform - pos: -32.5,6.5 + pos: -29.5,-4.5 parent: 1668 - - uid: 4162 + - uid: 7005 components: - type: Transform - pos: -33.5,6.5 + pos: -29.5,-3.5 parent: 1668 - - uid: 4163 + - uid: 7006 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,3.5 + pos: -29.5,-2.5 parent: 1668 - - uid: 4164 + - uid: 7007 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,3.5 + pos: -29.5,-1.5 parent: 1668 - - uid: 4165 + - uid: 7051 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,3.5 + pos: -29.5,0.5 parent: 1668 - - uid: 5246 + - uid: 7052 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-24.5 + pos: -29.5,1.5 parent: 1668 - - uid: 5249 + - uid: 7053 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-24.5 + pos: -29.5,2.5 parent: 1668 - - uid: 5308 + - uid: 7188 components: - type: Transform - pos: 27.5,-21.5 + pos: -39.5,-0.5 parent: 1668 - - uid: 5309 + - uid: 7189 components: - type: Transform - pos: 26.5,-21.5 + pos: -40.5,-0.5 parent: 1668 - - uid: 5384 + - uid: 7190 components: - type: Transform - pos: 15.5,-23.5 + pos: -41.5,-0.5 parent: 1668 - - uid: 5385 + - uid: 7191 components: - type: Transform - pos: 14.5,-23.5 + pos: -42.5,-0.5 parent: 1668 - - uid: 6148 + - uid: 7192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-22.5 + pos: -43.5,-0.5 parent: 1668 - - uid: 6149 + - uid: 7193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-22.5 + pos: -44.5,-0.5 parent: 1668 - - uid: 6152 + - uid: 7194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-28.5 + pos: -45.5,-0.5 parent: 1668 - - uid: 6153 + - uid: 7195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-27.5 + pos: -46.5,-0.5 parent: 1668 - - uid: 6240 + - uid: 7196 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-27.5 + pos: -47.5,-0.5 parent: 1668 - - uid: 6243 + - uid: 7197 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-27.5 + pos: -48.5,-0.5 parent: 1668 - - uid: 6391 + - uid: 7198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-43.5 + pos: -49.5,-0.5 parent: 1668 - - uid: 6392 + - uid: 7199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-41.5 + pos: -50.5,-0.5 parent: 1668 - - uid: 6393 + - uid: 7200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-43.5 + pos: -51.5,-0.5 parent: 1668 - - uid: 6394 + - uid: 7201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-41.5 + pos: -51.5,0.5 parent: 1668 - - uid: 6567 + - uid: 7202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-33.5 + pos: -51.5,1.5 parent: 1668 - - uid: 6568 + - uid: 7203 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-33.5 + pos: -51.5,2.5 parent: 1668 - - uid: 6569 + - uid: 7204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-33.5 + pos: -45.5,2.5 parent: 1668 - - uid: 6570 + - uid: 7205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-33.5 + pos: -45.5,1.5 parent: 1668 - - uid: 6579 + - uid: 7206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-30.5 + pos: -45.5,0.5 parent: 1668 - - uid: 6580 + - uid: 7207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-30.5 + pos: -47.5,-3.5 parent: 1668 - - uid: 6585 + - uid: 7208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-30.5 + pos: -47.5,-1.5 parent: 1668 - - uid: 6586 + - uid: 7209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-30.5 + pos: -47.5,-2.5 parent: 1668 - - uid: 6587 + - uid: 8798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-33.5 + pos: -10.5,-12.5 parent: 1668 - - uid: 6588 + - uid: 8799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-33.5 + pos: -10.5,-11.5 parent: 1668 - - uid: 6589 + - uid: 8913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-33.5 + pos: -15.5,-48.5 parent: 1668 - - uid: 6590 + - uid: 9135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-33.5 + pos: 22.5,-27.5 parent: 1668 - - uid: 6748 + - uid: 9136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-17.5 + pos: 22.5,-28.5 parent: 1668 -- proto: ChairOfficeDark - entities: - - uid: 506 + - uid: 9222 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-8.5 + pos: -22.5,6.5 parent: 1668 - - uid: 507 + - uid: 9223 components: - type: Transform - pos: 27.5,-10.5 + pos: -23.5,6.5 parent: 1668 - - uid: 604 + - uid: 9224 components: - type: Transform - pos: 12.5,3.5 + pos: -24.5,6.5 parent: 1668 - - uid: 605 + - uid: 9225 components: - type: Transform - pos: 14.5,3.5 + pos: -25.5,6.5 parent: 1668 - - uid: 817 + - uid: 9226 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-12.5 + pos: -26.5,6.5 parent: 1668 - - uid: 818 + - uid: 9227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-12.5 + pos: -27.5,6.5 parent: 1668 - - uid: 1401 + - uid: 9228 components: - type: Transform - pos: -1.5,-1.5 + pos: -28.5,6.5 parent: 1668 - - uid: 1402 + - uid: 9229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-1.5 + pos: -29.5,6.5 parent: 1668 - - uid: 1403 + - uid: 9230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 + pos: -30.5,6.5 parent: 1668 - - uid: 1404 + - uid: 9231 components: - type: Transform - pos: 0.5,-1.5 + pos: -31.5,6.5 parent: 1668 - - uid: 1405 + - uid: 9232 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,0.5 + pos: -32.5,6.5 parent: 1668 - - uid: 1646 + - uid: 9233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,10.5 + pos: -33.5,6.5 parent: 1668 - - uid: 1647 + - uid: 9234 components: - type: Transform - pos: -8.5,9.5 + pos: -34.5,6.5 parent: 1668 - - uid: 1648 + - uid: 9235 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,11.5 + pos: -34.5,7.5 parent: 1668 - - uid: 1649 + - uid: 9236 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,10.5 + pos: -34.5,8.5 parent: 1668 - - uid: 2744 + - uid: 9237 components: - type: Transform - pos: 9.5,17.5 + pos: -34.5,9.5 parent: 1668 - - uid: 3621 + - uid: 9238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,4.5 + pos: -34.5,10.5 parent: 1668 - - uid: 3622 + - uid: 9239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,5.5 + pos: -34.5,11.5 parent: 1668 - - uid: 3623 + - uid: 9240 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,5.5 + pos: -34.5,12.5 parent: 1668 - - uid: 3880 + - uid: 9241 components: - type: Transform - pos: -21.5,-4.5 + pos: -34.5,13.5 parent: 1668 - - uid: 3881 + - uid: 9242 components: - type: Transform - pos: -20.5,-4.5 + pos: -34.5,14.5 parent: 1668 - - uid: 3882 + - uid: 9243 components: - type: Transform - pos: -19.5,-4.5 + pos: -33.5,5.5 parent: 1668 - - uid: 3884 + - uid: 9244 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-6.5 + pos: -33.5,4.5 parent: 1668 - - uid: 3886 + - uid: 9245 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-8.5 + pos: -33.5,3.5 parent: 1668 - - uid: 3887 + - uid: 9246 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-8.5 + pos: -33.5,2.5 parent: 1668 - - uid: 3888 + - uid: 9247 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-8.5 + pos: -33.5,1.5 parent: 1668 - - uid: 5243 + - uid: 9248 components: - type: Transform - pos: 3.5,-16.5 + pos: -33.5,0.5 parent: 1668 - - uid: 5336 +- proto: CableMVStack + entities: + - uid: 6777 components: - type: Transform - pos: 16.5,-21.5 - parent: 1668 - - uid: 5337 + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-21.5 - parent: 1668 - - uid: 6939 + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableTerminal + entities: + - uid: 3209 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,30.5 - parent: 1668 - - uid: 6940 - components: - - type: Transform - pos: -10.5,30.5 + pos: -13.5,17.5 parent: 1668 - - uid: 6941 + - uid: 3246 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,25.5 + pos: -13.5,19.5 parent: 1668 -- proto: ChairWood - entities: - - uid: 4617 + - uid: 3247 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-29.5 + pos: -13.5,18.5 parent: 1668 -- proto: ChemDispenser - entities: - - uid: 824 + - uid: 5961 components: - type: Transform - pos: 3.5,-13.5 + rot: -1.5707963267948966 rad + pos: -12.5,5.5 parent: 1668 -- proto: ChemistryHotplate +- proto: CaptainIDCard entities: - - uid: 254 + - uid: 499 components: - type: Transform - pos: 3.5,-10.5 + pos: 1.5249417,-2.3881862 parent: 1668 -- proto: ChemMaster - entities: - - uid: 825 + - uid: 2812 components: - type: Transform - pos: 4.5,-13.5 + pos: -17.501116,11.701667 parent: 1668 - - uid: 4425 + - uid: 9196 components: - type: Transform - pos: 10.5,-23.5 + pos: -42.55799,-7.110467 parent: 1668 -- proto: ChessBoard +- proto: CarbonDioxideCanister entities: - - uid: 3762 + - uid: 4117 components: - type: Transform - pos: -23.529772,4.584259 + pos: -23.5,28.5 parent: 1668 -- proto: CigarGold +- proto: Carpet entities: - - uid: 2465 + - uid: 1194 components: - type: Transform - pos: 30.393238,23.676378 + pos: 25.5,20.5 parent: 1668 - - uid: 2466 + - uid: 1293 components: - type: Transform - pos: 30.502613,23.598253 + pos: 32.5,-22.5 parent: 1668 - - uid: 3746 + - uid: 1294 components: - type: Transform - pos: -23.553053,10.781973 + pos: 32.5,-21.5 parent: 1668 - - uid: 3747 + - uid: 1295 components: - type: Transform - pos: -23.443678,10.672598 + pos: 32.5,-20.5 parent: 1668 - - uid: 3877 + - uid: 1976 components: - type: Transform - pos: -26.36634,-3.4881558 + pos: 24.5,20.5 parent: 1668 - - uid: 3878 + - uid: 1977 components: - type: Transform - pos: -26.30384,-3.5194058 + pos: 24.5,21.5 parent: 1668 -- proto: CloningPod - entities: - - uid: 722 + - uid: 1979 components: - type: Transform - pos: 11.5,-13.5 + pos: 25.5,21.5 parent: 1668 - - type: Construction - containers: - - machine_parts - - machine_board -- proto: ClosetChefFilled - entities: - - uid: 4579 + - uid: 1984 components: - type: Transform - pos: -9.5,-21.5 + pos: 24.5,24.5 parent: 1668 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 1071 + - uid: 7271 components: - type: Transform - pos: 34.5,-2.5 + pos: -50.5,5.5 parent: 1668 - - uid: 1072 + - uid: 7272 components: - type: Transform - pos: 34.5,5.5 + pos: -50.5,4.5 parent: 1668 - - uid: 2044 + - uid: 7302 components: - type: Transform - pos: -3.5,24.5 + pos: -48.5,4.5 parent: 1668 - - uid: 4148 + - uid: 7304 components: - type: Transform - pos: -33.5,1.5 + pos: -48.5,5.5 parent: 1668 - - uid: 4149 + - uid: 7308 components: - type: Transform - pos: -33.5,-2.5 + pos: -49.5,4.5 parent: 1668 - - uid: 4159 + - uid: 7310 components: - type: Transform - pos: -30.5,6.5 + pos: -49.5,5.5 parent: 1668 - - uid: 5352 +- proto: CarpetBlue + entities: + - uid: 2094 components: - type: Transform - pos: 20.5,-26.5 + pos: 28.5,11.5 parent: 1668 - - uid: 6147 + - uid: 2095 components: - type: Transform - pos: -22.5,-22.5 + pos: 28.5,12.5 parent: 1668 - - uid: 6252 + - uid: 2096 components: - type: Transform - pos: -14.5,-16.5 + pos: 27.5,11.5 parent: 1668 -- proto: ClosetFireFilled - entities: - - uid: 1073 + - uid: 2097 components: - type: Transform - pos: 34.5,1.5 + pos: 27.5,12.5 parent: 1668 - - uid: 1074 +- proto: CarpetGreen + entities: + - uid: 14 components: - type: Transform - pos: 34.5,-6.5 + pos: -0.5,0.5 parent: 1668 - - uid: 4158 + - uid: 490 components: - type: Transform - pos: -29.5,6.5 + pos: -1.5,0.5 parent: 1668 - - uid: 5356 + - uid: 491 components: - type: Transform - pos: 19.5,-26.5 + pos: -1.5,-0.5 parent: 1668 - - uid: 6146 + - uid: 495 components: - type: Transform - pos: -22.5,-28.5 + pos: 0.5,0.5 parent: 1668 -- proto: ClosetL3JanitorFilled - entities: - - uid: 6229 + - uid: 525 components: - type: Transform - pos: -16.5,-31.5 + pos: -0.5,-0.5 parent: 1668 -- proto: ClosetLegalFilled - entities: - - uid: 2490 + - uid: 526 components: - type: Transform - pos: 19.5,23.5 + pos: 0.5,-0.5 parent: 1668 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 2442 + - uid: 2046 components: - type: Transform - pos: 21.5,-26.5 + rot: 1.5707963267948966 rad + pos: 32.5,25.5 parent: 1668 - - uid: 5331 + - uid: 2047 components: - type: Transform - pos: 34.5,-15.5 + rot: 1.5707963267948966 rad + pos: 32.5,26.5 parent: 1668 - - uid: 5332 + - uid: 2048 components: - type: Transform - pos: 34.5,-18.5 + rot: 1.5707963267948966 rad + pos: 32.5,27.5 parent: 1668 -- proto: ClosetSteelBase - entities: - - uid: 2491 + - uid: 2049 components: - type: Transform - pos: 20.5,23.5 + rot: 1.5707963267948966 rad + pos: 33.5,25.5 parent: 1668 -- proto: ClosetToolFilled - entities: - - uid: 3254 + - uid: 2050 components: - type: Transform - pos: 14.5,19.5 + rot: 1.5707963267948966 rad + pos: 33.5,27.5 parent: 1668 -- proto: ClothingBackpackDuffelCargo - entities: - - uid: 6932 + - uid: 2051 components: - type: Transform - pos: -5.4863143,25.64425 + rot: 1.5707963267948966 rad + pos: 34.5,25.5 parent: 1668 -- proto: ClothingBackpackERTSecurity - entities: - - uid: 2901 + - uid: 2052 components: - type: Transform - pos: 16.642612,32.410297 + rot: 1.5707963267948966 rad + pos: 34.5,26.5 parent: 1668 - - uid: 2902 + - uid: 2053 components: - type: Transform - pos: 16.439487,32.566547 + rot: 1.5707963267948966 rad + pos: 34.5,27.5 parent: 1668 - - uid: 2903 + - uid: 2054 components: - type: Transform - pos: 2.6113625,32.457172 + rot: 1.5707963267948966 rad + pos: 33.5,26.5 parent: 1668 - - uid: 2904 + - uid: 2851 components: - type: Transform - pos: 2.4551125,32.613422 + pos: -18.5,15.5 parent: 1668 -- proto: ClothingBackpackSatchelHolding - entities: - - uid: 3737 + - uid: 2852 components: - type: Transform - pos: -26.540686,12.537982 + pos: -16.5,11.5 parent: 1668 -- proto: ClothingBeltChiefEngineerFilled - entities: - - uid: 6956 + - uid: 2853 components: - type: Transform - pos: 20.568373,-22.468605 + pos: -16.5,12.5 parent: 1668 -- proto: ClothingBeltSecurityFilled - entities: - - uid: 1460 + - uid: 2854 components: - type: Transform - pos: -6.4730563,-12.590733 + pos: -15.5,11.5 parent: 1668 - - uid: 3151 + - uid: 2855 components: - type: Transform - pos: 9.512553,25.678463 + pos: -15.5,12.5 parent: 1668 - - uid: 3152 + - uid: 2856 components: - type: Transform - pos: 9.637553,25.537838 + pos: -13.5,11.5 parent: 1668 -- proto: ClothingBeltSheathFilled - entities: - - uid: 3725 + - uid: 2857 components: - type: Transform - pos: -15.72449,12.605259 + pos: -13.5,12.5 parent: 1668 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 2241 + - uid: 2858 components: - type: Transform - pos: -9.339353,8.480244 + pos: -12.5,11.5 parent: 1668 - - uid: 3909 + - uid: 2859 components: - type: Transform - pos: -13.494019,-9.4266615 + pos: -12.5,12.5 parent: 1668 - - uid: 5345 + - uid: 2978 components: - type: Transform - pos: 25.530863,-26.462372 + pos: -17.5,6.5 parent: 1668 -- proto: ClothingEyesGlassesChemical - entities: - - uid: 6846 + - uid: 2979 components: - type: Transform - pos: 3.5108106,-10.103214 + pos: -17.5,5.5 parent: 1668 -- proto: ClothingEyesGlassesSecurity - entities: - - uid: 2204 + - uid: 2980 components: - type: Transform - pos: 16.59961,30.616188 + pos: -16.5,6.5 parent: 1668 - - uid: 2205 + - uid: 2983 components: - type: Transform - pos: 16.490234,30.741188 + pos: -16.5,5.5 parent: 1668 - - uid: 4173 + - uid: 3034 components: - type: Transform - pos: 2.5571308,30.616188 + pos: 26.5,24.5 parent: 1668 - - uid: 4388 + - uid: 4841 components: - type: Transform - pos: 2.4477558,30.694313 + pos: -0.5,-46.5 parent: 1668 -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 2449 + - uid: 6178 components: - type: Transform - pos: -15.8832245,12.471813 + pos: -24.5,-8.5 parent: 1668 - - uid: 6947 + - uid: 6179 components: - type: Transform - pos: -27.440563,-8.922831 + pos: -24.5,-7.5 parent: 1668 - - uid: 6948 + - uid: 6180 components: - type: Transform - pos: -27.440563,-8.922831 + pos: -24.5,-6.5 parent: 1668 - - uid: 6949 + - uid: 6189 components: - type: Transform - pos: -27.440563,-8.922831 + pos: -21.5,-7.5 parent: 1668 -- proto: ClothingEyesHudDiagnostic - entities: - - uid: 5371 + - uid: 7311 components: - type: Transform - pos: 26.529047,-22.34483 + pos: -44.5,4.5 parent: 1668 -- proto: ClothingHandsGlovesColorBlue - entities: - - uid: 6950 + - uid: 7312 components: - type: Transform - pos: -26.706188,-9.407206 + pos: -44.5,5.5 parent: 1668 - - uid: 6951 + - uid: 7313 components: - type: Transform - pos: -26.706188,-9.407206 + pos: -43.5,4.5 parent: 1668 - - uid: 6952 + - uid: 7314 components: - type: Transform - pos: -26.706188,-9.407206 + pos: -43.5,5.5 parent: 1668 -- proto: ClothingHandsGlovesCombat - entities: - - uid: 255 + - uid: 7315 components: - type: Transform - pos: 2.4165058,30.959938 + pos: -42.5,4.5 parent: 1668 - - uid: 297 + - uid: 7316 components: - type: Transform - pos: 2.6508808,30.850563 + pos: -42.5,5.5 parent: 1668 - - uid: 823 + - uid: 9073 components: - type: Transform - pos: 16.41518,30.975563 + pos: -7.5,-8.5 parent: 1668 - - uid: 833 + - uid: 9074 components: - type: Transform - pos: 16.57143,30.913063 + pos: -6.5,-8.5 parent: 1668 - - uid: 3724 + - uid: 9281 components: - type: Transform - pos: -16.552616,8.708888 + pos: -20.5,3.5 parent: 1668 -- proto: ClothingHeadHatWelding +- proto: CarpetOrange entities: - - uid: 2197 + - uid: 2074 components: - type: Transform - pos: -1.4187617,24.501104 + pos: 31.5,11.5 parent: 1668 - - uid: 3700 + - uid: 2076 components: - type: Transform - pos: -16.435745,6.5478344 + pos: 30.5,12.5 parent: 1668 - - uid: 5372 + - uid: 2085 components: - type: Transform - pos: 27.357172,-22.34483 + pos: 30.5,11.5 parent: 1668 - - uid: 5373 + - uid: 2090 components: - type: Transform - pos: 27.544672,-22.46983 + pos: 31.5,12.5 parent: 1668 -- proto: ClothingHeadsetAltCentCom - entities: - - uid: 1435 + - uid: 2091 components: - type: Transform - pos: 0.47396702,1.5393463 + pos: 32.5,11.5 parent: 1668 - - uid: 3823 + - uid: 2092 components: - type: Transform - pos: 2.6429226,32.7473 + pos: 32.5,12.5 parent: 1668 - - uid: 3824 +- proto: CarpetPurple + entities: + - uid: 1289 components: - type: Transform - pos: 2.7522976,32.637924 + pos: 30.5,-23.5 parent: 1668 - - uid: 3825 + - uid: 1291 components: - type: Transform - pos: 16.661858,32.6848 + pos: 28.5,-23.5 parent: 1668 - - uid: 3826 + - uid: 1292 components: - type: Transform - pos: 16.771233,32.575424 + pos: 29.5,-23.5 parent: 1668 -- proto: ClothingMaskGas - entities: - - uid: 2224 + - uid: 1296 components: - type: Transform - pos: -11.500146,17.576977 + pos: 30.5,-19.5 parent: 1668 -- proto: ClothingMaskGasAtmos - entities: - - uid: 5346 + - uid: 1297 components: - type: Transform - pos: 21.493792,-17.470217 + pos: 29.5,-19.5 parent: 1668 -- proto: ClothingMaskGasDeathSquad - entities: - - uid: 299 + - uid: 1298 components: - type: Transform - pos: 16.360958,32.006813 + pos: 28.5,-19.5 parent: 1668 - - uid: 821 + - uid: 1299 components: - type: Transform - pos: 2.59024,31.975563 + pos: 28.5,-22.5 parent: 1668 - - uid: 822 + - uid: 1300 components: - type: Transform - pos: 2.34024,32.022438 + pos: 27.5,-22.5 parent: 1668 - - uid: 1434 + - uid: 1301 components: - type: Transform - pos: 16.595333,31.897438 + pos: 26.5,-22.5 parent: 1668 -- proto: ClothingNeckBronzeheart - entities: - - uid: 4377 + - uid: 1302 components: - type: Transform - pos: -3.5,-21.5 + pos: 28.5,-20.5 parent: 1668 -- proto: ClothingNeckCloakNanotrasen - entities: - - uid: 2452 + - uid: 1303 components: - type: Transform - pos: -27.456188,-9.313456 + pos: 27.5,-20.5 parent: 1668 - - uid: 2737 + - uid: 1304 components: - type: Transform - pos: -27.456188,-9.313456 + pos: 26.5,-20.5 parent: 1668 - - uid: 4266 + - uid: 1305 components: - type: Transform - pos: -27.456188,-9.313456 + pos: 26.5,-21.5 parent: 1668 - - uid: 4615 + - uid: 1306 components: - type: Transform - pos: -27.456188,-9.313456 + pos: 25.5,-21.5 parent: 1668 -- proto: ClothingNeckGoldmedal - entities: - - uid: 4378 + - uid: 1307 components: - type: Transform - pos: 2.5,-21.5 + pos: 29.5,-22.5 parent: 1668 -- proto: ClothingNeckLawyerbadge - entities: - - uid: 4379 + - uid: 1308 components: - type: Transform - pos: -3.5,-23.5 + pos: 29.5,-21.5 parent: 1668 - - uid: 6936 + - uid: 1309 components: - type: Transform - pos: 19.539907,21.362776 + pos: 29.5,-20.5 parent: 1668 -- proto: ClothingOuterArmorCaptainCarapace +- proto: CarpetSBlue entities: - - uid: 3771 + - uid: 1980 components: - type: Transform - pos: -12.455681,6.5291095 + pos: 27.5,20.5 parent: 1668 -- proto: ClothingOuterHardsuitDeathsquad - entities: - - uid: 2897 + - uid: 1981 components: - type: Transform - pos: 3.403695,32.551796 + pos: 27.5,21.5 parent: 1668 - - uid: 2898 + - uid: 1982 components: - type: Transform - pos: 3.653695,32.69242 + pos: 28.5,20.5 parent: 1668 - - uid: 2899 + - uid: 1983 components: - type: Transform - pos: 15.372445,32.53617 + pos: 28.5,21.5 parent: 1668 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]90%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]80%[/color]. - priority: 0 - component: Armor - title: null - - uid: 2900 + - uid: 1985 components: - type: Transform - pos: 15.653695,32.676796 + pos: 28.5,24.5 parent: 1668 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]90%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]80%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]80%[/color]. - priority: 0 - component: Armor - title: null -- proto: ClothingShoesBootsLaceup +- proto: Catwalk entities: - - uid: 3722 + - uid: 3236 components: - type: Transform - pos: -16.568241,9.145143 + pos: -27.5,18.5 parent: 1668 - - uid: 6953 + - uid: 3598 components: - type: Transform - pos: -27.518688,-8.610331 + pos: -11.5,16.5 parent: 1668 - - uid: 6954 + - uid: 3599 components: - type: Transform - pos: -27.518688,-8.610331 + pos: -12.5,16.5 parent: 1668 - - uid: 6955 + - uid: 3600 components: - type: Transform - pos: -27.518688,-8.610331 + pos: -13.5,16.5 parent: 1668 -- proto: ClothingShoesBootsMagAdv - entities: - - uid: 2909 + - uid: 3601 components: - type: Transform - pos: 3.4296377,30.58716 + pos: -14.5,16.5 parent: 1668 - - uid: 2910 + - uid: 3890 components: - type: Transform - pos: 3.6171377,30.446535 + pos: -3.5,34.5 parent: 1668 - - uid: 2911 + - uid: 3891 components: - type: Transform - pos: 15.407025,30.634035 + pos: -3.5,35.5 parent: 1668 - - uid: 2912 + - uid: 3899 components: - type: Transform - pos: 15.6414,30.415285 + pos: 4.5,34.5 parent: 1668 -- proto: ClothingShoesLeather - entities: - - uid: 3775 + - uid: 3900 components: - type: Transform - pos: -10.574664,4.498021 + pos: 4.5,35.5 parent: 1668 -- proto: ClothingUniformJumpsuitDeathSquad - entities: - - uid: 2206 + - uid: 3901 components: - type: Transform - pos: 15.35466,32.444313 + pos: 2.5,34.5 parent: 1668 - - uid: 2722 + - uid: 3902 components: - type: Transform - pos: 3.637115,32.584938 + pos: 2.5,35.5 parent: 1668 - - uid: 4398 + - uid: 4005 components: - type: Transform - pos: 3.40274,32.428688 + pos: -27.5,19.5 parent: 1668 - - uid: 4723 + - uid: 4006 components: - type: Transform - pos: 15.651535,32.600563 + pos: -27.5,21.5 parent: 1668 -- proto: ClothingUniformJumpsuitNanotrasen - entities: - - uid: 2446 + - uid: 4007 components: - type: Transform - pos: -27.362438,-9.485331 + pos: -27.5,22.5 parent: 1668 - - uid: 2451 + - uid: 4008 components: - type: Transform - pos: -27.362438,-9.485331 + pos: -27.5,23.5 parent: 1668 - - uid: 2453 + - uid: 4009 components: - type: Transform - pos: -27.362438,-9.485331 + pos: -27.5,24.5 parent: 1668 - - uid: 2728 + - uid: 4010 components: - type: Transform - pos: -27.362438,-9.485331 + pos: -27.5,25.5 parent: 1668 -- proto: ComfyChair - entities: - - uid: 502 + - uid: 4011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,12.5 + pos: -27.5,26.5 parent: 1668 - - uid: 2194 + - uid: 4012 components: - type: Transform - pos: -0.5,24.5 + pos: -27.5,27.5 parent: 1668 - - uid: 2421 + - uid: 4013 components: - type: Transform - pos: 28.5,21.5 + pos: -27.5,28.5 parent: 1668 - - uid: 2447 + - uid: 4014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,9.5 + pos: -27.5,20.5 parent: 1668 - - uid: 2450 + - uid: 4840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,14.5 + pos: -18.5,-48.5 parent: 1668 - - uid: 2492 + - uid: 4843 components: - type: Transform - pos: 20.5,21.5 + pos: -19.5,-48.5 parent: 1668 - - uid: 2493 + - uid: 4844 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,19.5 + pos: -20.5,-48.5 parent: 1668 - - uid: 2494 + - uid: 4845 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,19.5 + pos: -21.5,-48.5 parent: 1668 - - uid: 3171 + - uid: 4846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,13.5 + pos: 17.5,-48.5 parent: 1668 - - uid: 3611 + - uid: 4847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,11.5 + pos: 18.5,-48.5 parent: 1668 - - uid: 3612 + - uid: 4848 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,11.5 + pos: 19.5,-48.5 parent: 1668 - - uid: 3613 + - uid: 4849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,10.5 + pos: 20.5,-48.5 parent: 1668 - - uid: 3614 + - uid: 6217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,11.5 + pos: -4.5,-17.5 parent: 1668 - - uid: 3615 + - uid: 6218 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,11.5 + pos: -5.5,-17.5 parent: 1668 - - uid: 3616 + - uid: 7339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,10.5 + pos: -54.5,-1.5 parent: 1668 - - uid: 3617 + - uid: 7340 components: - type: Transform - pos: -24.5,5.5 + pos: -54.5,-0.5 parent: 1668 - - uid: 3618 + - uid: 7341 components: - type: Transform - pos: -23.5,5.5 + pos: -54.5,0.5 parent: 1668 - - uid: 3619 + - uid: 7342 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,3.5 + pos: -53.5,-1.5 parent: 1668 - - uid: 3620 + - uid: 7343 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,3.5 + pos: -53.5,-0.5 parent: 1668 - - uid: 3718 + - uid: 7344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,12.5 + pos: -53.5,0.5 parent: 1668 - - uid: 3879 + - uid: 7446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-6.5 + pos: -37.5,-24.5 parent: 1668 - - uid: 4189 + - uid: 7447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,13.5 + pos: -37.5,-28.5 parent: 1668 - - uid: 4437 + - uid: 7448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-26.5 + pos: -33.5,-28.5 parent: 1668 - - uid: 4441 + - uid: 7449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-29.5 + pos: -33.5,-24.5 parent: 1668 - - uid: 4442 + - uid: 7450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-29.5 + pos: -29.5,-24.5 parent: 1668 - - uid: 4443 + - uid: 7451 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-25.5 + pos: -29.5,-28.5 parent: 1668 - - uid: 4444 + - uid: 7452 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-26.5 + pos: -25.5,-28.5 parent: 1668 - - uid: 4445 + - uid: 7453 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-25.5 + pos: -25.5,-24.5 parent: 1668 - - uid: 4446 + - uid: 7454 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-26.5 + pos: -21.5,-28.5 parent: 1668 - - uid: 4447 + - uid: 7455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-25.5 + pos: -21.5,-24.5 parent: 1668 - - uid: 4448 + - uid: 7456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-26.5 + pos: -17.5,-24.5 parent: 1668 - - uid: 4449 + - uid: 7457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-25.5 + pos: -13.5,-24.5 parent: 1668 - - uid: 4450 + - uid: 7458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-28.5 + pos: -9.5,-24.5 parent: 1668 - - uid: 4451 + - uid: 7459 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-28.5 + pos: -5.5,-24.5 parent: 1668 - - uid: 4453 + - uid: 7484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-29.5 + pos: -41.5,-26.5 parent: 1668 - - uid: 4458 + - uid: 9086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-28.5 + pos: -5.5,-9.5 parent: 1668 - - uid: 4470 +- proto: CentcomIDCard + entities: + - uid: 500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-28.5 + pos: 1.6499417,-2.5131862 parent: 1668 - - uid: 4472 + - uid: 2814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-29.5 + pos: -17.376116,11.607917 parent: 1668 - - uid: 5422 +- proto: CentcomPDA + entities: + - uid: 22 components: - type: Transform - pos: 17.5,-29.5 + pos: 1.5543553,-2.2420077 parent: 1668 - - uid: 6614 + - uid: 935 components: - type: Transform - pos: 18.5,15.5 + pos: 1.5543553,-2.2420077 parent: 1668 - - uid: 6616 + - uid: 2817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,14.5 + pos: -12.531908,13.561042 parent: 1668 -- proto: ComputerAlert +- proto: Chair entities: - - uid: 655 + - uid: 804 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-2.5 + pos: 14.5,1.5 parent: 1668 - - uid: 4973 + - uid: 805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-20.5 + pos: 12.5,1.5 parent: 1668 - - uid: 5338 + - uid: 806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-16.5 + rot: 3.141592653589793 rad + pos: 14.5,-2.5 parent: 1668 -- proto: computerBodyScanner - entities: - - uid: 611 + - uid: 807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-2.5 + parent: 1668 + - uid: 1372 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-6.5 + pos: 8.5,4.5 parent: 1668 -- proto: ComputerCargoBounty - entities: - - uid: 6923 + - uid: 1756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,23.5 + pos: -5.5,5.5 parent: 1668 -- proto: ComputerCargoOrders - entities: - - uid: 1624 + - uid: 1760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,11.5 + pos: 4.5,5.5 parent: 1668 - - uid: 1650 + - uid: 1761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,16.5 + pos: 5.5,5.5 parent: 1668 - - uid: 1653 + - uid: 1870 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,14.5 + pos: 28.5,24.5 parent: 1668 -- proto: ComputerCargoShuttle - entities: - - uid: 1625 + - uid: 1871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,12.5 + pos: 24.5,24.5 parent: 1668 - - uid: 1651 + - uid: 1873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,15.5 + rot: 3.141592653589793 rad + pos: 2.5,18.5 parent: 1668 - - uid: 1652 + - uid: 1962 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,14.5 + pos: 22.5,18.5 parent: 1668 - - uid: 3818 + - uid: 1963 components: - type: Transform - pos: -13.5,17.5 + rot: 3.141592653589793 rad + pos: 22.5,17.5 parent: 1668 -- proto: ComputerCloningConsole - entities: - - uid: 575 + - uid: 1964 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-13.5 + rot: 3.141592653589793 rad + pos: 23.5,18.5 parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 722: - - CloningPodSender: CloningPodReceiver - 723: - - MedicalScannerSender: MedicalScannerReceiver -- proto: ComputerComms - entities: - - uid: 652 + - uid: 1965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 + rot: 3.141592653589793 rad + pos: 23.5,17.5 parent: 1668 - - uid: 3447 + - uid: 1966 components: - type: Transform - pos: -19.5,12.5 + rot: 3.141592653589793 rad + pos: 24.5,18.5 parent: 1668 - - uid: 3629 + - uid: 1967 components: - type: Transform - pos: -18.5,6.5 + rot: 3.141592653589793 rad + pos: 24.5,17.5 parent: 1668 - - uid: 3630 + - uid: 1968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,11.5 + rot: 3.141592653589793 rad + pos: 28.5,18.5 parent: 1668 - - uid: 3837 + - uid: 1969 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,-7.5 + pos: 28.5,17.5 parent: 1668 -- proto: ComputerCrewMonitoring - entities: - - uid: 593 + - uid: 1970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,3.5 + rot: 3.141592653589793 rad + pos: 29.5,18.5 parent: 1668 - - uid: 608 + - uid: 1971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-4.5 + rot: 3.141592653589793 rad + pos: 29.5,17.5 parent: 1668 - - uid: 656 + - uid: 1972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-1.5 + rot: 3.141592653589793 rad + pos: 30.5,18.5 parent: 1668 -- proto: ComputerCriminalRecords - entities: - - uid: 498 + - uid: 1973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 + rot: 3.141592653589793 rad + pos: 30.5,17.5 parent: 1668 - - uid: 591 + - uid: 2006 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,4.5 + rot: 3.141592653589793 rad + pos: 25.5,17.5 parent: 1668 - - uid: 653 + - uid: 2007 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-2.5 + pos: 25.5,18.5 parent: 1668 - - uid: 813 + - uid: 2008 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-13.5 + pos: 27.5,17.5 parent: 1668 - - uid: 2426 + - uid: 2009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,17.5 + rot: 3.141592653589793 rad + pos: 27.5,18.5 parent: 1668 - - uid: 3258 + - uid: 2010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,22.5 + rot: 3.141592653589793 rad + pos: 31.5,17.5 parent: 1668 -- proto: ComputerId - entities: - - uid: 589 + - uid: 2011 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,3.5 + pos: 31.5,18.5 parent: 1668 - - uid: 651 + - uid: 2012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 + rot: 3.141592653589793 rad + pos: 21.5,17.5 parent: 1668 - - uid: 3448 + - uid: 2013 components: - type: Transform - pos: -18.5,12.5 + rot: 3.141592653589793 rad + pos: 21.5,18.5 parent: 1668 - - uid: 3907 + - uid: 2014 components: - type: Transform - pos: -25.5,-5.5 + rot: 3.141592653589793 rad + pos: 25.5,16.5 parent: 1668 -- proto: ComputerMedicalRecords - entities: - - uid: 657 + - uid: 2015 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-0.5 + rot: 3.141592653589793 rad + pos: 24.5,16.5 parent: 1668 -- proto: ComputerPalletConsole - entities: - - uid: 6930 + - uid: 2016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,27.5 + rot: 3.141592653589793 rad + pos: 23.5,16.5 parent: 1668 -- proto: ComputerPowerMonitoring - entities: - - uid: 3256 + - uid: 2017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,18.5 + rot: 3.141592653589793 rad + pos: 22.5,16.5 parent: 1668 - - uid: 3573 + - uid: 2018 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,4.5 + pos: 27.5,16.5 parent: 1668 - - uid: 4971 + - uid: 2019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-21.5 + rot: 3.141592653589793 rad + pos: 28.5,16.5 parent: 1668 -- proto: ComputerShuttleCargo - entities: - - uid: 3719 + - uid: 2020 components: - type: Transform - pos: -12.5,17.5 + rot: 3.141592653589793 rad + pos: 29.5,16.5 parent: 1668 -- proto: ComputerStationRecords - entities: - - uid: 3720 + - uid: 2021 components: - type: Transform - pos: 3.5,-15.5 + rot: 3.141592653589793 rad + pos: 30.5,16.5 parent: 1668 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 499 + - uid: 2079 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-9.5 + pos: 28.5,11.5 parent: 1668 - - uid: 654 + - uid: 2080 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-2.5 + rot: -1.5707963267948966 rad + pos: 28.5,12.5 parent: 1668 - - uid: 814 + - uid: 2122 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-13.5 + rot: -1.5707963267948966 rad + pos: 34.5,10.5 parent: 1668 - - uid: 2250 + - uid: 3023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,3.5 + rot: 3.141592653589793 rad + pos: 3.5,18.5 parent: 1668 - - uid: 2745 + - uid: 3991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,18.5 + rot: 3.141592653589793 rad + pos: -5.5,29.5 parent: 1668 -- proto: ComputerTelevision - entities: - - uid: 3715 + - uid: 3992 components: - type: Transform - pos: -14.5,12.5 + rot: 3.141592653589793 rad + pos: -6.5,29.5 parent: 1668 -- proto: ConveyorBelt - entities: - - uid: 1576 + - uid: 4240 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,24.5 + pos: 2.5,-33.5 parent: 1668 - - uid: 1577 + - uid: 4241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,24.5 + pos: 1.5,-33.5 parent: 1668 - - uid: 1578 + - uid: 4242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,24.5 + pos: 0.5,-33.5 parent: 1668 - - uid: 1579 + - uid: 4243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,24.5 + pos: -1.5,-33.5 parent: 1668 - - uid: 1580 + - uid: 4244 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,24.5 + pos: -2.5,-33.5 parent: 1668 - - uid: 1581 + - uid: 4245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,24.5 + pos: -3.5,-33.5 parent: 1668 - - uid: 1582 + - uid: 4246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,28.5 + pos: -5.5,-33.5 parent: 1668 - - uid: 1583 + - uid: 4247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,28.5 + pos: -6.5,-33.5 parent: 1668 - - uid: 1584 + - uid: 4248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,28.5 + pos: 5.5,-33.5 parent: 1668 - - uid: 1585 + - uid: 4249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,28.5 + pos: 4.5,-33.5 parent: 1668 - - uid: 1586 + - uid: 4250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,28.5 + pos: 5.5,-35.5 parent: 1668 - - uid: 1587 + - uid: 4251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,28.5 + pos: 4.5,-35.5 parent: 1668 - - uid: 5902 + - uid: 4252 components: - type: Transform - pos: -19.5,-33.5 + pos: 2.5,-35.5 parent: 1668 - - uid: 5903 + - uid: 4253 components: - type: Transform - pos: -19.5,-32.5 + pos: 1.5,-35.5 parent: 1668 - - uid: 5904 + - uid: 4254 components: - type: Transform - pos: -19.5,-31.5 + pos: 0.5,-35.5 parent: 1668 -- proto: CrateArmoryLaser - entities: - - uid: 6533 + - uid: 4255 components: - type: Transform - pos: -7.5,22.5 + pos: -0.5,-35.5 parent: 1668 -- proto: CrateArmoryShotgun - entities: - - uid: 6532 + - uid: 4256 components: - type: Transform - pos: -9.5,24.5 + pos: -1.5,-35.5 parent: 1668 -- proto: CrateArmorySMG - entities: - - uid: 6531 + - uid: 4257 components: - type: Transform - pos: -6.5,26.5 + pos: -2.5,-35.5 parent: 1668 -- proto: CrateEmergencyRadiation - entities: - - uid: 5379 + - uid: 4258 components: - type: Transform - pos: 23.5,-13.5 + pos: -3.5,-35.5 parent: 1668 -- proto: CrateEngineeringAMEShielding - entities: - - uid: 792 + - uid: 4259 components: - type: Transform - pos: 21.5,-13.5 + pos: -5.5,-35.5 parent: 1668 -- proto: CrateEngineeringCableBulk - entities: - - uid: 5328 + - uid: 4260 components: - type: Transform - pos: 30.5,-15.5 + pos: -6.5,-35.5 parent: 1668 -- proto: CrateEngineeringCableLV - entities: - - uid: 5380 + - uid: 7282 components: - type: Transform - pos: 19.5,-13.5 + rot: 3.141592653589793 rad + pos: -43.5,4.5 parent: 1668 -- proto: CrateEngineeringCableMV +- proto: ChairFolding entities: - - uid: 5381 + - uid: 1187 components: - type: Transform - pos: 16.5,-13.5 + pos: 15.5,-21.5 parent: 1668 -- proto: CrateEngineeringShuttle - entities: - - uid: 2144 + - uid: 7280 components: - type: Transform - pos: 22.5,-13.5 + pos: -49.5,-5.5 parent: 1668 -- proto: CrateFoodPizza - entities: - - uid: 6528 + - uid: 9077 components: - type: Transform - pos: -8.5,22.5 + pos: -7.0265236,-8.483158 parent: 1668 -- proto: CrateFunPlushie +- proto: ChairGreyscale entities: - - uid: 6530 + - uid: 7309 components: - type: Transform - pos: -8.5,28.5 + rot: 3.141592653589793 rad + pos: -49.5,4.5 parent: 1668 -- proto: CrateHydroponicsSeedsExotic +- proto: ChairOfficeDark entities: - - uid: 6527 + - uid: 90 components: - type: Transform - pos: -5.5,17.5 + pos: 14.5,3.5 parent: 1668 -- proto: CrateMedicalSurgery - entities: - - uid: 629 + - uid: 136 components: - type: Transform - pos: 10.5,-4.5 + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 parent: 1668 -- proto: CrateMousetrapBoxes - entities: - - uid: 6529 + - uid: 483 components: - type: Transform - pos: -7.5,26.5 + pos: -0.5,0.5 parent: 1668 -- proto: CrateParticleDecelerators - entities: - - uid: 6995 + - uid: 514 components: - type: Transform - pos: -7.5,28.5 + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 parent: 1668 -- proto: CrowbarRed - entities: - - uid: 515 + - uid: 1153 components: - type: Transform - pos: 20.552847,-10.547255 + rot: -1.5707963267948966 rad + pos: 33.5,-10.5 parent: 1668 - - uid: 1451 + - uid: 1621 components: - type: Transform - pos: 14.506881,6.5434804 + rot: 3.141592653589793 rad + pos: 13.5,12.5 parent: 1668 - - uid: 2225 + - uid: 2075 components: - type: Transform - pos: -11.468896,17.467602 + pos: 32.5,12.5 parent: 1668 - - uid: 2467 + - uid: 2121 components: - type: Transform - pos: 22.533863,23.410753 + rot: 1.5707963267948966 rad + pos: 30.570415,11.596919 parent: 1668 - - uid: 2870 + - uid: 2895 components: - type: Transform - pos: 4.561338,19.119057 + rot: 1.5707963267948966 rad + pos: -19.5,6.5 parent: 1668 - - uid: 3899 + - uid: 2939 components: - type: Transform - pos: -12.531932,-6.3835163 + rot: 1.5707963267948966 rad + pos: -19.5,5.5 parent: 1668 - - uid: 5347 + - uid: 2940 components: - type: Transform - pos: 21.478167,-17.501467 + rot: -1.5707963267948966 rad + pos: -17.5,6.5 parent: 1668 -- proto: CryogenicSleepUnit - entities: - - uid: 3154 + - uid: 4050 components: - type: Transform - pos: -3.5,-15.5 + pos: -2.5,31.5 parent: 1668 - - uid: 3633 + - uid: 4051 components: - type: Transform - pos: -3.5,-16.5 + pos: 2.5,23.5 parent: 1668 -- proto: CryoPod - entities: - - uid: 6642 + - uid: 4052 components: - type: Transform - pos: 11.5,-4.5 + pos: 3.5,23.5 parent: 1668 -- proto: DeathsquadPDA - entities: - - uid: 298 + - uid: 6741 components: - type: Transform - pos: 2.579019,31.366188 + pos: -38.5,-5.5 parent: 1668 - - uid: 579 + - uid: 6742 components: - type: Transform - pos: 16.399555,31.459938 + pos: -37.5,-5.5 parent: 1668 - - uid: 820 + - uid: 6743 components: - type: Transform - pos: 16.587055,31.366188 + rot: -1.5707963267948966 rad + pos: -36.5,-6.5 parent: 1668 - - uid: 834 + - uid: 6744 components: - type: Transform - pos: 2.407144,31.491188 + rot: -1.5707963267948966 rad + pos: -36.5,-7.5 parent: 1668 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 2914 + - uid: 6745 components: - type: Transform - pos: 10.5,2.5 + rot: -1.5707963267948966 rad + pos: -36.5,-8.5 parent: 1668 - - uid: 3123 + - uid: 6746 components: - type: Transform - pos: 19.5,6.5 + rot: 3.141592653589793 rad + pos: -37.5,-9.5 parent: 1668 - - uid: 3133 + - uid: 6747 components: - type: Transform - pos: 11.5,-17.5 + rot: 3.141592653589793 rad + pos: -38.5,-9.5 parent: 1668 - - uid: 3139 + - uid: 9193 components: - type: Transform - pos: 0.5,-3.5 + rot: 3.141592653589793 rad + pos: -39.5,-9.5 parent: 1668 - - uid: 6644 + - uid: 9211 components: - type: Transform - pos: 9.5,-3.5 + pos: -39.5,-5.5 parent: 1668 -- proto: DeployableBarrier +- proto: ChairOfficeLight entities: - - uid: 3144 + - uid: 788 components: - type: Transform - pos: 6.5,29.5 + rot: -1.5707963267948966 rad + pos: 3.5,-11.5 parent: 1668 - - uid: 3145 + - uid: 789 components: - type: Transform - pos: 5.5,29.5 + rot: -1.5707963267948966 rad + pos: 3.5,-9.5 parent: 1668 - - uid: 3146 + - uid: 831 components: - type: Transform - pos: 12.5,29.5 - parent: 1668 - - uid: 3147 - components: - - type: Transform - pos: 13.5,29.5 + rot: 3.141592653589793 rad + pos: 15.5,-4.5 parent: 1668 -- proto: DiceBag +- proto: ChairWood entities: - - uid: 3763 + - uid: 941 components: - type: Transform - pos: -24.498522,4.631134 + rot: 3.141592653589793 rad + pos: 24.5,20.5 parent: 1668 -- proto: DisposalBend - entities: - - uid: 2059 + - uid: 1193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,14.5 + rot: 3.141592653589793 rad + pos: 25.5,20.5 parent: 1668 - - uid: 2073 + - uid: 1195 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,10.5 + pos: 27.5,20.5 parent: 1668 - - uid: 2074 + - uid: 1355 components: - type: Transform - pos: -5.5,10.5 + rot: 3.141592653589793 rad + pos: 28.5,20.5 parent: 1668 - - uid: 2076 + - uid: 1918 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,0.5 + pos: 34.5,22.5 parent: 1668 - - uid: 2086 + - uid: 1919 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-4.5 + rot: -1.5707963267948966 rad + pos: 33.5,20.5 parent: 1668 - - uid: 2091 + - uid: 1920 components: - type: Transform - pos: -0.5,-4.5 + rot: -1.5707963267948966 rad + pos: 33.5,21.5 parent: 1668 - - uid: 2093 + - uid: 1923 components: - type: Transform - pos: 31.5,-5.5 + rot: -1.5707963267948966 rad + pos: 33.5,22.5 parent: 1668 - - uid: 2117 + - uid: 1924 components: - type: Transform - pos: 20.5,-1.5 + rot: -1.5707963267948966 rad + pos: 34.5,20.5 parent: 1668 - - uid: 2118 + - uid: 1925 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-5.5 + rot: -1.5707963267948966 rad + pos: 34.5,21.5 parent: 1668 - - uid: 2125 + - uid: 1930 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-1.5 + pos: 19.5,20.5 parent: 1668 - - uid: 2129 + - uid: 1956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-5.5 + rot: 1.5707963267948966 rad + pos: 19.5,21.5 parent: 1668 - - uid: 2179 + - uid: 1960 components: - type: Transform - pos: -0.5,8.5 + rot: 1.5707963267948966 rad + pos: 19.5,22.5 parent: 1668 - - uid: 2180 + - uid: 6170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,3.5 + pos: -23.725513,-10.482539 parent: 1668 - - uid: 3639 + - uid: 6174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,2.5 + pos: -24.5,-6.5 parent: 1668 - - uid: 3852 + - uid: 6175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-0.5 + rot: 3.141592653589793 rad + pos: -24.5,-8.5 parent: 1668 - - uid: 4649 +- proto: ChameleonProjector + entities: + - uid: 6002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-32.5 + pos: -12.443271,7.649471 parent: 1668 - - uid: 4650 +- proto: CheapRollerBedSpawnFolded + entities: + - uid: 1386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-33.5 + pos: 13.5,-9.5 parent: 1668 - - uid: 4925 + - uid: 1387 components: - type: Transform - pos: -11.5,-22.5 + pos: 13.5,-7.5 parent: 1668 - - uid: 4949 + - uid: 1388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-18.5 + pos: 13.5,-11.5 parent: 1668 - - uid: 4951 +- proto: ChemDispenser + entities: + - uid: 664 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-16.5 + pos: 3.5,-8.5 parent: 1668 - - uid: 4952 + - uid: 665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-18.5 + pos: 3.5,-12.5 parent: 1668 - - uid: 5897 +- proto: ChemistryHotplate + entities: + - uid: 671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-32.5 + pos: 7.5,-12.5 parent: 1668 -- proto: DisposalJunction +- proto: ChemMaster entities: - - uid: 2082 + - uid: 661 components: - type: Transform - pos: -5.5,-0.5 + pos: 4.5,-8.5 parent: 1668 - - uid: 4948 + - uid: 662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-18.5 + pos: 4.5,-12.5 parent: 1668 -- proto: DisposalJunctionFlipped - entities: - - uid: 2080 + - uid: 4291 components: - type: Transform - pos: -5.5,3.5 + pos: 10.5,-31.5 parent: 1668 - - uid: 2081 +- proto: CigaretteSpent + entities: + - uid: 1188 components: - type: Transform - pos: -5.5,0.5 + pos: 15.857297,-21.743801 parent: 1668 - - uid: 2120 +- proto: CigarGold + entities: + - uid: 2022 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-1.5 + pos: 27.501572,27.69448 parent: 1668 - - uid: 2134 + - uid: 2023 components: - type: Transform - pos: -0.5,-5.5 + pos: 27.657822,27.678856 parent: 1668 - - uid: 3640 + - uid: 2974 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-0.5 + pos: -20.578415,11.695632 parent: 1668 - - uid: 4927 + - uid: 2975 components: - type: Transform - pos: -13.5,-22.5 + pos: -20.422165,11.664382 parent: 1668 -- proto: DisposalPipe - entities: - - uid: 2060 + - uid: 6764 components: - type: Transform - pos: -10.5,13.5 + pos: -44.404884,-4.442357 parent: 1668 - - uid: 2061 +- proto: CigarGoldCase + entities: + - uid: 2977 components: - type: Transform - pos: -10.5,12.5 + pos: -15.491083,9.742575 parent: 1668 - - uid: 2062 + - uid: 9161 components: - type: Transform - pos: -10.5,11.5 + pos: 21.01059,-31.695402 parent: 1668 - - uid: 2063 +- proto: CigPackSyndicate + entities: + - uid: 2976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,10.5 + pos: -11.04193,7.539497 parent: 1668 - - uid: 2064 +- proto: CircuitImprinter + entities: + - uid: 3271 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,10.5 + pos: -5.5,19.5 parent: 1668 - - uid: 2065 +- proto: CloningPod + entities: + - uid: 733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,10.5 + pos: 22.5,-10.5 parent: 1668 - - uid: 2066 +- proto: ClosetBombFilled + entities: + - uid: 3101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,10.5 + pos: 12.5,18.5 parent: 1668 - - uid: 2067 +- proto: ClosetChefFilled + entities: + - uid: 1182 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,9.5 + pos: 15.5,-19.5 parent: 1668 - - uid: 2068 + - uid: 5451 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,8.5 + pos: -10.5,-29.5 parent: 1668 - - uid: 2069 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1381 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,7.5 + pos: -25.5,-2.5 parent: 1668 - - uid: 2070 + - uid: 7345 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,6.5 + pos: -54.5,1.5 parent: 1668 - - uid: 2071 + - uid: 7495 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,5.5 + pos: -39.5,-25.5 parent: 1668 - - uid: 2072 + - uid: 9095 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,4.5 + pos: -28.5,1.5 parent: 1668 - - uid: 2077 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 7346 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,0.5 + pos: -54.5,-2.5 parent: 1668 - - uid: 2078 + - uid: 7494 components: - type: Transform - pos: -5.5,1.5 + pos: -39.5,-27.5 parent: 1668 - - uid: 2079 + - uid: 9094 components: - type: Transform - pos: -5.5,2.5 + pos: -25.5,1.5 parent: 1668 - - uid: 2083 +- proto: ClosetFireFilled + entities: + - uid: 4266 components: - type: Transform - pos: -5.5,-1.5 + pos: -28.5,-2.5 parent: 1668 - - uid: 2084 + - uid: 7347 components: - type: Transform - pos: -5.5,-2.5 + pos: -53.5,-2.5 parent: 1668 - - uid: 2085 +- proto: ClothingBackpackDeathSquad + entities: + - uid: 2476 components: - type: Transform - pos: -5.5,-3.5 - parent: 1668 - - uid: 2087 + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 1668 - - uid: 2088 + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 1668 - - uid: 2089 + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 1668 - - uid: 2090 + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackERTEngineer + entities: + - uid: 6781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1668 - - uid: 2094 + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-5.5 - parent: 1668 - - uid: 2095 + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackERTLeader + entities: + - uid: 6889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-5.5 - parent: 1668 - - uid: 2096 + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackERTMedical + entities: + - uid: 6851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-5.5 - parent: 1668 - - uid: 2097 + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-5.5 - parent: 1668 - - uid: 2098 + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackERTSecurity + entities: + - uid: 6814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 1668 - - uid: 2099 + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-5.5 - parent: 1668 - - uid: 2100 + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackSatchelHolding + entities: + - uid: 2629 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-5.5 + pos: -23.461355,13.518487 parent: 1668 - - uid: 2101 +- proto: ClothingBeltChiefEngineerFilled + entities: + - uid: 4047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-5.5 + pos: -18.5,18.5 parent: 1668 - - uid: 2102 + - uid: 6787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 1668 - - uid: 2103 + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-5.5 - parent: 1668 - - uid: 2104 + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltMilitaryWebbing + entities: + - uid: 2640 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-4.5 + pos: 15.68,30.671227 parent: 1668 - - uid: 2105 + - uid: 2641 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-3.5 + pos: 15.68,30.671227 parent: 1668 - - uid: 2106 + - uid: 2642 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-2.5 + pos: 15.68,30.671227 parent: 1668 - - uid: 2107 + - uid: 2643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-1.5 + pos: 15.68,30.671227 parent: 1668 - - uid: 2108 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + It provides the following protection: + + - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]50%[/color]. + priority: 0 + component: Armor + title: null +- proto: ClothingBeltSecurityFilled + entities: + - uid: 6813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-1.5 - parent: 1668 - - uid: 2109 + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-1.5 - parent: 1668 - - uid: 2110 + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-1.5 - parent: 1668 - - uid: 2111 + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltSheathFilled + entities: + - uid: 2835 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-1.5 + pos: -13.520346,9.55136 parent: 1668 - - uid: 2112 +- proto: ClothingBeltUtility + entities: + - uid: 3183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-1.5 + pos: -4.5072412,7.451564 parent: 1668 - - uid: 2113 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 2644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-1.5 + pos: 16.395279,30.601782 parent: 1668 - - uid: 2114 + - uid: 2645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-1.5 + pos: 16.395279,30.601782 parent: 1668 - - uid: 2115 + - uid: 2646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-1.5 + pos: 16.395279,30.601782 parent: 1668 - - uid: 2116 + - uid: 2647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-1.5 + pos: 16.395279,30.601782 parent: 1668 - - uid: 2121 + - uid: 3179 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-1.5 + pos: -4.5072412,7.795314 parent: 1668 - - uid: 2122 + - uid: 9219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 + pos: -40.43181,-6.556486 parent: 1668 - - uid: 2123 +- proto: ClothingEyesGlassesMeson + entities: + - uid: 6772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 1668 - - uid: 2124 + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6792 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 1668 - - uid: 2126 + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesGlassesSecurity + entities: + - uid: 2471 components: - type: Transform - pos: 4.5,-2.5 - parent: 1668 - - uid: 2127 + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2490 components: - type: Transform - pos: 4.5,-3.5 - parent: 1668 - - uid: 2128 + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2505 components: - type: Transform - pos: 4.5,-4.5 - parent: 1668 - - uid: 2130 + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2518 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 1668 - - uid: 2131 + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-5.5 + pos: -13.082846,13.67636 parent: 1668 - - uid: 2132 + - uid: 6818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 1668 - - uid: 2133 + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 1668 - - uid: 2135 + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6898 components: - type: Transform - pos: -0.5,-6.5 - parent: 1668 - - uid: 2136 + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesHudMedSec + entities: + - uid: 6856 components: - type: Transform - pos: -0.5,-7.5 - parent: 1668 - - uid: 2137 + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6868 components: - type: Transform - pos: -0.5,-8.5 - parent: 1668 - - uid: 2138 + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9201 components: - type: Transform - pos: -0.5,-9.5 + pos: 17.184582,-13.58365 parent: 1668 - - uid: 2139 +- proto: ClothingHandsGlovesCombat + entities: + - uid: 2466 components: - type: Transform - pos: -0.5,-10.5 - parent: 1668 - - uid: 2140 + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2483 components: - type: Transform - pos: -0.5,-11.5 - parent: 1668 - - uid: 2141 + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2497 components: - type: Transform - pos: -0.5,-12.5 - parent: 1668 - - uid: 2181 + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2513 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 1668 - - uid: 2182 + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2837 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,5.5 + pos: -13.489096,9.64511 parent: 1668 - - uid: 2183 + - uid: 6782 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,6.5 - parent: 1668 - - uid: 2184 + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6809 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,7.5 - parent: 1668 - - uid: 2185 + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,8.5 - parent: 1668 - - uid: 2186 + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,8.5 - parent: 1668 - - uid: 2187 + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,3.5 - parent: 1668 - - uid: 2188 + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 6857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1668 - - uid: 2189 + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 1668 - - uid: 2190 + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatCentcomcap + entities: + - uid: 9398 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,3.5 + pos: -26.008297,-17.419487 parent: 1668 - - uid: 3641 +- proto: ClothingHeadHatPartyBlue + entities: + - uid: 6076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,2.5 + pos: -16.625902,-17.058979 parent: 1668 - - uid: 3642 +- proto: ClothingHeadHatPwig + entities: + - uid: 2117 components: - type: Transform - pos: -21.5,1.5 + pos: 25.175821,27.700735 parent: 1668 - - uid: 3643 +- proto: ClothingHeadHelmetThunderdome + entities: + - uid: 4668 components: - type: Transform - pos: -21.5,0.5 + pos: 12.5,-45.5 parent: 1668 - - uid: 3644 + - uid: 4669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 + pos: 11.5,-45.5 parent: 1668 - - uid: 3645 + - uid: 4670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 + pos: 10.5,-45.5 parent: 1668 - - uid: 3646 + - uid: 4671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-0.5 + pos: 9.5,-45.5 parent: 1668 - - uid: 3647 + - uid: 4672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 + pos: 8.5,-45.5 parent: 1668 - - uid: 3648 + - uid: 4673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-0.5 + pos: -9.5,-45.5 parent: 1668 - - uid: 3649 + - uid: 4674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 + pos: -10.5,-45.5 parent: 1668 - - uid: 3650 + - uid: 4675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-0.5 + pos: -11.5,-45.5 parent: 1668 - - uid: 3651 + - uid: 4676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-0.5 + pos: -12.5,-45.5 parent: 1668 - - uid: 3652 + - uid: 4677 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-0.5 + pos: -13.5,-45.5 parent: 1668 - - uid: 3653 +- proto: ClothingHeadsetAltCentCom + entities: + - uid: 504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 + pos: 0.51578563,1.563037 parent: 1668 - - uid: 3654 + - uid: 2465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 1668 - - uid: 3655 + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 1668 - - uid: 3656 + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 1668 - - uid: 3657 + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 1668 - - uid: 3658 + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6788 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 1668 - - uid: 3844 + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6806 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-8.5 - parent: 1668 - - uid: 3845 + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6824 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-7.5 - parent: 1668 - - uid: 3846 + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6830 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-6.5 - parent: 1668 - - uid: 3847 + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6849 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-5.5 - parent: 1668 - - uid: 3848 + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6883 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-4.5 - parent: 1668 - - uid: 3849 + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6894 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-3.5 - parent: 1668 - - uid: 3850 + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskGasDeathSquad + entities: + - uid: 2469 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-2.5 - parent: 1668 - - uid: 3851 + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2488 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-1.5 - parent: 1668 - - uid: 4926 + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-22.5 - parent: 1668 - - uid: 4928 + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2516 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-21.5 - parent: 1668 - - uid: 4929 + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskGasERT + entities: + - uid: 6783 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-20.5 - parent: 1668 - - uid: 4930 + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6807 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-19.5 - parent: 1668 - - uid: 4931 + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-18.5 - parent: 1668 - - uid: 4932 + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-18.5 - parent: 1668 - - uid: 4933 + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-18.5 - parent: 1668 - - uid: 4934 + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6881 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-18.5 - parent: 1668 - - uid: 4935 + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 1668 - - uid: 4936 + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskNeckGaiter + entities: + - uid: 2479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 1668 - - uid: 4937 + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 1668 - - uid: 4938 + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 1668 - - uid: 4939 + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 1668 - - uid: 4940 + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckBronzeheart + entities: + - uid: 4218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-18.5 + pos: -3.5,-29.5 parent: 1668 - - uid: 4941 +- proto: ClothingNeckCloakNanotrasen + entities: + - uid: 9340 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-18.5 + pos: -44.5,-10.5 parent: 1668 - - uid: 4942 +- proto: ClothingNeckGoldmedal + entities: + - uid: 4217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-18.5 + pos: 2.5,-29.5 parent: 1668 - - uid: 4943 +- proto: ClothingNeckLawyerbadge + entities: + - uid: 4219 components: - type: Transform - pos: -0.5,-17.5 + pos: -3.5,-31.5 parent: 1668 - - uid: 4944 +- proto: ClothingOuterArmorCaptainCarapace + entities: + - uid: 1101 components: - type: Transform - pos: -0.5,-16.5 + pos: -11.664687,7.5583878 parent: 1668 - - uid: 4945 +- proto: ClothingOuterArmorHeavyRed + entities: + - uid: 4640 components: - type: Transform - pos: -0.5,-15.5 + pos: -9.5,-45.5 parent: 1668 - - uid: 4946 + - uid: 4641 components: - type: Transform - pos: -0.5,-14.5 + pos: -10.5,-45.5 parent: 1668 - - uid: 4947 + - uid: 4642 components: - type: Transform - pos: -0.5,-13.5 + pos: -11.5,-45.5 parent: 1668 - - uid: 4953 + - uid: 4643 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-17.5 + pos: -12.5,-45.5 parent: 1668 - - uid: 4954 + - uid: 4644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-18.5 + pos: -13.5,-45.5 parent: 1668 - - uid: 4955 + - uid: 4651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-18.5 + pos: 8.5,-45.5 parent: 1668 - - uid: 4956 + - uid: 4652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-18.5 + pos: 9.5,-45.5 parent: 1668 - - uid: 4957 + - uid: 4653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-18.5 + pos: 10.5,-45.5 parent: 1668 - - uid: 4958 + - uid: 4654 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-18.5 + pos: 11.5,-45.5 parent: 1668 - - uid: 4959 + - uid: 4655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-18.5 + pos: 12.5,-45.5 parent: 1668 - - uid: 4960 +- proto: ClothingOuterHardsuitDeathsquad + entities: + - uid: 2472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-18.5 - parent: 1668 - - uid: 4961 + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 1668 - - uid: 4962 + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-18.5 - parent: 1668 - - uid: 4963 + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-18.5 - parent: 1668 - - uid: 4964 + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitERTEngineer + entities: + - uid: 6789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 1668 - - uid: 4965 + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 1668 - - uid: 5785 + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitERTLeader + entities: + - uid: 6893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-32.5 - parent: 1668 - - uid: 5888 + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitERTMedical + entities: + - uid: 6848 components: - type: Transform - pos: -13.5,-23.5 - parent: 1668 - - uid: 5889 + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6878 components: - type: Transform - pos: -13.5,-24.5 - parent: 1668 - - uid: 5890 + parent: 6865 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: This decreases your speed by [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + It provides the following protection: + + - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]50%[/color]. + + - [color=yellow]Slash[/color] damage reduced by [color=lightblue]50%[/color]. + + - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]50%[/color]. + + - [color=yellow]Heat[/color] damage reduced by [color=lightblue]50%[/color]. + + - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]50%[/color]. + + - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]50%[/color]. + + - [color=orange]Explosion[/color] damage reduced by [color=lightblue]50%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitERTSecurity + entities: + - uid: 6823 components: - type: Transform - pos: -13.5,-25.5 - parent: 1668 - - uid: 5891 + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6833 components: - type: Transform - pos: -13.5,-26.5 - parent: 1668 - - uid: 5892 + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterRobesJudge + entities: + - uid: 2116 components: - type: Transform - pos: -13.5,-27.5 + pos: 25.503946,27.606985 parent: 1668 - - uid: 5893 +- proto: ClothingShoesBootsMagAdv + entities: + - uid: 2468 components: - type: Transform - pos: -13.5,-28.5 - parent: 1668 - - uid: 5894 + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2485 components: - type: Transform - pos: -13.5,-29.5 - parent: 1668 - - uid: 5895 + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2498 components: - type: Transform - pos: -13.5,-30.5 - parent: 1668 - - uid: 5896 + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2515 components: - type: Transform - pos: -13.5,-31.5 - parent: 1668 - - uid: 5898 + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-32.5 + pos: -16.5,18.5 parent: 1668 - - uid: 5899 + - uid: 6786 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-33.5 - parent: 1668 - - uid: 5900 + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-33.5 - parent: 1668 -- proto: DisposalTrunk - entities: - - uid: 2058 + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,14.5 - parent: 1668 - - uid: 2075 + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6835 components: - type: Transform - pos: -3.5,1.5 - parent: 1668 - - uid: 2092 + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6853 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-6.5 - parent: 1668 - - uid: 2119 + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6879 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-2.5 - parent: 1668 - - uid: 2178 + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,8.5 - parent: 1668 - - uid: 3638 + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsPerformer + entities: + - uid: 6084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,2.5 + pos: -8.014507,-17.334332 parent: 1668 - - uid: 3843 +- proto: ClothingShoesBootsSpeed + entities: + - uid: 1543 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-9.5 + pos: -9.538566,5.4158797 parent: 1668 - - uid: 4924 +- proto: ClothingShoesChameleonNoSlips + entities: + - uid: 3420 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-23.5 + pos: -13.522441,10.1285 parent: 1668 - - uid: 4950 +- proto: ClothingShoesLeather + entities: + - uid: 2992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-16.5 + pos: -19.521015,9.144212 parent: 1668 - - uid: 5901 +- proto: ClothingShoeSlippersDuck + entities: + - uid: 6213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-33.5 + pos: -22.480219,-6.422328 parent: 1668 -- proto: DisposalUnit +- proto: ClothingUniformJumpskirtHoSParadeMale entities: - - uid: 531 + - uid: 3242 components: - type: Transform - pos: 31.5,-6.5 - parent: 1668 - - uid: 630 + parent: 3239 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpskirtPerformer + entities: + - uid: 6083 components: - type: Transform - pos: 9.5,-2.5 + pos: -8.014507,-17.209332 parent: 1668 - - uid: 836 +- proto: ClothingUniformJumpsuitDeathSquad + entities: + - uid: 2467 components: - type: Transform - pos: 13.5,-16.5 - parent: 1668 - - uid: 1407 + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2489 components: - type: Transform - pos: -3.5,1.5 - parent: 1668 - - uid: 1663 + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2501 components: - type: Transform - pos: -9.5,14.5 - parent: 1668 - - uid: 2177 + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2514 components: - type: Transform - pos: -3.5,8.5 - parent: 1668 - - uid: 3462 + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitERTEngineer + entities: + - uid: 6785 components: - type: Transform - pos: -19.5,2.5 - parent: 1668 - - uid: 3842 + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6804 components: - type: Transform - pos: -22.5,-9.5 - parent: 1668 - - uid: 4923 + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitERTLeader + entities: + - uid: 6891 components: - type: Transform - pos: -11.5,-23.5 - parent: 1668 -- proto: Dresser + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitERTMedic entities: - - uid: 3435 + - uid: 6850 components: - type: Transform - pos: -14.5,8.5 - parent: 1668 -- proto: DrinkFlask - entities: - - uid: 3773 + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6882 components: - type: Transform - pos: -11.533806,6.6228595 - parent: 1668 -- proto: DrinkGoldenCup + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitERTSecurity entities: - - uid: 3769 + - uid: 6812 components: - type: Transform - pos: -26.535545,11.773157 - parent: 1668 - - uid: 4375 + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6834 components: - type: Transform - pos: -3.5,-22.5 - parent: 1668 - - uid: 4376 + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitNanotrasen + entities: + - uid: 9341 components: - type: Transform - pos: 2.5,-22.5 + pos: -45.5,-9.5 parent: 1668 -- proto: DrinkHotCoffee +- proto: ComfyChair entities: - - uid: 5464 + - uid: 1287 components: - type: Transform - pos: 16.572073,-29.470444 + rot: 1.5707963267948966 rad + pos: 33.5,-21.5 parent: 1668 -- proto: DrinkMugHeart - entities: - - uid: 1399 + - uid: 1869 components: - type: Transform - pos: 2.5713959,-11.619784 + pos: 26.5,24.5 parent: 1668 -- proto: DrinkShaker - entities: - - uid: 6621 + - uid: 2040 components: - type: Transform - pos: 10.4809675,-21.408005 + rot: -1.5707963267948966 rad + pos: 34.5,25.5 parent: 1668 -- proto: DrinkShotGlass - entities: - - uid: 3889 + - uid: 2041 components: - type: Transform - pos: -24.572554,-3.3475308 + rot: -1.5707963267948966 rad + pos: 34.5,26.5 parent: 1668 - - uid: 3890 + - uid: 2042 components: - type: Transform - pos: -24.400679,-3.4725308 + rot: -1.5707963267948966 rad + pos: 34.5,27.5 parent: 1668 -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 3875 + - uid: 2043 components: - type: Transform - pos: -27.52259,-4.144406 + rot: 1.5707963267948966 rad + pos: 32.5,25.5 parent: 1668 -- proto: EmergencyLight - entities: - - uid: 3155 + - uid: 2044 components: - type: Transform - pos: 9.5,25.5 + rot: 1.5707963267948966 rad + pos: 32.5,26.5 parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3156 + - uid: 2045 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,29.5 + pos: 32.5,27.5 parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3157 + - uid: 2078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,12.5 + parent: 1668 + - uid: 2823 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,29.5 + pos: -11.5,10.5 parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3158 + - uid: 2834 components: - type: Transform - pos: 7.5,15.5 + rot: 3.141592653589793 rad + pos: -12.5,12.5 parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3159 + - uid: 2845 components: - type: Transform - pos: 24.5,13.5 + rot: -1.5707963267948966 rad + pos: -19.5,11.5 parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3160 + - uid: 2846 components: - type: Transform - pos: 29.5,23.5 + rot: -1.5707963267948966 rad + pos: -19.5,12.5 parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3161 + - uid: 2847 components: - type: Transform - pos: 23.5,5.5 + rot: 1.5707963267948966 rad + pos: -21.5,11.5 parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3162 + - uid: 2848 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-6.5 + rot: 1.5707963267948966 rad + pos: -21.5,12.5 parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3163 + - uid: 2864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,12.5 + parent: 1668 + - uid: 4706 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-2.5 + pos: 5.5,-46.5 parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3164 + - uid: 4707 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-5.5 + pos: 4.5,-46.5 parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3165 + - uid: 4708 components: - type: Transform - pos: -6.5,4.5 + rot: 3.141592653589793 rad + pos: 2.5,-46.5 parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3166 + - uid: 4709 components: - type: Transform - pos: -2.5,-9.5 + rot: 3.141592653589793 rad + pos: 1.5,-46.5 parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3167 + - uid: 4710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,26.5 + rot: 3.141592653589793 rad + pos: -2.5,-46.5 parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3168 + - uid: 4711 components: - type: Transform - pos: -2.5,16.5 + rot: 3.141592653589793 rad + pos: -3.5,-46.5 parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3169 + - uid: 4712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,31.5 + rot: 3.141592653589793 rad + pos: -5.5,-46.5 parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 3170 + - uid: 4713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,31.5 + rot: 3.141592653589793 rad + pos: -6.5,-46.5 parent: 1668 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight -- proto: EpinephrineChemistryBottle - entities: - - uid: 1462 + - uid: 4714 components: - type: Transform - pos: 13.808971,-12.626007 + rot: 3.141592653589793 rad + pos: -0.5,-46.5 parent: 1668 - - uid: 1463 + - uid: 6739 components: - type: Transform - pos: 13.818524,-12.297882 + rot: 1.5707963267948966 rad + pos: -43.5,-7.5 parent: 1668 -- proto: ExtinguisherCabinetFilled - entities: - - uid: 628 + - uid: 7277 components: - type: Transform - pos: 16.5,-5.5 + pos: -43.5,6.5 parent: 1668 - - uid: 2237 + - uid: 7278 components: - type: Transform - pos: 8.5,6.5 + pos: -49.5,6.5 parent: 1668 - - uid: 3908 + - uid: 7279 components: - type: Transform - pos: -16.5,-3.5 + rot: 3.141592653589793 rad + pos: -49.5,-7.5 parent: 1668 - - uid: 3910 + - uid: 9149 components: - type: Transform - pos: -9.5,-5.5 + rot: -1.5707963267948966 rad + pos: 22.5,-32.5 parent: 1668 - - uid: 3911 + - uid: 9150 components: - type: Transform - pos: -13.5,10.5 + rot: -1.5707963267948966 rad + pos: 22.5,-31.5 parent: 1668 - - uid: 3912 + - uid: 9151 components: - type: Transform - pos: -4.5,16.5 + rot: 1.5707963267948966 rad + pos: 19.5,-32.5 parent: 1668 - - uid: 3913 + - uid: 9152 components: - type: Transform - pos: 15.5,15.5 + rot: 1.5707963267948966 rad + pos: 19.5,-31.5 parent: 1668 - - uid: 3914 + - uid: 9155 components: - type: Transform - pos: 21.5,17.5 + rot: -1.5707963267948966 rad + pos: 22.5,-33.5 parent: 1668 - - uid: 3915 + - uid: 9156 components: - type: Transform - pos: 13.5,18.5 + rot: 1.5707963267948966 rad + pos: 19.5,-33.5 parent: 1668 - - uid: 3916 +- proto: ComputerCargoBounty + entities: + - uid: 4021 components: - type: Transform - pos: 18.5,2.5 + rot: -1.5707963267948966 rad + pos: 8.5,26.5 parent: 1668 - - uid: 3917 +- proto: ComputerCargoOrders + entities: + - uid: 3905 components: - type: Transform - pos: 18.5,-3.5 + rot: 1.5707963267948966 rad + pos: 1.5,23.5 parent: 1668 - - uid: 3918 + - uid: 4024 components: - type: Transform - pos: 2.5,-9.5 + pos: -2.5,32.5 parent: 1668 - - uid: 4150 +- proto: ComputerCargoShuttle + entities: + - uid: 3907 components: - type: Transform - pos: -28.5,1.5 + rot: -1.5707963267948966 rad + pos: 4.5,23.5 parent: 1668 -- proto: FaxMachineCentcom +- proto: ComputerCloningConsole entities: - - uid: 76 + - uid: 732 components: - type: Transform - pos: -2.5,-2.5 + pos: 21.5,-8.5 parent: 1668 - - type: FaxMachine - name: CentComm -- proto: filingCabinet + - type: DeviceLinkSource + linkedPorts: + 734: + - MedicalScannerSender: MedicalScannerReceiver + 733: + - CloningPodSender: CloningPodReceiver +- proto: ComputerComms entities: - - uid: 594 + - uid: 2820 components: - type: Transform - pos: 10.5,6.5 + pos: -15.5,13.5 parent: 1668 - - uid: 595 + - uid: 2821 components: - type: Transform - pos: 11.5,6.5 + rot: -1.5707963267948966 rad + pos: -11.5,12.5 parent: 1668 - - uid: 650 + - uid: 6738 components: - type: Transform - pos: 1.5,1.5 + rot: 3.141592653589793 rad + pos: -43.5,-8.5 parent: 1668 - - uid: 3840 +- proto: ComputerCriminalRecords + entities: + - uid: 363 components: - type: Transform - pos: -24.5,-9.5 + pos: 14.5,4.5 parent: 1668 - - uid: 3841 + - uid: 1620 components: - type: Transform - pos: -23.5,-9.5 + pos: 14.5,12.5 parent: 1668 -- proto: filingCabinetDrawer +- proto: ComputerId entities: - - uid: 1628 + - uid: 513 components: - type: Transform - pos: -12.5,12.5 + pos: 2.5,-0.5 parent: 1668 - - uid: 1660 + - uid: 2810 components: - type: Transform - pos: -11.5,14.5 - parent: 1668 -- proto: filingCabinetTall - entities: - - uid: 1626 - components: - - type: Transform - pos: -12.5,8.5 + pos: -16.5,13.5 parent: 1668 - - uid: 1627 + - uid: 2941 components: - type: Transform - pos: -11.5,8.5 + pos: -17.5,7.5 parent: 1668 - - uid: 1661 + - uid: 7105 components: - type: Transform - pos: -9.5,17.5 + pos: -43.5,-6.5 parent: 1668 -- proto: FireAxeCabinetFilled +- proto: ComputerShuttleCargo entities: - - uid: 6647 + - uid: 3906 components: - type: Transform - pos: 15.5,-28.5 + pos: 3.5,32.5 parent: 1668 -- proto: FirelockGlass +- proto: ComputerSurveillanceCameraMonitor entities: - - uid: 15 - components: - - type: Transform - pos: 5.5,-3.5 - parent: 1668 - - uid: 16 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 1668 - - uid: 17 - components: - - type: Transform - pos: 3.5,-4.5 - parent: 1668 - - uid: 18 + - uid: 8816 components: - type: Transform - pos: 3.5,-5.5 + rot: -1.5707963267948966 rad + pos: -9.5,-8.5 parent: 1668 - - uid: 19 +- proto: ComputerTelevision + entities: + - uid: 1376 components: - type: Transform - pos: 5.5,2.5 + pos: 30.5,-24.5 parent: 1668 - - uid: 20 + - uid: 2818 components: - type: Transform - pos: 4.5,2.5 + pos: -11.5,13.5 parent: 1668 - - uid: 21 +- proto: ConveyorBelt + entities: + - uid: 1626 components: - type: Transform - pos: 3.5,4.5 + rot: -1.5707963267948966 rad + pos: 23.5,12.5 parent: 1668 - - uid: 22 + - uid: 1627 components: - type: Transform - pos: 3.5,3.5 + rot: 1.5707963267948966 rad + pos: 3.5,12.5 parent: 1668 - - uid: 23 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 3264 components: - type: Transform - pos: -4.5,4.5 + rot: 3.141592653589793 rad + pos: -0.5,30.5 parent: 1668 - - uid: 24 + - uid: 3638 components: - type: Transform - pos: -4.5,3.5 + pos: 5.5,34.5 parent: 1668 - - uid: 25 + - uid: 3644 components: - type: Transform - pos: -6.5,2.5 + pos: 7.5,30.5 parent: 1668 - - uid: 26 + - uid: 3645 components: - type: Transform - pos: -5.5,2.5 + pos: 7.5,31.5 parent: 1668 - - uid: 27 + - uid: 3646 components: - type: Transform - pos: -6.5,-3.5 + pos: 5.5,32.5 parent: 1668 - - uid: 28 + - uid: 3647 components: - type: Transform - pos: -5.5,-3.5 + rot: 1.5707963267948966 rad + pos: 0.5,32.5 parent: 1668 - - uid: 29 + - uid: 3649 components: - type: Transform - pos: -4.5,-4.5 + pos: 5.5,33.5 parent: 1668 - - uid: 125 + - uid: 3650 components: - type: Transform - pos: 9.5,16.5 + rot: 1.5707963267948966 rad + pos: 1.5,32.5 parent: 1668 - - uid: 131 + - uid: 3651 components: - type: Transform - pos: -4.5,-5.5 + rot: 1.5707963267948966 rad + pos: 6.5,32.5 parent: 1668 - - uid: 492 + - uid: 3653 components: - type: Transform - pos: 25.5,-7.5 + rot: 3.141592653589793 rad + pos: 1.5,35.5 parent: 1668 - - uid: 493 + - uid: 3654 components: - type: Transform - pos: 26.5,-7.5 + pos: 5.5,35.5 parent: 1668 - - uid: 495 + - uid: 3655 components: - type: Transform - pos: 27.5,-7.5 + rot: 3.141592653589793 rad + pos: 1.5,36.5 parent: 1668 - - uid: 559 + - uid: 3656 components: - type: Transform - pos: 12.5,2.5 + rot: 3.141592653589793 rad + pos: 1.5,34.5 parent: 1668 - - uid: 560 + - uid: 3657 components: - type: Transform - pos: 14.5,2.5 + rot: 3.141592653589793 rad + pos: 1.5,33.5 parent: 1668 - - uid: 733 + - uid: 3658 components: - type: Transform - pos: 2.5,-11.5 + rot: 3.141592653589793 rad + pos: -0.5,32.5 parent: 1668 - - uid: 735 + - uid: 3659 components: - type: Transform - pos: 2.5,-12.5 + rot: 3.141592653589793 rad + pos: -0.5,31.5 parent: 1668 - - uid: 772 + - uid: 3662 components: - type: Transform - pos: -3.5,-12.5 + pos: 5.5,36.5 parent: 1668 - - uid: 773 + - uid: 3663 components: - type: Transform - pos: -3.5,-11.5 + rot: 1.5707963267948966 rad + pos: 7.5,32.5 parent: 1668 - - uid: 1619 +- proto: CrateEngineeringCableBulk + entities: + - uid: 1573 components: - type: Transform - pos: -4.5,9.5 + pos: -9.5,10.5 parent: 1668 - - uid: 1620 +- proto: CrateFreezer + entities: + - uid: 1181 components: - type: Transform - pos: -4.5,10.5 + pos: 12.5,-23.5 parent: 1668 - - uid: 4299 +- proto: CrateHydroponicsSeedsExotic + entities: + - uid: 1012 components: - type: Transform - pos: 6.5,-24.5 + pos: 7.5,-23.5 parent: 1668 - - uid: 4404 +- proto: CrateHydroponicsSeedsMedicinal + entities: + - uid: 1013 components: - type: Transform - pos: -8.5,-27.5 + pos: 6.5,-23.5 parent: 1668 - - uid: 4405 +- proto: CrateSecurityTrackingMindshieldImplants + entities: + - uid: 2236 components: - type: Transform - pos: -8.5,-26.5 + pos: 10.5,18.5 parent: 1668 - - uid: 4406 +- proto: CrateStoneGrave + entities: + - uid: 6194 components: - type: Transform - pos: -8.5,-25.5 + pos: -21.5,-4.5 parent: 1668 - - uid: 4407 + - uid: 6195 components: - type: Transform - pos: 7.5,-27.5 + pos: -24.5,-4.5 parent: 1668 - - uid: 4408 +- proto: CrateWoodenGrave + entities: + - uid: 6191 components: - type: Transform - pos: 7.5,-26.5 + pos: -23.5,-4.5 parent: 1668 - - uid: 4409 +- proto: CrowbarGreen + entities: + - uid: 3173 components: - type: Transform - pos: 7.5,-25.5 + pos: -7.5,7.5 parent: 1668 - - uid: 4630 +- proto: CrowbarRed + entities: + - uid: 2125 components: - type: Transform - pos: -13.5,-20.5 + pos: 24.488554,27.53513 parent: 1668 - - uid: 4631 + - uid: 6774 components: - type: Transform - pos: -14.5,-20.5 - parent: 1668 - - uid: 4632 + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6791 components: - type: Transform - pos: 13.5,-20.5 - parent: 1668 - - uid: 4633 + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6826 components: - type: Transform - pos: 12.5,-20.5 - parent: 1668 - - uid: 4754 + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6839 components: - type: Transform - pos: 16.5,-22.5 - parent: 1668 - - uid: 4968 + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6861 components: - type: Transform - pos: 12.5,-29.5 - parent: 1668 - - uid: 4969 + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6870 components: - type: Transform - pos: 13.5,-29.5 - parent: 1668 - - uid: 5045 + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6900 components: - type: Transform - pos: 19.5,-19.5 - parent: 1668 - - uid: 5046 + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9210 components: - type: Transform - pos: 20.5,-19.5 + pos: -30.541765,-7.579217 parent: 1668 - - uid: 5047 +- proto: CryoPod + entities: + - uid: 677 components: - type: Transform - pos: 21.5,-19.5 + pos: 16.5,-7.5 parent: 1668 - - uid: 5222 + - uid: 678 components: - type: Transform - pos: 25.5,-19.5 + pos: 16.5,-9.5 parent: 1668 - - uid: 5224 + - uid: 679 components: - type: Transform - pos: 24.5,-19.5 + pos: 16.5,-11.5 parent: 1668 - - uid: 5233 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 825 components: - type: Transform - pos: 26.5,-19.5 + pos: 11.342724,-9.280043 parent: 1668 - - uid: 5254 + - uid: 826 components: - type: Transform - pos: 29.5,-18.5 + pos: 11.6205015,-9.280043 parent: 1668 - - uid: 5255 + - uid: 827 components: - type: Transform - pos: 29.5,-17.5 + pos: 11.481613,-9.592543 parent: 1668 - - uid: 5256 + - uid: 828 components: - type: Transform - pos: 29.5,-16.5 + pos: 11.759391,-9.592543 parent: 1668 - - uid: 5876 +- proto: CurtainsBlack + entities: + - uid: 8768 components: - type: Transform - pos: -14.5,-29.5 + pos: -28.5,-15.5 parent: 1668 - - uid: 5877 + - uid: 8769 components: - type: Transform - pos: -13.5,-29.5 + pos: -29.5,-15.5 parent: 1668 - - uid: 6239 + - uid: 8770 components: - type: Transform - pos: 3.5,-34.5 + pos: -31.5,-15.5 parent: 1668 - - uid: 6244 + - uid: 8771 components: - type: Transform - pos: 2.5,-34.5 + pos: -32.5,-15.5 parent: 1668 - - uid: 6245 + - uid: 8772 components: - type: Transform - pos: 4.5,-34.5 + pos: -34.5,-15.5 parent: 1668 - - uid: 6267 + - uid: 8773 components: - type: Transform - pos: -5.5,-34.5 + pos: -35.5,-15.5 parent: 1668 - - uid: 6268 + - uid: 8774 components: - type: Transform - pos: -4.5,-34.5 + pos: -38.5,-15.5 parent: 1668 - - uid: 6269 + - uid: 8775 components: - type: Transform - pos: -3.5,-34.5 + pos: -37.5,-15.5 parent: 1668 -- proto: Fireplace +- proto: CurtainsGreenOpen entities: - - uid: 3393 + - uid: 3003 components: - type: Transform - pos: -23.5,12.5 + pos: -20.5,8.5 parent: 1668 -- proto: Flash - entities: - - uid: 1452 + - uid: 3251 components: - type: Transform - pos: 10.538131,4.4341054 + pos: -22.5,8.5 parent: 1668 - - uid: 3748 + - uid: 6185 components: - type: Transform - pos: -26.453917,8.594473 + pos: -19.5,-9.5 parent: 1668 - - uid: 4698 + - uid: 6186 components: - type: Transform - pos: 24.48021,-8.554767 + pos: -23.5,-9.5 parent: 1668 -- proto: FloorDrain +- proto: CurtainsPurpleOpen entities: - - uid: 3421 - components: - - type: Transform - pos: -20.5,15.5 - parent: 1668 - - type: Fixtures - fixtures: {} - - uid: 6622 - components: - - type: Transform - pos: 12.5,-16.5 - parent: 1668 - - type: Fixtures - fixtures: {} - - uid: 6623 - components: - - type: Transform - pos: -16.5,-33.5 - parent: 1668 - - type: Fixtures - fixtures: {} - - uid: 6718 - components: - - type: Transform - pos: -8.5,-22.5 - parent: 1668 - - type: Fixtures - fixtures: {} - - uid: 6876 + - uid: 9131 components: - type: Transform - pos: 20.5,-25.5 + rot: 3.141592653589793 rad + pos: 21.5,-28.5 parent: 1668 - - type: Fixtures - fixtures: {} -- proto: FoodBoxDonkpocketPizza +- proto: CurtainsWhiteOpen entities: - - uid: 2227 - components: - - type: Transform - pos: -14.517971,17.62628 - parent: 1668 - - uid: 3905 + - uid: 2791 components: - type: Transform - pos: -13.406932,-7.1178913 + pos: -17.5,16.5 parent: 1668 -- proto: FoodBoxDonut +- proto: d6Dice entities: - - uid: 1400 + - uid: 9168 components: - type: Transform - pos: -3.5536041,-11.463534 + pos: 21.166475,-32.566944 parent: 1668 - - uid: 2496 + - uid: 9169 components: - type: Transform - pos: 28.583382,10.652384 + pos: 21.322725,-32.879444 parent: 1668 - - uid: 3745 +- proto: DartPurple + entities: + - uid: 9174 components: - type: Transform - pos: -23.474928,11.563223 + pos: 21.538181,-31.941444 parent: 1668 - - uid: 3752 + - uid: 9175 components: - type: Transform - pos: -19.463516,4.614471 + pos: 21.569431,-32.191444 parent: 1668 - - uid: 3874 + - uid: 9176 components: - type: Transform - pos: -27.444466,-3.3787808 + pos: 20.428806,-32.222694 parent: 1668 - - uid: 3891 +- proto: DawInstrument + entities: + - uid: 1315 components: - type: Transform - pos: -22.447554,-6.441281 + pos: 20.5,-21.5 parent: 1668 -- proto: FoodCondimentBottleEnzyme +- proto: DeathNettleSeeds entities: - - uid: 4592 + - uid: 1027 components: - type: Transform - pos: -11.611271,-26.1594 + pos: 9.760128,-23.28871 parent: 1668 - - uid: 4593 + - uid: 1028 components: - type: Transform - pos: -11.470646,-26.268776 + pos: 9.760128,-23.35121 parent: 1668 -- proto: FoodCondimentPacketPepper - entities: - - uid: 4619 + - uid: 1029 components: - type: Transform - pos: 2.4944715,-29.54472 + pos: 9.760128,-23.41371 parent: 1668 -- proto: FoodCondimentPacketSalt - entities: - - uid: 4618 + - uid: 1030 components: - type: Transform - pos: 2.4007215,-29.404095 + pos: 9.760128,-23.47621 parent: 1668 -- proto: FoodMeat +- proto: DeathsquadPDA entities: - - uid: 5459 - components: - - type: Transform - parent: 5458 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 5460 + - uid: 2470 components: - type: Transform - parent: 5458 + parent: 2464 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 5461 + - uid: 2487 components: - type: Transform - parent: 5458 + parent: 2480 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 5462 + - uid: 2500 components: - type: Transform - parent: 5458 + parent: 2496 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 5848 + - uid: 2517 components: - type: Transform - parent: 5458 + parent: 2512 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: FoodPlateSmall +- proto: DebugGenerator entities: - - uid: 6627 + - uid: 3212 components: - type: Transform - pos: 0.5503339,-25.456686 + pos: -14.5,18.5 parent: 1668 - - uid: 6628 + - uid: 3216 components: - type: Transform - pos: 0.5503339,-25.394186 + pos: -14.5,17.5 parent: 1668 - - uid: 6629 + - uid: 3217 components: - type: Transform - pos: 0.5503339,-25.316061 + pos: -14.5,19.5 parent: 1668 -- proto: FoodPoppy - entities: - - uid: 6605 + - uid: 5962 components: - type: Transform - pos: -11.182456,6.7149878 + pos: -12.5,5.5 parent: 1668 -- proto: FoodSaladColeslaw +- proto: DefaultStationBeacon entities: - - uid: 6937 + - uid: 4656 components: - type: Transform - pos: 19.664907,20.706526 + pos: -0.5,3.5 parent: 1668 -- proto: FoodTartGapple - entities: - - uid: 4380 + - type: NavMapBeacon + text: CentComm + - uid: 9452 components: - type: Transform - pos: 2.5,-23.5 + pos: 22.5,-21.5 parent: 1668 -- proto: ForkPlastic - entities: - - uid: 4200 + - type: NavMapBeacon + text: Afterhours + - uid: 9479 components: - type: Transform - pos: 0.20438054,-25.436565 + pos: -0.5,-41.5 parent: 1668 - - uid: 4252 + - type: NavMapBeacon + text: Thunderdome + - uid: 9480 components: - type: Transform - pos: 0.20438054,-25.436565 + pos: -41.5,-7.5 parent: 1668 - - uid: 5451 + - type: NavMapBeacon + text: ERT +- proto: DefibrillatorCabinetFilled + entities: + - uid: 511 components: - type: Transform - pos: 0.20438054,-25.436565 + pos: 0.5,-3.5 parent: 1668 -- proto: GasFilter - entities: - - uid: 6652 + - uid: 617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-5.5 + pos: 19.5,6.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasMinerNitrogenStationLarge - entities: - - uid: 3466 + - uid: 618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-29.5 + rot: 3.141592653589793 rad + pos: 19.5,-7.5 parent: 1668 -- proto: GasMinerOxygenStationLarge - entities: - - uid: 3797 + - uid: 632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-29.5 + pos: 8.5,-3.5 parent: 1668 -- proto: GasMixer +- proto: DefibrillatorCompact entities: - - uid: 5070 + - uid: 902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-30.5 + pos: 11.571457,-6.407301 parent: 1668 - - type: GasMixer - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - targetPressure: 4500 -- proto: GasPassiveVent +- proto: DeployableBarrier entities: - - uid: 3430 + - uid: 4376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-32.5 + pos: -7.5,-44.5 parent: 1668 - - uid: 5399 + - uid: 4377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-28.5 + pos: 6.5,-44.5 parent: 1668 - - uid: 6141 + - uid: 4391 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-32.5 + pos: -7.5,-37.5 parent: 1668 - - uid: 6312 + - uid: 4394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-28.5 + pos: 6.5,-37.5 parent: 1668 -- proto: GasPipeBend +- proto: DeskBell entities: - - uid: 3660 - components: - - type: Transform - pos: -16.5,5.5 - parent: 1668 - - uid: 3670 + - uid: 1379 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,5.5 + pos: 17.519514,-19.357069 parent: 1668 - - uid: 3674 + - uid: 3917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,9.5 + pos: 2.5,22.5 parent: 1668 - - uid: 3675 +- proto: DisposalBend + entities: + - uid: 6234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,9.5 + pos: 17.5,12.5 parent: 1668 - - uid: 3676 + - uid: 6235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,11.5 + rot: 3.141592653589793 rad + pos: 16.5,12.5 parent: 1668 - - uid: 3684 + - uid: 6239 components: - type: Transform - pos: -15.5,11.5 + pos: 30.5,15.5 parent: 1668 - - uid: 3686 + - uid: 6272 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,9.5 + rot: 1.5707963267948966 rad + pos: -1.5,23.5 parent: 1668 - - uid: 4712 + - uid: 6282 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-32.5 + rot: -1.5707963267948966 rad + pos: -5.5,12.5 parent: 1668 - - uid: 4714 + - uid: 6283 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-31.5 + pos: -5.5,15.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4716 + - uid: 6303 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-30.5 + pos: -0.5,4.5 parent: 1668 - - uid: 5067 + - uid: 6324 components: - type: Transform - pos: 21.5,-28.5 + rot: 1.5707963267948966 rad + pos: -7.5,-5.5 parent: 1668 - - uid: 5069 + - uid: 6326 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-28.5 + pos: -6.5,4.5 parent: 1668 - - uid: 5389 + - uid: 6328 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-32.5 + pos: -3.5,0.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5503 + - uid: 6332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-18.5 + rot: -1.5707963267948966 rad + pos: 12.5,-5.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5513 + - uid: 6333 components: - type: Transform - pos: 13.5,-19.5 + rot: 3.141592653589793 rad + pos: 8.5,-9.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5519 + - uid: 6334 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-19.5 + rot: -1.5707963267948966 rad + pos: 9.5,-9.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5529 + - uid: 6345 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-19.5 + rot: -1.5707963267948966 rad + pos: 11.5,-0.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5539 + - uid: 6361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-19.5 + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5540 + - uid: 6362 components: - type: Transform - pos: 0.5,-17.5 + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5541 + - uid: 6375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-17.5 + rot: -1.5707963267948966 rad + pos: 4.5,-18.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5555 + - uid: 6392 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-19.5 + pos: 32.5,-16.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5560 + - uid: 6402 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-19.5 + pos: 22.5,-16.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5596 + - uid: 6412 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-4.5 + rot: -1.5707963267948966 rad + pos: 22.5,-26.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5597 + - uid: 6413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,3.5 + rot: 3.141592653589793 rad + pos: 13.5,-19.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5598 + - uid: 6414 components: - type: Transform - pos: 4.5,3.5 + pos: 14.5,-19.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5599 + - uid: 6415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-4.5 + rot: 3.141592653589793 rad + pos: 14.5,-23.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5661 + - uid: 6416 components: - type: Transform - pos: -20.5,-1.5 + pos: 15.5,-23.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5699 + - uid: 6445 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,10.5 + pos: -0.5,-26.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5711 + - uid: 6468 + components: + - type: Transform + pos: -20.5,7.5 + parent: 1668 + - uid: 8708 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,27.5 + pos: -51.5,-0.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5787 + - uid: 8767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-32.5 + rot: 1.5707963267948966 rad + pos: -15.5,-41.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6308 + - uid: 9164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-37.5 + rot: 3.141592653589793 rad + pos: 20.5,-29.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6309 + - uid: 9207 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-37.5 + pos: -15.5,-40.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6311 + - uid: 9378 components: - type: Transform - pos: 21.5,-31.5 + pos: 14.5,-41.5 parent: 1668 - - uid: 6656 + - uid: 9379 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-6.5 + pos: 14.5,-40.5 parent: 1668 - - uid: 6657 +- proto: DisposalJunction + entities: + - uid: 6298 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-6.5 + pos: -0.5,7.5 parent: 1668 - - uid: 6660 + - uid: 6313 components: - type: Transform - pos: 12.5,-2.5 + pos: -6.5,-0.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6663 + - uid: 6338 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-2.5 + pos: 9.5,-5.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6664 + - uid: 6383 components: - type: Transform - pos: 9.5,-1.5 + rot: 3.141592653589793 rad + pos: -0.5,-18.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6665 + - uid: 6417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-1.5 + rot: -1.5707963267948966 rad + pos: 15.5,-26.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6666 + - uid: 8705 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-5.5 + pos: -40.5,-0.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6667 +- proto: DisposalJunctionFlipped + entities: + - uid: 6253 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-5.5 + pos: 16.5,15.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6678 + - uid: 6289 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-10.5 + rot: 1.5707963267948966 rad + pos: -1.5,15.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6679 + - uid: 6312 components: - type: Transform - pos: 5.5,-10.5 + pos: -6.5,0.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6680 + - uid: 6325 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-11.5 + rot: 1.5707963267948966 rad + pos: -6.5,-5.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6681 + - uid: 6346 components: - type: Transform - pos: 12.5,-11.5 + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6711 + - uid: 6428 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-29.5 + rot: -1.5707963267948966 rad + pos: 20.5,-26.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6712 + - uid: 6478 components: - type: Transform - pos: 15.5,-29.5 + rot: 1.5707963267948966 rad + pos: -20.5,-0.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6713 + - uid: 9102 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-32.5 + rot: 1.5707963267948966 rad + pos: -31.5,-0.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPipeFourway +- proto: DisposalPipe entities: - - uid: 3678 + - uid: 6101 components: - type: Transform - pos: -21.5,9.5 + rot: 1.5707963267948966 rad + pos: 13.5,-41.5 parent: 1668 - - uid: 5492 + - uid: 6102 components: - type: Transform - pos: 25.5,-18.5 + rot: 1.5707963267948966 rad + pos: 13.5,-40.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5571 + - uid: 6103 components: - type: Transform - pos: -0.5,-11.5 + pos: 14.5,-39.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6310 + - uid: 6214 components: - type: Transform - pos: -0.5,-37.5 + pos: 14.5,-42.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasPipeSensorDistribution - entities: - - uid: 3883 + - uid: 6215 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-30.5 + pos: -15.5,-42.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasPipeSensorWaste - entities: - - uid: 3860 + - uid: 6226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-31.5 + pos: 17.5,4.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPipeStraight - entities: - - uid: 3664 + - uid: 6227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,5.5 + pos: 17.5,5.5 parent: 1668 - - uid: 3665 + - uid: 6228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,5.5 + pos: 17.5,6.5 parent: 1668 - - uid: 3666 + - uid: 6229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,5.5 + pos: 17.5,7.5 parent: 1668 - - uid: 3667 + - uid: 6230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,5.5 + pos: 17.5,8.5 parent: 1668 - - uid: 3668 + - uid: 6231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,5.5 + pos: 17.5,9.5 parent: 1668 - - uid: 3669 + - uid: 6232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,5.5 + pos: 17.5,10.5 parent: 1668 - - uid: 3672 + - uid: 6233 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,7.5 + pos: 17.5,11.5 parent: 1668 - - uid: 3673 + - uid: 6236 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,8.5 + pos: 16.5,13.5 parent: 1668 - - uid: 3677 + - uid: 6237 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,9.5 + rot: 3.141592653589793 rad + pos: 16.5,14.5 parent: 1668 - - uid: 3679 + - uid: 6240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,9.5 + rot: -1.5707963267948966 rad + pos: 29.5,15.5 parent: 1668 - - uid: 3680 + - uid: 6241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,9.5 + rot: -1.5707963267948966 rad + pos: 28.5,15.5 parent: 1668 - - uid: 3681 + - uid: 6242 components: - type: Transform - pos: -18.5,10.5 + rot: -1.5707963267948966 rad + pos: 27.5,15.5 parent: 1668 - - uid: 3682 + - uid: 6243 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,11.5 + pos: 26.5,15.5 parent: 1668 - - uid: 3683 + - uid: 6244 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,11.5 + pos: 25.5,15.5 parent: 1668 - - uid: 3685 + - uid: 6245 components: - type: Transform - pos: -15.5,10.5 + rot: -1.5707963267948966 rad + pos: 24.5,15.5 parent: 1668 - - uid: 3690 + - uid: 6246 components: - type: Transform - pos: -21.5,10.5 + rot: -1.5707963267948966 rad + pos: 23.5,15.5 parent: 1668 - - uid: 3691 + - uid: 6247 components: - type: Transform - pos: -21.5,11.5 + rot: -1.5707963267948966 rad + pos: 22.5,15.5 parent: 1668 - - uid: 3692 + - uid: 6248 components: - type: Transform - pos: -21.5,12.5 + rot: -1.5707963267948966 rad + pos: 21.5,15.5 parent: 1668 - - uid: 3693 + - uid: 6249 components: - type: Transform - pos: -21.5,13.5 + rot: -1.5707963267948966 rad + pos: 20.5,15.5 parent: 1668 - - uid: 4702 + - uid: 6250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-32.5 + rot: -1.5707963267948966 rad + pos: 19.5,15.5 parent: 1668 - - uid: 4711 + - uid: 6251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-30.5 + rot: -1.5707963267948966 rad + pos: 18.5,15.5 parent: 1668 - - uid: 4713 + - uid: 6252 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-29.5 + rot: -1.5707963267948966 rad + pos: 17.5,15.5 parent: 1668 - - uid: 5068 + - uid: 6254 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-29.5 + rot: -1.5707963267948966 rad + pos: 15.5,15.5 parent: 1668 - - uid: 5387 + - uid: 6255 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-30.5 + pos: 14.5,15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5394 + - uid: 6256 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-30.5 + pos: 13.5,15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5402 + - uid: 6257 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-30.5 + pos: 12.5,15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5406 + - uid: 6258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-32.5 + rot: -1.5707963267948966 rad + pos: 11.5,15.5 parent: 1668 - - uid: 5418 + - uid: 6259 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-30.5 + pos: 10.5,15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5419 + - uid: 6260 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-30.5 + pos: 9.5,15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5466 + - uid: 6261 components: - type: Transform - pos: 13.5,-29.5 + rot: -1.5707963267948966 rad + pos: 8.5,15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5467 + - uid: 6262 components: - type: Transform - pos: 13.5,-28.5 + rot: -1.5707963267948966 rad + pos: 7.5,15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5468 + - uid: 6263 components: - type: Transform - pos: 13.5,-27.5 + rot: -1.5707963267948966 rad + pos: 6.5,15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5469 + - uid: 6264 components: - type: Transform - pos: 13.5,-26.5 + rot: -1.5707963267948966 rad + pos: 5.5,15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5471 + - uid: 6265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-25.5 + rot: -1.5707963267948966 rad + pos: 4.5,15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5472 + - uid: 6266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-25.5 + rot: -1.5707963267948966 rad + pos: 3.5,15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5479 + - uid: 6267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-25.5 + rot: -1.5707963267948966 rad + pos: 2.5,15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5480 + - uid: 6268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-25.5 + rot: -1.5707963267948966 rad + pos: 1.5,15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5481 + - uid: 6269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-25.5 + rot: -1.5707963267948966 rad + pos: 0.5,15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5482 + - uid: 6273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-25.5 + pos: -1.5,22.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5483 + - uid: 6274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-25.5 + pos: -1.5,21.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5484 + - uid: 6275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-25.5 + pos: -1.5,20.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5485 + - uid: 6276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-25.5 + pos: -1.5,19.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5486 + - uid: 6277 components: - type: Transform - pos: 25.5,-24.5 + pos: -1.5,18.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5487 + - uid: 6278 components: - type: Transform - pos: 25.5,-23.5 + pos: -1.5,17.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5488 + - uid: 6279 components: - type: Transform - pos: 25.5,-22.5 + pos: -1.5,16.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5489 + - uid: 6284 components: - type: Transform - pos: 25.5,-21.5 + pos: -5.5,13.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5490 + - uid: 6285 components: - type: Transform - pos: 25.5,-20.5 + pos: -5.5,14.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5491 + - uid: 6286 components: - type: Transform - pos: 25.5,-19.5 + rot: -1.5707963267948966 rad + pos: -4.5,15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5493 + - uid: 6287 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,-18.5 + pos: -3.5,15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5494 + - uid: 6288 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-18.5 + pos: -2.5,15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5495 + - uid: 6291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-18.5 + pos: -0.5,14.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5496 + - uid: 6292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-18.5 + pos: -0.5,13.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5497 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5499 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-18.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5500 + - uid: 6293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-18.5 + pos: -0.5,12.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5501 + - uid: 6294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-18.5 + pos: -0.5,11.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5502 + - uid: 6295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-18.5 + pos: -0.5,10.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5504 + - uid: 6296 components: - type: Transform - pos: 20.5,-19.5 + pos: -0.5,9.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5508 + - uid: 6297 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-24.5 + pos: -0.5,8.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5509 + - uid: 6300 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-23.5 + rot: 1.5707963267948966 rad + pos: -1.5,7.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5511 + - uid: 6301 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-21.5 + pos: -0.5,6.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5512 + - uid: 6302 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-20.5 + pos: -0.5,5.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5514 + - uid: 6304 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-19.5 + pos: -1.5,4.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5515 + - uid: 6305 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-19.5 + pos: -2.5,4.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5516 + - uid: 6306 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-19.5 + pos: -3.5,4.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5517 + - uid: 6307 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-19.5 + pos: -4.5,4.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5518 + - uid: 6308 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-19.5 + pos: -5.5,4.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5522 + - uid: 6309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-18.5 + rot: 3.141592653589793 rad + pos: -6.5,3.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5523 + - uid: 6310 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-18.5 + rot: 3.141592653589793 rad + pos: -6.5,2.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5524 + - uid: 6311 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-18.5 + rot: 3.141592653589793 rad + pos: -6.5,1.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5525 + - uid: 6314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-18.5 + rot: 3.141592653589793 rad + pos: -6.5,-1.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5526 + - uid: 6315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-18.5 + rot: 3.141592653589793 rad + pos: -6.5,-2.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5527 + - uid: 6316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-18.5 + rot: 3.141592653589793 rad + pos: -6.5,-3.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5531 + - uid: 6317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-18.5 + rot: 3.141592653589793 rad + pos: -6.5,-4.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5532 + - uid: 6318 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-18.5 + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5533 + - uid: 6319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-18.5 + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5534 + - uid: 6320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-18.5 + rot: 1.5707963267948966 rad + pos: -3.5,-5.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5535 + - uid: 6321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-18.5 + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5536 + - uid: 6322 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-18.5 + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5545 + - uid: 6329 components: - type: Transform - pos: -0.5,-20.5 + rot: -1.5707963267948966 rad + pos: -4.5,0.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5546 + - uid: 6330 components: - type: Transform - pos: -0.5,-21.5 + rot: -1.5707963267948966 rad + pos: -5.5,0.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5547 + - uid: 6335 components: - type: Transform - pos: -0.5,-22.5 + rot: 3.141592653589793 rad + pos: 9.5,-8.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5548 + - uid: 6336 components: - type: Transform - pos: -0.5,-23.5 + rot: 3.141592653589793 rad + pos: 9.5,-7.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5549 + - uid: 6337 components: - type: Transform - pos: -0.5,-24.5 + rot: 3.141592653589793 rad + pos: 9.5,-6.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5550 + - uid: 6339 components: - type: Transform - pos: -0.5,-25.5 + rot: 1.5707963267948966 rad + pos: 11.5,-5.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5552 + - uid: 6340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-22.5 + rot: 1.5707963267948966 rad + pos: 10.5,-5.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5553 + - uid: 6341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-22.5 + pos: 9.5,-4.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5556 + - uid: 6342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-19.5 + pos: 9.5,-3.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5557 + - uid: 6343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-19.5 + pos: 9.5,-2.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5558 + - uid: 6344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-19.5 + pos: 9.5,-1.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5559 + - uid: 6347 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-19.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5561 - components: - - type: Transform - pos: -13.5,-20.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5562 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-22.5 + pos: 10.5,-0.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5567 + - uid: 6348 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-15.5 + pos: 11.5,0.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5568 + - uid: 6349 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-14.5 + rot: 1.5707963267948966 rad + pos: 8.5,-0.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5569 + - uid: 6350 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-13.5 + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5570 + - uid: 6351 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-12.5 + rot: 1.5707963267948966 rad + pos: 6.5,-0.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5574 + - uid: 6352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-11.5 + pos: 5.5,-1.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5575 + - uid: 6353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 + pos: 5.5,-2.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5576 + - uid: 6354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 + pos: 5.5,-3.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5577 + - uid: 6355 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-11.5 + pos: 5.5,-4.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5578 + - uid: 6356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-11.5 + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5579 + - uid: 6357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-11.5 + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5580 + - uid: 6358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5586 + - uid: 6359 components: - type: Transform - pos: -0.5,-10.5 + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5587 + - uid: 6360 components: - type: Transform - pos: -0.5,-9.5 + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5588 + - uid: 6364 components: - type: Transform - pos: -0.5,-8.5 + pos: -0.5,-6.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5589 + - uid: 6365 components: - type: Transform pos: -0.5,-7.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5590 + - uid: 6366 components: - type: Transform - pos: -0.5,-6.5 + pos: -0.5,-8.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5591 + - uid: 6367 components: - type: Transform - pos: -0.5,-5.5 + pos: -0.5,-10.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5600 + - uid: 6368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 + pos: -0.5,-11.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5601 + - uid: 6369 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 + pos: -0.5,-12.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5602 + - uid: 6370 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-4.5 + pos: -0.5,-13.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5603 + - uid: 6371 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-4.5 + pos: -0.5,-14.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5604 + - uid: 6372 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-3.5 + pos: -0.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5605 + - uid: 6373 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-2.5 + pos: -0.5,-16.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5606 + - uid: 6376 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-1.5 + pos: 4.5,-17.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5608 + - uid: 6377 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,1.5 + pos: 4.5,-16.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5609 + - uid: 6378 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,2.5 + pos: 4.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5610 + - uid: 6379 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,3.5 + pos: 3.5,-18.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5611 + - uid: 6380 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,3.5 + pos: 2.5,-18.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5612 + - uid: 6381 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,3.5 + pos: 1.5,-18.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5614 + - uid: 6382 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,3.5 + pos: 0.5,-18.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5615 + - uid: 6384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,3.5 + rot: 3.141592653589793 rad + pos: -0.5,-17.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5616 + - uid: 6385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,3.5 + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5617 + - uid: 6386 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,3.5 + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5618 + - uid: 6387 components: - type: Transform - pos: 4.5,2.5 + rot: -1.5707963267948966 rad + pos: -3.5,-9.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5619 + - uid: 6388 components: - type: Transform - pos: 4.5,1.5 + rot: -1.5707963267948966 rad + pos: -4.5,-9.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5620 + - uid: 6393 components: - type: Transform - pos: 4.5,0.5 + rot: -1.5707963267948966 rad + pos: 31.5,-16.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5621 + - uid: 6394 components: - type: Transform - pos: 4.5,-1.5 + rot: -1.5707963267948966 rad + pos: 30.5,-16.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5622 + - uid: 6395 components: - type: Transform - pos: 4.5,-2.5 + rot: -1.5707963267948966 rad + pos: 29.5,-16.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5623 + - uid: 6396 components: - type: Transform - pos: 4.5,-3.5 + rot: -1.5707963267948966 rad + pos: 28.5,-16.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5624 + - uid: 6397 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-4.5 + pos: 27.5,-16.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5625 + - uid: 6398 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-4.5 + pos: 26.5,-16.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5626 + - uid: 6399 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-4.5 + pos: 25.5,-16.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5629 + - uid: 6400 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-0.5 + pos: 24.5,-16.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5630 + - uid: 6401 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-0.5 + pos: 23.5,-16.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5631 + - uid: 6403 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 1668 + - uid: 6404 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 1668 + - uid: 6405 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 1668 + - uid: 6406 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 1668 + - uid: 6407 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 1668 + - uid: 6408 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 1668 + - uid: 6409 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 1668 + - uid: 6410 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 1668 + - uid: 6411 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 1668 + - uid: 6418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-25.5 + parent: 1668 + - uid: 6419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-24.5 + parent: 1668 + - uid: 6420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-22.5 + parent: 1668 + - uid: 6421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-21.5 + parent: 1668 + - uid: 6422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-20.5 + parent: 1668 + - uid: 6423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-18.5 + parent: 1668 + - uid: 6424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-26.5 + parent: 1668 + - uid: 6425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-26.5 + parent: 1668 + - uid: 6426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-26.5 + parent: 1668 + - uid: 6427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-26.5 + parent: 1668 + - uid: 6429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-26.5 + parent: 1668 + - uid: 6430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-26.5 + parent: 1668 + - uid: 6431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-26.5 + parent: 1668 + - uid: 6432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-26.5 + parent: 1668 + - uid: 6433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-26.5 + parent: 1668 + - uid: 6434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-26.5 + parent: 1668 + - uid: 6435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-26.5 + parent: 1668 + - uid: 6436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-26.5 + parent: 1668 + - uid: 6437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-26.5 + parent: 1668 + - uid: 6438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-26.5 + parent: 1668 + - uid: 6439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-26.5 + parent: 1668 + - uid: 6440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 1668 + - uid: 6441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-26.5 + parent: 1668 + - uid: 6442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 1668 + - uid: 6443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-26.5 + parent: 1668 + - uid: 6444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 1668 + - uid: 6446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-25.5 + parent: 1668 + - uid: 6447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-24.5 + parent: 1668 + - uid: 6448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-23.5 + parent: 1668 + - uid: 6449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-22.5 + parent: 1668 + - uid: 6450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-21.5 + parent: 1668 + - uid: 6451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-20.5 + parent: 1668 + - uid: 6452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-19.5 + parent: 1668 + - uid: 6453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1668 + - uid: 6454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 1668 + - uid: 6455 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-0.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5632 + - uid: 6456 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-0.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5633 + - uid: 6457 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-0.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5634 + - uid: 6458 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-0.5 + pos: -14.5,-0.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5635 + - uid: 6459 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-0.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5636 + - uid: 6460 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-0.5 + pos: -15.5,-0.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5637 + - uid: 6461 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-0.5 + pos: -16.5,-0.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5638 + - uid: 6462 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-0.5 + pos: -17.5,-0.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5639 + - uid: 6463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 1668 + - uid: 6464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 1668 + - uid: 6465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1668 + - uid: 6469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,7.5 + parent: 1668 + - uid: 6470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,7.5 + parent: 1668 + - uid: 6471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,6.5 + parent: 1668 + - uid: 6472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,5.5 + parent: 1668 + - uid: 6473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,4.5 + parent: 1668 + - uid: 6474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,3.5 + parent: 1668 + - uid: 6475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,2.5 + parent: 1668 + - uid: 6476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,1.5 + parent: 1668 + - uid: 6477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,0.5 + parent: 1668 + - uid: 8677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-9.5 + parent: 1668 + - uid: 8678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-8.5 + parent: 1668 + - uid: 8679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-7.5 + parent: 1668 + - uid: 8680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-6.5 + parent: 1668 + - uid: 8681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-5.5 + parent: 1668 + - uid: 8682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-4.5 + parent: 1668 + - uid: 8683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-3.5 + parent: 1668 + - uid: 8684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-2.5 + parent: 1668 + - uid: 8685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-1.5 + parent: 1668 + - uid: 8686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-0.5 + parent: 1668 + - uid: 8687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-0.5 + parent: 1668 + - uid: 8688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 1668 + - uid: 8689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-0.5 + parent: 1668 + - uid: 8690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-0.5 + parent: 1668 + - uid: 8691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-0.5 + parent: 1668 + - uid: 8692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-0.5 + parent: 1668 + - uid: 8693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-0.5 + parent: 1668 + - uid: 8695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 1668 + - uid: 8696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 1668 + - uid: 8697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 1668 + - uid: 8698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 1668 + - uid: 8699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 1668 + - uid: 8700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 1668 + - uid: 8701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 1668 + - uid: 8702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 1668 + - uid: 8703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 1668 + - uid: 8704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 1668 + - uid: 8709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-0.5 + parent: 1668 + - uid: 8710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 1668 + - uid: 8711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-0.5 + parent: 1668 + - uid: 8712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 1668 + - uid: 8713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 1668 + - uid: 8714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-0.5 + parent: 1668 + - uid: 8715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-0.5 + parent: 1668 + - uid: 8716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-0.5 + parent: 1668 + - uid: 8717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-0.5 + parent: 1668 + - uid: 8718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-0.5 + parent: 1668 + - uid: 8719 + components: + - type: Transform + pos: -51.5,-1.5 + parent: 1668 + - uid: 8764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-41.5 + parent: 1668 + - uid: 8765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-40.5 + parent: 1668 + - uid: 8766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-39.5 + parent: 1668 + - uid: 9101 + components: + - type: Transform + pos: -31.5,0.5 + parent: 1668 + - uid: 9165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-29.5 + parent: 1668 + - uid: 9166 + components: + - type: Transform + pos: 20.5,-28.5 + parent: 1668 + - uid: 9167 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 1668 +- proto: DisposalTrunk + entities: + - uid: 4750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-41.5 + parent: 1668 + - uid: 4751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-40.5 + parent: 1668 + - uid: 4752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-43.5 + parent: 1668 + - uid: 4753 + components: + - type: Transform + pos: -15.5,-38.5 + parent: 1668 + - uid: 4797 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 1668 + - uid: 4803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-43.5 + parent: 1668 + - uid: 4810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-41.5 + parent: 1668 + - uid: 6100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-40.5 + parent: 1668 + - uid: 6219 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1668 + - uid: 6220 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1668 + - uid: 6221 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 1668 + - uid: 6222 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 1668 + - uid: 6223 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 1668 + - uid: 6225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,3.5 + parent: 1668 + - uid: 6238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,14.5 + parent: 1668 + - uid: 6271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,23.5 + parent: 1668 + - uid: 6280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 1668 + - uid: 6299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1668 + - uid: 6323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 1668 + - uid: 6327 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1668 + - uid: 6331 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1668 + - uid: 6467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,7.5 + parent: 1668 + - uid: 8676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-10.5 + parent: 1668 + - uid: 8694 + components: + - type: Transform + pos: -31.5,1.5 + parent: 1668 + - uid: 8707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-2.5 + parent: 1668 + - uid: 9072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 1668 + - uid: 9163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-29.5 + parent: 1668 +- proto: DisposalUnit + entities: + - uid: 509 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1668 + - uid: 1095 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1668 + - uid: 2610 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 1668 + - uid: 2613 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1668 + - uid: 2614 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 1668 + - uid: 2619 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1668 + - uid: 2620 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 1668 + - uid: 3007 + components: + - type: Transform + pos: 30.5,14.5 + parent: 1668 + - uid: 3193 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 1668 + - uid: 4321 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1668 + - uid: 4735 + components: + - type: Transform + pos: 14.5,-43.5 + parent: 1668 + - uid: 4736 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 1668 + - uid: 4748 + components: + - type: Transform + pos: -15.5,-43.5 + parent: 1668 + - uid: 4749 + components: + - type: Transform + pos: -15.5,-38.5 + parent: 1668 + - uid: 6224 + components: + - type: Transform + pos: 17.5,3.5 + parent: 1668 + - uid: 6270 + components: + - type: Transform + pos: -0.5,23.5 + parent: 1668 + - uid: 6281 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1668 + - uid: 6466 + components: + - type: Transform + pos: -23.5,7.5 + parent: 1668 + - uid: 6727 + components: + - type: Transform + pos: -40.5,-10.5 + parent: 1668 + - uid: 8706 + components: + - type: Transform + pos: -51.5,-2.5 + parent: 1668 + - uid: 9100 + components: + - type: Transform + pos: -31.5,1.5 + parent: 1668 + - uid: 9162 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 1668 +- proto: DisposalYJunction + entities: + - uid: 6290 + components: + - type: Transform + pos: -0.5,15.5 + parent: 1668 + - uid: 6363 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1668 + - uid: 6374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1668 +- proto: DonkpocketBoxSpawner + entities: + - uid: 5509 + components: + - type: Transform + pos: -11.5,-31.5 + parent: 1668 +- proto: DoorRemoteAll + entities: + - uid: 1574 + components: + - type: Transform + pos: -23.357275,9.944693 + parent: 1668 +- proto: DoubleEmergencyNitrogenTankFilled + entities: + - uid: 2477 + components: + - type: Transform + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2481 + components: + - type: Transform + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2508 + components: + - type: Transform + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2525 + components: + - type: Transform + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 2475 + components: + - type: Transform + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2482 + components: + - type: Transform + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2507 + components: + - type: Transform + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2526 + components: + - type: Transform + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DresserCaptainFilled + entities: + - uid: 2824 + components: + - type: Transform + pos: -11.5,9.5 + parent: 1668 +- proto: DresserFilled + entities: + - uid: 6183 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 1668 +- proto: DrinkBottleOfNothingFull + entities: + - uid: 6115 + components: + - type: Transform + pos: -14.027711,-17.1509 + parent: 1668 +- proto: DrinkFlask + entities: + - uid: 1378 + components: + - type: Transform + pos: -10.52196,7.6029615 + parent: 1668 +- proto: DrinkGlass + entities: + - uid: 2830 + components: + - type: Transform + pos: -17.830986,26.658918 + parent: 1668 + - uid: 4083 + components: + - type: Transform + pos: -17.674736,26.502668 + parent: 1668 + - uid: 6203 + components: + - type: Transform + pos: 9.230212,-36.360332 + parent: 1668 + - uid: 6209 + components: + - type: Transform + pos: 9.480212,-36.360332 + parent: 1668 + - uid: 6210 + components: + - type: Transform + pos: 9.730212,-36.360332 + parent: 1668 +- proto: DrinkGoldenCup + entities: + - uid: 2654 + components: + - type: Transform + pos: -23.50823,12.659112 + parent: 1668 + - uid: 4215 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 1668 + - uid: 4216 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 1668 +- proto: DrinkIceBucket + entities: + - uid: 2118 + components: + - type: Transform + pos: 29.819233,-18.39215 + parent: 1668 + - uid: 6211 + components: + - type: Transform + pos: 10.514935,-35.88811 + parent: 1668 +- proto: DrinkJar + entities: + - uid: 4400 + components: + - type: Transform + pos: -23.003485,-17.130417 + parent: 1668 +- proto: DrinkJigger + entities: + - uid: 6204 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 1668 +- proto: DrinkLean + entities: + - uid: 6205 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 1668 +- proto: DrinkMeadGlass + entities: + - uid: 6075 + components: + - type: Transform + pos: -17.021734,-17.111063 + parent: 1668 +- proto: DrinkMugGreen + entities: + - uid: 2110 + components: + - type: Transform + pos: 27.337025,12.129932 + parent: 1668 +- proto: DrinkMugMetal + entities: + - uid: 2088 + components: + - type: Transform + pos: 31.480066,11.690669 + parent: 1668 +- proto: DrinkShaker + entities: + - uid: 1373 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 1668 + - uid: 4041 + components: + - type: Transform + pos: -17.502861,26.705793 + parent: 1668 + - uid: 6208 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 1668 +- proto: DrinkShotGlass + entities: + - uid: 4760 + components: + - type: Transform + pos: 5.10735,-49.49396 + parent: 1668 + - uid: 4761 + components: + - type: Transform + pos: 4.966725,-49.27521 + parent: 1668 + - uid: 4762 + components: + - type: Transform + pos: 4.841725,-49.46271 + parent: 1668 + - uid: 6761 + components: + - type: Transform + pos: -45.467384,-5.457982 + parent: 1668 + - uid: 6762 + components: + - type: Transform + pos: -45.342384,-5.379857 + parent: 1668 +- proto: DrinkWaterBottleFull + entities: + - uid: 6113 + components: + - type: Transform + pos: -8.661282,-17.104218 + parent: 1668 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 4721 + components: + - type: Transform + pos: 5.497975,-49.24396 + parent: 1668 + - uid: 6760 + components: + - type: Transform + pos: -45.592384,-5.004857 + parent: 1668 +- proto: EmergencyMedipen + entities: + - uid: 821 + components: + - type: Transform + pos: 10.4410305,-6.633928 + parent: 1668 + - uid: 822 + components: + - type: Transform + pos: 10.4410305,-6.477678 + parent: 1668 + - uid: 823 + components: + - type: Transform + pos: 10.4410305,-6.321428 + parent: 1668 + - uid: 824 + components: + - type: Transform + pos: 10.4410305,-6.180803 + parent: 1668 +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 820 + components: + - type: Transform + pos: 17.394156,-4.477678 + parent: 1668 +- proto: EmpGrenade + entities: + - uid: 2622 + components: + - type: Transform + pos: 14.292023,30.84699 + parent: 1668 + - uid: 2623 + components: + - type: Transform + pos: 14.292023,30.84699 + parent: 1668 + - uid: 2624 + components: + - type: Transform + pos: 14.292023,30.84699 + parent: 1668 + - uid: 2625 + components: + - type: Transform + pos: 14.292023,30.84699 + parent: 1668 +- proto: EnergyShield + entities: + - uid: 2692 + components: + - type: Transform + pos: 13.365765,32.570316 + parent: 1668 + - uid: 2693 + components: + - type: Transform + pos: 13.365765,32.570316 + parent: 1668 + - uid: 2694 + components: + - type: Transform + pos: 13.365765,32.570316 + parent: 1668 + - uid: 2697 + components: + - type: Transform + pos: 13.365765,32.570316 + parent: 1668 +- proto: EnergySword + entities: + - uid: 2667 + components: + - type: Transform + pos: 13.91264,32.80469 + parent: 1668 + - uid: 2668 + components: + - type: Transform + pos: 13.91264,32.80469 + parent: 1668 + - uid: 2670 + components: + - type: Transform + pos: 13.91264,32.80469 + parent: 1668 + - uid: 2671 + components: + - type: Transform + pos: 13.91264,32.80469 + parent: 1668 +- proto: EpinephrineChemistryBottle + entities: + - uid: 6859 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6860 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6867 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6871 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ERTEngineerPDA + entities: + - uid: 6784 + components: + - type: Transform + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6803 + components: + - type: Transform + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ERTLeaderPDA + entities: + - uid: 6895 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ERTMedicPDA + entities: + - uid: 6852 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6880 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ERTSecurityPDA + entities: + - uid: 6816 + components: + - type: Transform + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6831 + components: + - type: Transform + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ExGrenade + entities: + - uid: 2605 + components: + - type: Transform + pos: 14.510773,30.826159 + parent: 1668 + - uid: 2606 + components: + - type: Transform + pos: 14.510773,30.826159 + parent: 1668 + - uid: 2607 + components: + - type: Transform + pos: 14.510773,30.826159 + parent: 1668 + - uid: 2608 + components: + - type: Transform + pos: 14.510773,30.826159 + parent: 1668 +- proto: ExplosivesSignMed + entities: + - uid: 2539 + components: + - type: Transform + pos: 17.5,29.5 + parent: 1668 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 615 + components: + - type: Transform + pos: 18.5,5.5 + parent: 1668 + - uid: 616 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 1668 +- proto: ExtradimensionalOrangeSeeds + entities: + - uid: 1032 + components: + - type: Transform + pos: 10.211444,-23.286423 + parent: 1668 + - uid: 1047 + components: + - type: Transform + pos: 10.211444,-23.341978 + parent: 1668 + - uid: 1048 + components: + - type: Transform + pos: 10.211444,-23.402164 + parent: 1668 + - uid: 1049 + components: + - type: Transform + pos: 10.206814,-23.462349 + parent: 1668 +- proto: FaxMachineCentcom + entities: + - uid: 505 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1668 + - type: FaxMachine + name: Centcomm +- proto: FenceWoodSmallEnd + entities: + - uid: 6159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-11.5 + parent: 1668 + - uid: 6162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-11.5 + parent: 1668 +- proto: FenceWoodSmallStraight + entities: + - uid: 6160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-11.5 + parent: 1668 + - uid: 6161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-11.5 + parent: 1668 + - uid: 6163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 1668 + - uid: 6164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-11.5 + parent: 1668 + - uid: 6165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 1668 + - uid: 6166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-11.5 + parent: 1668 + - uid: 6168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-11.5 + parent: 1668 +- proto: filingCabinetDrawerRandom + entities: + - uid: 498 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1668 + - uid: 2084 + components: + - type: Transform + pos: 25.5,10.5 + parent: 1668 +- proto: filingCabinetRandom + entities: + - uid: 506 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1668 + - uid: 2082 + components: + - type: Transform + pos: 30.5,12.5 + parent: 1668 + - uid: 6725 + components: + - type: Transform + pos: -42.5,-10.5 + parent: 1668 + - uid: 6726 + components: + - type: Transform + pos: -41.5,-10.5 + parent: 1668 + - uid: 7305 + components: + - type: Transform + pos: -47.5,3.5 + parent: 1668 + - uid: 7306 + components: + - type: Transform + pos: -41.5,3.5 + parent: 1668 + - uid: 7307 + components: + - type: Transform + pos: -51.5,-4.5 + parent: 1668 +- proto: FireAxeCabinetFilled + entities: + - uid: 4265 + components: + - type: Transform + pos: -17.5,28.5 + parent: 1668 +- proto: FirelockGlass + entities: + - uid: 2725 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1668 + - uid: 3995 + components: + - type: Transform + pos: -0.5,17.5 + parent: 1668 + - uid: 3996 + components: + - type: Transform + pos: -1.5,17.5 + parent: 1668 + - uid: 3998 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1668 + - uid: 3999 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1668 + - uid: 4000 + components: + - type: Transform + pos: -1.5,13.5 + parent: 1668 + - uid: 4002 + components: + - type: Transform + pos: 18.5,14.5 + parent: 1668 + - uid: 4003 + components: + - type: Transform + pos: 18.5,15.5 + parent: 1668 + - uid: 4004 + components: + - type: Transform + pos: 18.5,16.5 + parent: 1668 + - uid: 4766 + components: + - type: Transform + pos: 13.5,-48.5 + parent: 1668 + - uid: 4767 + components: + - type: Transform + pos: 13.5,-47.5 + parent: 1668 + - uid: 4768 + components: + - type: Transform + pos: 16.5,-44.5 + parent: 1668 + - uid: 4769 + components: + - type: Transform + pos: 17.5,-44.5 + parent: 1668 + - uid: 4770 + components: + - type: Transform + pos: 17.5,-37.5 + parent: 1668 + - uid: 4771 + components: + - type: Transform + pos: 16.5,-37.5 + parent: 1668 + - uid: 4772 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 1668 + - uid: 4773 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 1668 + - uid: 4774 + components: + - type: Transform + pos: -14.5,-48.5 + parent: 1668 + - uid: 4775 + components: + - type: Transform + pos: -14.5,-47.5 + parent: 1668 + - uid: 4776 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 1668 + - uid: 4777 + components: + - type: Transform + pos: -18.5,-37.5 + parent: 1668 + - uid: 4778 + components: + - type: Transform + pos: -13.5,-28.5 + parent: 1668 + - uid: 4779 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 1668 + - uid: 4780 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 1668 + - uid: 4781 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 1668 + - uid: 8593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,14.5 + parent: 1668 + - uid: 8594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,14.5 + parent: 1668 +- proto: Fireplace + entities: + - uid: 2842 + components: + - type: Transform + pos: -20.5,13.5 + parent: 1668 + - uid: 6169 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 1668 +- proto: Flash + entities: + - uid: 3423 + components: + - type: Transform + pos: -22.837252,13.706506 + parent: 1668 +- proto: FlashlightSeclite + entities: + - uid: 3613 + components: + - type: Transform + pos: 15.5,7.5 + parent: 1668 + - uid: 6756 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 1668 + - uid: 6890 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FlippoEngravedLighter + entities: + - uid: 2841 + components: + - type: Transform + pos: -15.490675,9.659155 + parent: 1668 +- proto: FloorDrain + entities: + - uid: 676 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 1668 + - type: Fixtures + fixtures: {} + - uid: 755 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 1668 + - type: Fixtures + fixtures: {} + - uid: 1185 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 1668 + - type: Fixtures + fixtures: {} + - uid: 2790 + components: + - type: Transform + pos: -17.5,16.5 + parent: 1668 + - type: Fixtures + fixtures: {} +- proto: FloraTree + entities: + - uid: 5927 + components: + - type: Transform + pos: -27.01272,3.9405928 + parent: 1668 +- proto: FoodBakedCookie + entities: + - uid: 4386 + components: + - type: MetaData + desc: BISCUIT!!! + name: biscuit + - type: Transform + pos: -23.50047,-17.460098 + parent: 1668 +- proto: FoodBoxDonut + entities: + - uid: 2678 + components: + - type: Transform + pos: -20.513674,12.565362 + parent: 1668 + - uid: 4763 + components: + - type: Transform + pos: 4.16985,-49.40021 + parent: 1668 + - uid: 6757 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 1668 + - uid: 6759 + components: + - type: Transform + pos: -45.5,-4.5 + parent: 1668 +- proto: FoodCakeBirthdaySlice + entities: + - uid: 6073 + components: + - type: Transform + pos: -17.500902,-17.308979 + parent: 1668 +- proto: FoodCarrot + entities: + - uid: 5493 + components: + - type: Transform + parent: 5492 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5494 + components: + - type: Transform + parent: 5492 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5495 + components: + - type: Transform + parent: 5492 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5496 + components: + - type: Transform + parent: 5492 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5501 + components: + - type: Transform + parent: 5492 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodCorn + entities: + - uid: 5453 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5454 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5455 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5456 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5457 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5458 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5459 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5460 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5461 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5462 + components: + - type: Transform + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodGoldenApple + entities: + - uid: 4220 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 1668 +- proto: FoodMeat + entities: + - uid: 5482 + components: + - type: Transform + parent: 5481 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5483 + components: + - type: Transform + parent: 5481 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5484 + components: + - type: Transform + parent: 5481 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5485 + components: + - type: Transform + parent: 5481 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5486 + components: + - type: Transform + parent: 5481 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5487 + components: + - type: Transform + parent: 5481 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5488 + components: + - type: Transform + parent: 5481 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5489 + components: + - type: Transform + parent: 5481 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5490 + components: + - type: Transform + parent: 5481 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5491 + components: + - type: Transform + parent: 5481 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMushroom + entities: + - uid: 5497 + components: + - type: Transform + parent: 5492 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5498 + components: + - type: Transform + parent: 5492 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5499 + components: + - type: Transform + parent: 5492 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5500 + components: + - type: Transform + parent: 5492 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5502 + components: + - type: Transform + parent: 5492 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodPoppy + entities: + - uid: 1709 + components: + - type: Transform + pos: -10.2766075,7.7393837 + parent: 1668 +- proto: FoodShakerPepper + entities: + - uid: 1374 + components: + - type: Transform + pos: 21.365316,-15.9011 + parent: 1668 +- proto: FoodShakerSalt + entities: + - uid: 1375 + components: + - type: Transform + pos: 21.580595,-15.908045 + parent: 1668 +- proto: FreedomImplanter + entities: + - uid: 2473 + components: + - type: Transform + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2492 + components: + - type: Transform + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2504 + components: + - type: Transform + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2521 + components: + - type: Transform + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FrezonCanister + entities: + - uid: 4118 + components: + - type: Transform + pos: -22.5,30.5 + parent: 1668 +- proto: GasFilter + entities: + - uid: 684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-10.5 + parent: 1668 + - type: GasFilter + filteredGas: CarbonDioxide + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasFilterFlipped + entities: + - uid: 3497 + components: + - type: Transform + pos: -24.5,26.5 + parent: 1668 + - type: GasFilter + filteredGas: Nitrogen + - uid: 3499 + components: + - type: Transform + pos: -24.5,21.5 + parent: 1668 + - type: GasFilter + filteredGas: Oxygen + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 3398 + components: + - type: Transform + pos: -30.5,26.5 + parent: 1668 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 3400 + components: + - type: Transform + pos: -30.5,20.5 + parent: 1668 +- proto: GasMixerFlipped + entities: + - uid: 3508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,19.5 + parent: 1668 + - type: GasMixer + inletTwoConcentration: 0.77 + inletOneConcentration: 0.23 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasOutletInjector + entities: + - uid: 3477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,21.5 + parent: 1668 + - uid: 3478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,27.5 + parent: 1668 +- proto: GasPassiveVent + entities: + - uid: 1768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-22.5 + parent: 1668 + - uid: 2055 + components: + - type: Transform + pos: -25.5,29.5 + parent: 1668 + - uid: 3479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,25.5 + parent: 1668 + - uid: 3480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,19.5 + parent: 1668 +- proto: GasPipeBend + entities: + - uid: 690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-12.5 + parent: 1668 + - uid: 691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 1668 + - uid: 692 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1668 + - uid: 693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 1668 + - uid: 694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-11.5 + parent: 1668 + - uid: 790 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 1668 + - uid: 1710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,28.5 + parent: 1668 + - uid: 1732 + components: + - type: Transform + pos: -24.5,28.5 + parent: 1668 + - uid: 3502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,26.5 + parent: 1668 + - uid: 3503 + components: + - type: Transform + pos: -25.5,27.5 + parent: 1668 + - uid: 3509 + components: + - type: Transform + pos: -22.5,25.5 + parent: 1668 + - uid: 3532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7268 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7319 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7686 + components: + - type: Transform + pos: -15.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7719 + components: + - type: Transform + pos: -4.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7721 + components: + - type: Transform + pos: -10.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8092 + components: + - type: Transform + pos: 15.5,32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8162 + components: + - type: Transform + pos: 7.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8169 + components: + - type: Transform + pos: 1.5,26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8188 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8190 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8192 + components: + - type: Transform + pos: 31.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8322 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8552 + components: + - type: Transform + pos: 19.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8577 + components: + - type: Transform + pos: 31.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8867 + components: + - type: Transform + pos: 16.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-45.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-46.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8872 + components: + - type: Transform + pos: 17.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-46.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8915 + components: + - type: Transform + pos: -15.5,-45.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8975 + components: + - type: Transform + pos: -7.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9015 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeFourway + entities: + - uid: 686 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 1668 + - uid: 7682 + components: + - type: Transform + pos: -1.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7683 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7789 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7806 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8050 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8051 + components: + - type: Transform + pos: 10.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8253 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8518 + components: + - type: Transform + pos: 30.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8591 + components: + - type: Transform + pos: 31.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8603 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8735 + components: + - type: Transform + pos: -20.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8756 + components: + - type: Transform + pos: -22.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9124 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeStraight + entities: + - uid: 695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-12.5 + parent: 1668 + - uid: 696 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 1668 + - uid: 697 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 1668 + - uid: 3481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,19.5 + parent: 1668 + - uid: 3482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,19.5 + parent: 1668 + - uid: 3483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,19.5 + parent: 1668 + - uid: 3484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,21.5 + parent: 1668 + - uid: 3485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,21.5 + parent: 1668 + - uid: 3486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,21.5 + parent: 1668 + - uid: 3487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,25.5 + parent: 1668 + - uid: 3488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,25.5 + parent: 1668 + - uid: 3489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,25.5 + parent: 1668 + - uid: 3490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,27.5 + parent: 1668 + - uid: 3491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,27.5 + parent: 1668 + - uid: 3492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,27.5 + parent: 1668 + - uid: 3501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,21.5 + parent: 1668 + - uid: 3504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,19.5 + parent: 1668 + - uid: 3505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,25.5 + parent: 1668 + - uid: 3506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,25.5 + parent: 1668 + - uid: 3507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,19.5 + parent: 1668 + - uid: 3510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,20.5 + parent: 1668 + - uid: 3511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,21.5 + parent: 1668 + - uid: 3512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,22.5 + parent: 1668 + - uid: 3513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,23.5 + parent: 1668 + - uid: 3514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,24.5 + parent: 1668 + - uid: 3515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,22.5 + parent: 1668 + - uid: 3516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,23.5 + parent: 1668 + - uid: 3517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,24.5 + parent: 1668 + - uid: 3518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,25.5 + parent: 1668 + - uid: 3519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,27.5 + parent: 1668 + - uid: 3522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-46.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7511 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7512 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7513 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7514 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7515 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7516 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7518 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7519 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7520 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7521 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7555 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7556 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7558 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7559 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7560 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7561 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7657 + components: + - type: Transform + pos: -50.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7694 + components: + - type: Transform + pos: -9.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7695 + components: + - type: Transform + pos: -9.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7696 + components: + - type: Transform + pos: -9.5,13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7697 + components: + - type: Transform + pos: -9.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7716 + components: + - type: Transform + pos: -4.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7717 + components: + - type: Transform + pos: -4.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7718 + components: + - type: Transform + pos: -4.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7817 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7818 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7820 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7821 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7823 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7824 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7825 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7827 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7828 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7830 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7831 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7832 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7833 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7834 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7836 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7837 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7838 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7840 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7841 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7843 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7844 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7845 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7846 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7848 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7849 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7851 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7852 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7853 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7854 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7855 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7856 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7971 + components: + - type: Transform + pos: -15.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7972 + components: + - type: Transform + pos: -15.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8021 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8022 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8023 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8024 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8025 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8026 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8027 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8028 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8029 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8030 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8031 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8032 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8034 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8035 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8036 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8037 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8038 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8039 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8040 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8041 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8042 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8043 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8045 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8046 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8047 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8048 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8049 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8106 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8107 + components: + - type: Transform + pos: 15.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8108 + components: + - type: Transform + pos: 15.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8109 + components: + - type: Transform + pos: 15.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8110 + components: + - type: Transform + pos: 15.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8111 + components: + - type: Transform + pos: 15.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8112 + components: + - type: Transform + pos: 15.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8113 + components: + - type: Transform + pos: 15.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8114 + components: + - type: Transform + pos: 15.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8115 + components: + - type: Transform + pos: 15.5,26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8116 + components: + - type: Transform + pos: 15.5,27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8117 + components: + - type: Transform + pos: 15.5,28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8118 + components: + - type: Transform + pos: 15.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8119 + components: + - type: Transform + pos: 15.5,30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8120 + components: + - type: Transform + pos: 15.5,31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8121 + components: + - type: Transform + pos: -1.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8122 + components: + - type: Transform + pos: -1.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8124 + components: + - type: Transform + pos: -1.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8125 + components: + - type: Transform + pos: -1.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8126 + components: + - type: Transform + pos: -1.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8127 + components: + - type: Transform + pos: -1.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8128 + components: + - type: Transform + pos: -1.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8129 + components: + - type: Transform + pos: -1.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8130 + components: + - type: Transform + pos: -1.5,26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8131 + components: + - type: Transform + pos: -1.5,27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8132 + components: + - type: Transform + pos: -1.5,28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8134 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8135 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8136 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8139 + components: + - type: Transform + pos: 0.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8140 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8141 + components: + - type: Transform + pos: 0.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8193 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8194 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8195 + components: + - type: Transform + pos: 21.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8255 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8256 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8257 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8258 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8259 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8260 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8261 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8263 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8311 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8312 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8313 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8355 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8356 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8357 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8358 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8359 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8383 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8390 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8391 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8392 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8393 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8394 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8464 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8465 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8466 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8467 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8468 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8498 + components: + - type: Transform + pos: -16.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8553 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8554 + components: + - type: Transform + pos: 18.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8555 + components: + - type: Transform + pos: 22.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8556 + components: + - type: Transform + pos: 22.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8557 + components: + - type: Transform + pos: 22.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8567 + components: + - type: Transform + pos: 34.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8568 + components: + - type: Transform + pos: 34.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8569 + components: + - type: Transform + pos: 31.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8570 + components: + - type: Transform + pos: 31.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8571 + components: + - type: Transform + pos: 31.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8572 + components: + - type: Transform + pos: 31.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8573 + components: + - type: Transform + pos: 31.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8574 + components: + - type: Transform + pos: 31.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8575 + components: + - type: Transform + pos: 31.5,23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8576 + components: + - type: Transform + pos: 31.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8579 + components: + - type: Transform + pos: 30.5,13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8580 + components: + - type: Transform + pos: 30.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8581 + components: + - type: Transform + pos: 30.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8582 + components: + - type: Transform + pos: 29.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8583 + components: + - type: Transform + pos: 29.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8584 + components: + - type: Transform + pos: 29.5,13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8585 + components: + - type: Transform + pos: 29.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8586 + components: + - type: Transform + pos: 29.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8618 + components: + - type: Transform + pos: -50.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8619 + components: + - type: Transform + pos: -50.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8620 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8621 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8622 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8623 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8624 + components: + - type: Transform + pos: -48.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8625 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8626 + components: + - type: Transform + pos: -48.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8627 + components: + - type: Transform + pos: -48.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8628 + components: + - type: Transform + pos: -48.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8656 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8657 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8658 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8659 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8660 + components: + - type: Transform + pos: -38.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8661 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8662 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8663 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8664 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8665 + components: + - type: Transform + pos: -40.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8666 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8667 + components: + - type: Transform + pos: -40.5,-2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8668 + components: + - type: Transform + pos: -40.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8669 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,2.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8832 + components: + - type: Transform + pos: 15.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-46.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-45.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8844 + components: + - type: Transform + pos: 16.5,-44.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8845 + components: + - type: Transform + pos: 16.5,-43.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8846 + components: + - type: Transform + pos: 16.5,-42.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-40.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-39.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-37.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-38.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8856 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8857 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8858 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8859 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8861 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8862 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8863 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8864 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8865 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8884 + components: + - type: Transform + pos: 17.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8885 + components: + - type: Transform + pos: 17.5,-37.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8886 + components: + - type: Transform + pos: 17.5,-38.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8887 + components: + - type: Transform + pos: 17.5,-39.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8888 + components: + - type: Transform + pos: 17.5,-41.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8889 + components: + - type: Transform + pos: 17.5,-42.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8890 + components: + - type: Transform + pos: 17.5,-43.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8891 + components: + - type: Transform + pos: 17.5,-44.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8892 + components: + - type: Transform + pos: 17.5,-45.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-46.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-45.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-46.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8921 + components: + - type: Transform + pos: -18.5,-45.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8922 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8923 + components: + - type: Transform + pos: -18.5,-43.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8924 + components: + - type: Transform + pos: -18.5,-42.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8925 + components: + - type: Transform + pos: -18.5,-41.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8926 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8927 + components: + - type: Transform + pos: -17.5,-43.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8928 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8929 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8930 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8931 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8932 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8933 + components: + - type: Transform + pos: -18.5,-39.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8934 + components: + - type: Transform + pos: -18.5,-38.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8935 + components: + - type: Transform + pos: -18.5,-37.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8936 + components: + - type: Transform + pos: -14.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8937 + components: + - type: Transform + pos: -14.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8938 + components: + - type: Transform + pos: -14.5,-29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8941 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8942 + components: + - type: Transform + pos: -14.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8943 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8944 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8945 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-36.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8978 + components: + - type: Transform + pos: -7.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9001 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9127 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-28.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeTJunction + entities: + - uid: 685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-9.5 + parent: 1668 + - uid: 687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-10.5 + parent: 1668 + - uid: 688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-12.5 + parent: 1668 + - uid: 689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-8.5 + parent: 1668 + - uid: 698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 1668 + - uid: 699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 1668 + - uid: 700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-9.5 + parent: 1668 + - uid: 1734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7498 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7505 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7531 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7551 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7563 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7620 + components: + - type: Transform + pos: -49.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7647 + components: + - type: Transform + pos: -34.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7745 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7776 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7810 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7835 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7859 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7871 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7875 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7886 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7912 + components: + - type: Transform + pos: -13.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7958 + components: + - type: Transform + pos: -14.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7984 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8268 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8302 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8305 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8317 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8339 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8387 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8424 + components: + - type: Transform + pos: 14.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8459 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8506 + components: + - type: Transform + pos: -9.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8507 + components: + - type: Transform + pos: -8.5,18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8561 + components: + - type: Transform + pos: 29.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8592 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,14.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8611 + components: + - type: Transform + pos: 12.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8670 + components: + - type: Transform + pos: -38.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8671 + components: + - type: Transform + pos: -40.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-1.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8675 + components: + - type: Transform + pos: -21.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8732 + components: + - type: Transform + pos: -23.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8748 + components: + - type: Transform + pos: -30.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-45.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8831 + components: + - type: Transform + pos: 15.5,-46.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-41.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-40.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8901 + components: + - type: Transform + pos: -16.5,-46.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-45.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-40.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-41.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8981 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9030 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9033 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-27.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPort + entities: + - uid: 791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-13.5 + parent: 1668 +- proto: GasPressurePump + entities: + - uid: 742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-12.5 + parent: 1668 + - uid: 3498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,19.5 + parent: 1668 + - uid: 3500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,25.5 + parent: 1668 +- proto: GasThermoMachineFreezer + entities: + - uid: 1175 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 1668 +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 683 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 1668 +- proto: GasVentPump + entities: + - uid: 7547 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8176 + components: + - type: Transform + pos: 6.5,30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8474 + components: + - type: Transform + pos: -17.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8502 + components: + - type: Transform + pos: -4.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8503 + components: + - type: Transform + pos: -10.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8508 + components: + - type: Transform + pos: 22.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8510 + components: + - type: Transform + pos: 30.5,26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8513 + components: + - type: Transform + pos: 34.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8550 + components: + - type: Transform + pos: 18.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8612 + components: + - type: Transform + pos: -50.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8613 + components: + - type: Transform + pos: -44.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-45.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-41.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8896 + components: + - type: Transform + pos: -10.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-45.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-40.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9053 + components: + - type: Transform + pos: -15.5,7.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9060 + components: + - type: Transform + pos: -22.5,9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9068 + components: + - type: Transform + pos: -33.5,9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentPumpFreezer + entities: + - uid: 8287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentScrubber + entities: + - uid: 7507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7634 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,17.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7749 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7953 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8068 + components: + - type: Transform + pos: 12.5,11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8166 + components: + - type: Transform + pos: 0.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8175 + components: + - type: Transform + pos: 0.5,30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,25.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8329 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8334 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8336 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8347 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8362 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 1668 + - uid: 8396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8422 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8428 + components: + - type: Transform + pos: -21.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8455 + components: + - type: Transform + pos: -33.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8456 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8475 + components: + - type: Transform + pos: -18.5,21.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8504 + components: + - type: Transform + pos: -6.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8505 + components: + - type: Transform + pos: -12.5,24.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8509 + components: + - type: Transform + pos: 30.5,20.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8511 + components: + - type: Transform + pos: 22.5,26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8512 + components: + - type: Transform + pos: 33.5,19.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,10.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8589 + components: + - type: Transform + pos: 27.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8590 + components: + - type: Transform + pos: 25.5,15.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8616 + components: + - type: Transform + pos: -48.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8617 + components: + - type: Transform + pos: -42.5,3.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8639 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8673 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-48.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8826 + components: + - type: Transform + pos: 9.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-46.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-40.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-46.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-41.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-47.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-35.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-34.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-32.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9036 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9037 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,5.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9059 + components: + - type: Transform + pos: -20.5,9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,4.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9069 + components: + - type: Transform + pos: -31.5,9.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-29.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9182 + components: + - type: Transform + pos: -0.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasVentScrubberFreezer + entities: + - uid: 8286 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 1668 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GatfruitSeeds + entities: + - uid: 1019 + components: + - type: Transform + pos: 8.767073,-23.281765 + parent: 1668 + - uid: 1020 + components: + - type: Transform + pos: 8.767073,-23.344265 + parent: 1668 + - uid: 1021 + components: + - type: Transform + pos: 8.767073,-23.406765 + parent: 1668 + - uid: 1022 + components: + - type: Transform + pos: 8.767073,-23.469265 + parent: 1668 +- proto: GoldenPlunger + entities: + - uid: 2802 + components: + - type: Transform + pos: -18.79799,16.06264 + parent: 1668 +- proto: GravityGenerator + entities: + - uid: 3285 + components: + - type: Transform + pos: -5.5,26.5 + parent: 1668 +- proto: GrenadeFlashBang + entities: + - uid: 2615 + components: + - type: Transform + pos: 14.708689,30.81574 + parent: 1668 + - uid: 2616 + components: + - type: Transform + pos: 14.708689,30.81574 + parent: 1668 + - uid: 2617 + components: + - type: Transform + pos: 14.708689,30.81574 + parent: 1668 + - uid: 2618 + components: + - type: Transform + pos: 14.708689,30.81574 + parent: 1668 +- proto: GrenadeIncendiary + entities: + - uid: 2601 + components: + - type: Transform + pos: 14.906606,30.826159 + parent: 1668 + - uid: 2602 + components: + - type: Transform + pos: 14.906606,30.826159 + parent: 1668 + - uid: 2603 + components: + - type: Transform + pos: 14.906606,30.826159 + parent: 1668 + - uid: 2604 + components: + - type: Transform + pos: 14.906606,30.826159 + parent: 1668 +- proto: GrenadeShrapnel + entities: + - uid: 2141 + components: + - type: Transform + pos: 14.292023,30.40949 + parent: 1668 + - uid: 2415 + components: + - type: Transform + pos: 14.292023,30.40949 + parent: 1668 + - uid: 2416 + components: + - type: Transform + pos: 14.292023,30.40949 + parent: 1668 + - uid: 2417 + components: + - type: Transform + pos: 14.292023,30.40949 + parent: 1668 +- proto: GrenadeStinger + entities: + - uid: 3019 + components: + - type: Transform + pos: 14.687856,30.37824 + parent: 1668 + - uid: 3166 + components: + - type: Transform + pos: 14.687856,30.37824 + parent: 1668 + - uid: 3167 + components: + - type: Transform + pos: 14.687856,30.37824 + parent: 1668 + - uid: 3168 + components: + - type: Transform + pos: 14.687856,30.37824 + parent: 1668 +- proto: Grille + entities: + - uid: 31 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1668 + - uid: 33 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1668 + - uid: 34 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1668 + - uid: 35 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1668 + - uid: 36 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1668 + - uid: 37 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1668 + - uid: 38 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1668 + - uid: 39 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1668 + - uid: 40 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1668 + - uid: 41 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1668 + - uid: 42 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1668 + - uid: 43 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1668 + - uid: 44 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1668 + - uid: 45 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1668 + - uid: 46 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1668 + - uid: 47 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1668 + - uid: 93 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 1668 + - uid: 132 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1668 + - uid: 133 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1668 + - uid: 144 + components: + - type: Transform + pos: 28.5,7.5 + parent: 1668 + - uid: 154 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 1668 + - uid: 155 + components: + - type: Transform + pos: 14.5,2.5 + parent: 1668 + - uid: 158 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 1668 + - uid: 159 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1668 + - uid: 161 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1668 + - uid: 165 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1668 + - uid: 166 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1668 + - uid: 167 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1668 + - uid: 173 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1668 + - uid: 178 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1668 + - uid: 182 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1668 + - uid: 183 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1668 + - uid: 185 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1668 + - uid: 186 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1668 + - uid: 188 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 1668 + - uid: 194 + components: + - type: Transform + pos: 24.5,7.5 + parent: 1668 + - uid: 365 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 1668 + - uid: 381 + components: + - type: Transform + pos: 4.5,22.5 + parent: 1668 + - uid: 405 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 1668 + - uid: 407 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 1668 + - uid: 458 + components: + - type: Transform + pos: 31.5,6.5 + parent: 1668 + - uid: 461 + components: + - type: Transform + pos: 21.5,6.5 + parent: 1668 + - uid: 474 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 1668 + - uid: 475 + components: + - type: Transform + pos: 18.5,1.5 + parent: 1668 + - uid: 476 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1668 + - uid: 477 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1668 + - uid: 549 + components: + - type: Transform + pos: 16.5,2.5 + parent: 1668 + - uid: 593 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1668 + - uid: 600 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 1668 + - uid: 715 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 1668 + - uid: 725 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 1668 + - uid: 726 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 1668 + - uid: 727 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 1668 + - uid: 911 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 1668 + - uid: 912 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 1668 + - uid: 913 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 1668 + - uid: 914 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 1668 + - uid: 915 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 1668 + - uid: 916 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 1668 + - uid: 917 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 1668 + - uid: 918 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 1668 + - uid: 919 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 1668 + - uid: 920 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 1668 + - uid: 1102 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 1668 + - uid: 1121 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 1668 + - uid: 1135 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 1668 + - uid: 1157 + components: + - type: Transform + pos: 35.5,-20.5 + parent: 1668 + - uid: 1158 + components: + - type: Transform + pos: 35.5,-22.5 + parent: 1668 + - uid: 1202 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 1668 + - uid: 1204 + components: + - type: Transform + pos: 32.5,-28.5 + parent: 1668 + - uid: 1209 + components: + - type: Transform + pos: 33.5,-28.5 + parent: 1668 + - uid: 1347 + components: + - type: Transform + pos: 35.5,-16.5 + parent: 1668 + - uid: 1348 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 1668 + - uid: 1349 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 1668 + - uid: 1350 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 1668 + - uid: 1351 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 1668 + - uid: 1525 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1668 + - uid: 1527 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1668 + - uid: 1528 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1668 + - uid: 1529 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1668 + - uid: 1530 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1668 + - uid: 1531 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1668 + - uid: 1534 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1668 + - uid: 1535 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1668 + - uid: 1536 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1668 + - uid: 1542 + components: + - type: Transform + pos: 20.5,13.5 + parent: 1668 + - uid: 1544 + components: + - type: Transform + pos: 22.5,13.5 + parent: 1668 + - uid: 1545 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1668 + - uid: 1549 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1668 + - uid: 1551 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1668 + - uid: 1552 + components: + - type: Transform + pos: 2.5,11.5 + parent: 1668 + - uid: 1553 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1668 + - uid: 1564 + components: + - type: Transform + pos: 23.5,9.5 + parent: 1668 + - uid: 1565 + components: + - type: Transform + pos: 22.5,9.5 + parent: 1668 + - uid: 1566 + components: + - type: Transform + pos: 21.5,9.5 + parent: 1668 + - uid: 1567 + components: + - type: Transform + pos: 20.5,9.5 + parent: 1668 + - uid: 1568 + components: + - type: Transform + pos: 19.5,9.5 + parent: 1668 + - uid: 1569 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1668 + - uid: 1570 + components: + - type: Transform + pos: 18.5,11.5 + parent: 1668 + - uid: 1571 + components: + - type: Transform + pos: 8.5,11.5 + parent: 1668 + - uid: 1612 + components: + - type: Transform + pos: 17.5,13.5 + parent: 1668 + - uid: 1613 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1668 + - uid: 1614 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1668 + - uid: 1615 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1668 + - uid: 1879 + components: + - type: Transform + pos: -22.5,31.5 + parent: 1668 + - uid: 1901 + components: + - type: Transform + pos: -20.5,31.5 + parent: 1668 + - uid: 1921 + components: + - type: Transform + pos: 32.5,23.5 + parent: 1668 + - uid: 1922 + components: + - type: Transform + pos: 30.5,23.5 + parent: 1668 + - uid: 1927 + components: + - type: Transform + pos: 32.5,19.5 + parent: 1668 + - uid: 1928 + components: + - type: Transform + pos: 33.5,17.5 + parent: 1668 + - uid: 1953 + components: + - type: Transform + pos: 22.5,23.5 + parent: 1668 + - uid: 1978 + components: + - type: Transform + pos: -19.5,29.5 + parent: 1668 + - uid: 2062 + components: + - type: Transform + pos: 30.5,13.5 + parent: 1668 + - uid: 2067 + components: + - type: Transform + pos: 35.5,10.5 + parent: 1668 + - uid: 2068 + components: + - type: Transform + pos: 35.5,11.5 + parent: 1668 + - uid: 2069 + components: + - type: Transform + pos: 35.5,12.5 + parent: 1668 + - uid: 2144 + components: + - type: Transform + pos: 15.5,21.5 + parent: 1668 + - uid: 2149 + components: + - type: Transform + pos: 10.5,21.5 + parent: 1668 + - uid: 2154 + components: + - type: Transform + pos: 11.5,21.5 + parent: 1668 + - uid: 2156 + components: + - type: Transform + pos: 16.5,21.5 + parent: 1668 + - uid: 2159 + components: + - type: Transform + pos: 15.5,17.5 + parent: 1668 + - uid: 2164 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1668 + - uid: 2165 + components: + - type: Transform + pos: 10.5,17.5 + parent: 1668 + - uid: 2166 + components: + - type: Transform + pos: 16.5,17.5 + parent: 1668 + - uid: 2172 + components: + - type: Transform + pos: 20.5,32.5 + parent: 1668 + - uid: 2213 + components: + - type: Transform + pos: 16.5,29.5 + parent: 1668 + - uid: 2214 + components: + - type: Transform + pos: 15.5,29.5 + parent: 1668 + - uid: 2215 + components: + - type: Transform + pos: 14.5,29.5 + parent: 1668 + - uid: 2216 + components: + - type: Transform + pos: 12.5,29.5 + parent: 1668 + - uid: 2217 + components: + - type: Transform + pos: 11.5,29.5 + parent: 1668 + - uid: 2218 + components: + - type: Transform + pos: 10.5,29.5 + parent: 1668 + - uid: 2306 + components: + - type: Transform + pos: 6.5,-36.5 + parent: 1668 + - uid: 2307 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 1668 + - uid: 2308 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 1668 + - uid: 2309 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 1668 + - uid: 2310 + components: + - type: Transform + pos: 1.5,-36.5 + parent: 1668 + - uid: 2311 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 1668 + - uid: 2312 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 1668 + - uid: 2313 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 1668 + - uid: 2324 + components: + - type: Transform + pos: 5.5,-36.5 + parent: 1668 + - uid: 2325 + components: + - type: Transform + pos: -2.5,-36.5 + parent: 1668 + - uid: 2326 + components: + - type: Transform + pos: -3.5,-36.5 + parent: 1668 + - uid: 2327 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 1668 + - uid: 2328 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 1668 + - uid: 2329 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 1668 + - uid: 2342 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 1668 + - uid: 2344 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 1668 + - uid: 2345 + components: + - type: Transform + pos: -4.5,-31.5 + parent: 1668 + - uid: 2346 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 1668 + - uid: 2347 + components: + - type: Transform + pos: -4.5,-29.5 + parent: 1668 + - uid: 2348 + components: + - type: Transform + pos: -2.5,-31.5 + parent: 1668 + - uid: 2349 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 1668 + - uid: 2532 + components: + - type: Transform + pos: 19.5,31.5 + parent: 1668 + - uid: 2537 + components: + - type: Transform + pos: 18.5,32.5 + parent: 1668 + - uid: 2553 + components: + - type: Transform + pos: 19.5,33.5 + parent: 1668 + - uid: 2554 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1668 + - uid: 2555 + components: + - type: Transform + pos: 33.5,9.5 + parent: 1668 + - uid: 2556 + components: + - type: Transform + pos: 30.5,9.5 + parent: 1668 + - uid: 2557 + components: + - type: Transform + pos: 31.5,9.5 + parent: 1668 + - uid: 2558 + components: + - type: Transform + pos: 32.5,9.5 + parent: 1668 + - uid: 2633 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 1668 + - uid: 2649 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 1668 + - uid: 2650 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1668 + - uid: 2651 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 1668 + - uid: 2652 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 1668 + - uid: 2660 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1668 + - uid: 2661 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1668 + - uid: 2662 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1668 + - uid: 2664 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1668 + - uid: 2665 + components: + - type: Transform + pos: -14.5,2.5 + parent: 1668 + - uid: 2666 + components: + - type: Transform + pos: -15.5,2.5 + parent: 1668 + - uid: 2696 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 1668 + - uid: 2730 + components: + - type: Transform + pos: -20.5,8.5 + parent: 1668 + - uid: 2784 + components: + - type: Transform + pos: -24.5,9.5 + parent: 1668 + - uid: 2785 + components: + - type: Transform + pos: -24.5,10.5 + parent: 1668 + - uid: 2786 + components: + - type: Transform + pos: -24.5,12.5 + parent: 1668 + - uid: 2787 + components: + - type: Transform + pos: -24.5,13.5 + parent: 1668 + - uid: 2795 + components: + - type: Transform + pos: -19.5,15.5 + parent: 1668 + - uid: 2796 + components: + - type: Transform + pos: -19.5,16.5 + parent: 1668 + - uid: 2832 + components: + - type: Transform + pos: -22.5,8.5 + parent: 1668 + - uid: 2990 + components: + - type: Transform + pos: -19.5,30.5 + parent: 1668 + - uid: 2991 + components: + - type: Transform + pos: -21.5,31.5 + parent: 1668 + - uid: 2994 + components: + - type: Transform + pos: -23.5,31.5 + parent: 1668 + - uid: 2996 + components: + - type: Transform + pos: -19.5,31.5 + parent: 1668 + - uid: 3032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,13.5 + parent: 1668 + - uid: 3033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,13.5 + parent: 1668 + - uid: 3039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,17.5 + parent: 1668 + - uid: 3040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,17.5 + parent: 1668 + - uid: 3181 + components: + - type: Transform + pos: -6.5,17.5 + parent: 1668 + - uid: 3294 + components: + - type: Transform + pos: -4.5,23.5 + parent: 1668 + - uid: 3298 + components: + - type: Transform + pos: -10.5,23.5 + parent: 1668 + - uid: 3300 + components: + - type: Transform + pos: -6.5,23.5 + parent: 1668 + - uid: 3356 + components: + - type: Transform + pos: -12.5,23.5 + parent: 1668 + - uid: 3379 + components: + - type: Transform + pos: -25.5,8.5 + parent: 1668 + - uid: 3381 + components: + - type: Transform + pos: -26.5,8.5 + parent: 1668 + - uid: 3383 + components: + - type: Transform + pos: -27.5,8.5 + parent: 1668 + - uid: 3401 + components: + - type: Transform + pos: -26.5,27.5 + parent: 1668 + - uid: 3403 + components: + - type: Transform + pos: -28.5,26.5 + parent: 1668 + - uid: 3406 + components: + - type: Transform + pos: -25.5,28.5 + parent: 1668 + - uid: 3409 + components: + - type: Transform + pos: -24.5,28.5 + parent: 1668 + - uid: 3411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,2.5 + parent: 1668 + - uid: 3412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,2.5 + parent: 1668 + - uid: 3413 + components: + - type: Transform + pos: -28.5,19.5 + parent: 1668 + - uid: 3414 + components: + - type: Transform + pos: -28.5,8.5 + parent: 1668 + - uid: 3416 + components: + - type: Transform + pos: -28.5,25.5 + parent: 1668 + - uid: 3417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,2.5 + parent: 1668 + - uid: 3418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,2.5 + parent: 1668 + - uid: 3419 + components: + - type: Transform + pos: -28.5,27.5 + parent: 1668 + - uid: 3426 + components: + - type: Transform + pos: -24.5,18.5 + parent: 1668 + - uid: 3427 + components: + - type: Transform + pos: -25.5,18.5 + parent: 1668 + - uid: 3428 + components: + - type: Transform + pos: -28.5,20.5 + parent: 1668 + - uid: 3429 + components: + - type: Transform + pos: -23.5,18.5 + parent: 1668 + - uid: 3433 + components: + - type: Transform + pos: -26.5,25.5 + parent: 1668 + - uid: 3435 + components: + - type: Transform + pos: -26.5,22.5 + parent: 1668 + - uid: 3438 + components: + - type: Transform + pos: -26.5,20.5 + parent: 1668 + - uid: 3459 + components: + - type: Transform + pos: -26.5,26.5 + parent: 1668 + - uid: 3460 + components: + - type: Transform + pos: -26.5,23.5 + parent: 1668 + - uid: 3464 + components: + - type: Transform + pos: -26.5,21.5 + parent: 1668 + - uid: 3466 + components: + - type: Transform + pos: -28.5,21.5 + parent: 1668 + - uid: 3472 + components: + - type: Transform + pos: -26.5,19.5 + parent: 1668 + - uid: 3473 + components: + - type: Transform + pos: -26.5,24.5 + parent: 1668 + - uid: 3630 + components: + - type: Transform + pos: 7.5,36.5 + parent: 1668 + - uid: 3631 + components: + - type: Transform + pos: 6.5,36.5 + parent: 1668 + - uid: 3632 + components: + - type: Transform + pos: 7.5,33.5 + parent: 1668 + - uid: 3633 + components: + - type: Transform + pos: 6.5,33.5 + parent: 1668 + - uid: 3634 + components: + - type: Transform + pos: 0.5,33.5 + parent: 1668 + - uid: 3635 + components: + - type: Transform + pos: -0.5,33.5 + parent: 1668 + - uid: 3636 + components: + - type: Transform + pos: 0.5,36.5 + parent: 1668 + - uid: 3637 + components: + - type: Transform + pos: -0.5,36.5 + parent: 1668 + - uid: 3639 + components: + - type: Transform + pos: 3.5,34.5 + parent: 1668 + - uid: 3640 + components: + - type: Transform + pos: 3.5,35.5 + parent: 1668 + - uid: 3728 + components: + - type: Transform + pos: -0.5,22.5 + parent: 1668 + - uid: 3732 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1668 + - uid: 3733 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 1668 + - uid: 3887 + components: + - type: Transform + pos: -3.5,30.5 + parent: 1668 + - uid: 3888 + components: + - type: Transform + pos: -2.5,33.5 + parent: 1668 + - uid: 3889 + components: + - type: Transform + pos: -3.5,36.5 + parent: 1668 + - uid: 4103 + components: + - type: Transform + pos: -24.5,30.5 + parent: 1668 + - uid: 4105 + components: + - type: Transform + pos: -24.5,29.5 + parent: 1668 + - uid: 4107 + components: + - type: Transform + pos: -24.5,31.5 + parent: 1668 + - uid: 4151 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 1668 + - uid: 4192 + components: + - type: Transform + pos: -2.5,-29.5 + parent: 1668 + - uid: 4193 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 1668 + - uid: 4194 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 1668 + - uid: 4195 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 1668 + - uid: 4196 + components: + - type: Transform + pos: 3.5,-31.5 + parent: 1668 + - uid: 4197 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 1668 + - uid: 4198 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 1668 + - uid: 4199 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 1668 + - uid: 4200 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 1668 + - uid: 4201 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 1668 + - uid: 4202 + components: + - type: Transform + pos: -6.5,-31.5 + parent: 1668 + - uid: 4203 + components: + - type: Transform + pos: -6.5,-30.5 + parent: 1668 + - uid: 4204 + components: + - type: Transform + pos: -6.5,-29.5 + parent: 1668 + - uid: 4308 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 1668 + - uid: 4309 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 1668 + - uid: 4319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,13.5 + parent: 1668 + - uid: 4320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,13.5 + parent: 1668 + - uid: 4406 + components: + - type: Transform + pos: 6.5,-45.5 + parent: 1668 + - uid: 4407 + components: + - type: Transform + pos: 5.5,-45.5 + parent: 1668 + - uid: 4408 + components: + - type: Transform + pos: 4.5,-45.5 + parent: 1668 + - uid: 4409 + components: + - type: Transform + pos: 3.5,-45.5 + parent: 1668 + - uid: 4410 + components: + - type: Transform + pos: 2.5,-45.5 + parent: 1668 + - uid: 4411 + components: + - type: Transform + pos: 1.5,-45.5 + parent: 1668 + - uid: 4412 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 1668 + - uid: 4413 + components: + - type: Transform + pos: -1.5,-45.5 + parent: 1668 + - uid: 4414 + components: + - type: Transform + pos: -2.5,-45.5 + parent: 1668 + - uid: 4415 + components: + - type: Transform + pos: -3.5,-45.5 + parent: 1668 + - uid: 4416 + components: + - type: Transform + pos: -4.5,-45.5 + parent: 1668 + - uid: 4417 + components: + - type: Transform + pos: -5.5,-45.5 + parent: 1668 + - uid: 4418 + components: + - type: Transform + pos: -6.5,-45.5 + parent: 1668 + - uid: 4419 + components: + - type: Transform + pos: -7.5,-45.5 + parent: 1668 + - uid: 4420 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 1668 + - uid: 4421 + components: + - type: Transform + pos: -5.5,-50.5 + parent: 1668 + - uid: 4422 + components: + - type: Transform + pos: -4.5,-50.5 + parent: 1668 + - uid: 4423 + components: + - type: Transform + pos: -2.5,-50.5 + parent: 1668 + - uid: 4424 + components: + - type: Transform + pos: -1.5,-50.5 + parent: 1668 + - uid: 4425 + components: + - type: Transform + pos: 0.5,-50.5 + parent: 1668 + - uid: 4426 + components: + - type: Transform + pos: 1.5,-50.5 + parent: 1668 + - uid: 4427 + components: + - type: Transform + pos: 4.5,-50.5 + parent: 1668 + - uid: 4428 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 1668 + - uid: 4587 + components: + - type: Transform + pos: -10.5,-49.5 + parent: 1668 + - uid: 4588 + components: + - type: Transform + pos: -11.5,-49.5 + parent: 1668 + - uid: 4589 + components: + - type: Transform + pos: -12.5,-49.5 + parent: 1668 + - uid: 4590 + components: + - type: Transform + pos: 9.5,-49.5 + parent: 1668 + - uid: 4591 + components: + - type: Transform + pos: 10.5,-49.5 + parent: 1668 + - uid: 4592 + components: + - type: Transform + pos: 11.5,-49.5 + parent: 1668 + - uid: 4593 + components: + - type: Transform + pos: 18.5,-46.5 + parent: 1668 + - uid: 4594 + components: + - type: Transform + pos: 18.5,-45.5 + parent: 1668 + - uid: 4595 + components: + - type: Transform + pos: 19.5,-44.5 + parent: 1668 + - uid: 4596 + components: + - type: Transform + pos: 19.5,-42.5 + parent: 1668 + - uid: 4597 + components: + - type: Transform + pos: 18.5,-41.5 + parent: 1668 + - uid: 4598 + components: + - type: Transform + pos: 18.5,-40.5 + parent: 1668 + - uid: 4599 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 1668 + - uid: 4600 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 1668 + - uid: 4601 + components: + - type: Transform + pos: 18.5,-36.5 + parent: 1668 + - uid: 4602 + components: + - type: Transform + pos: 18.5,-35.5 + parent: 1668 + - uid: 4603 + components: + - type: Transform + pos: -19.5,-46.5 + parent: 1668 + - uid: 4604 + components: + - type: Transform + pos: -19.5,-45.5 + parent: 1668 + - uid: 4605 + components: + - type: Transform + pos: -20.5,-44.5 + parent: 1668 + - uid: 4606 + components: + - type: Transform + pos: -20.5,-42.5 + parent: 1668 + - uid: 4607 + components: + - type: Transform + pos: -19.5,-41.5 + parent: 1668 + - uid: 4608 + components: + - type: Transform + pos: -19.5,-40.5 + parent: 1668 + - uid: 4609 + components: + - type: Transform + pos: -20.5,-39.5 + parent: 1668 + - uid: 4610 + components: + - type: Transform + pos: -20.5,-37.5 + parent: 1668 + - uid: 4611 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 1668 + - uid: 4612 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 1668 + - uid: 4679 + components: + - type: Transform + pos: -14.5,-43.5 + parent: 1668 + - uid: 4681 + components: + - type: Transform + pos: -14.5,-42.5 + parent: 1668 + - uid: 4704 + components: + - type: Transform + pos: -14.5,-41.5 + parent: 1668 + - uid: 4705 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 1668 + - uid: 4718 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 1668 + - uid: 4719 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 1668 + - uid: 4720 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 1668 + - uid: 4722 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 1668 + - uid: 4731 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 1668 + - uid: 4732 + components: + - type: Transform + pos: 13.5,-40.5 + parent: 1668 + - uid: 4733 + components: + - type: Transform + pos: 13.5,-39.5 + parent: 1668 + - uid: 4734 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 1668 + - uid: 5079 + components: + - type: Transform + pos: 20.5,6.5 + parent: 1668 + - uid: 5562 + components: + - type: Transform + pos: -4.5,-24.5 + parent: 1668 + - uid: 5563 + components: + - type: Transform + pos: -6.5,-24.5 + parent: 1668 + - uid: 5564 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 1668 + - uid: 5565 + components: + - type: Transform + pos: -10.5,-24.5 + parent: 1668 + - uid: 5566 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 1668 + - uid: 5567 + components: + - type: Transform + pos: -14.5,-24.5 + parent: 1668 + - uid: 5568 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 1668 + - uid: 5569 + components: + - type: Transform + pos: -18.5,-24.5 + parent: 1668 + - uid: 5629 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 1668 + - uid: 5630 + components: + - type: Transform + pos: -22.5,-28.5 + parent: 1668 + - uid: 5631 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 1668 + - uid: 5632 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 1668 + - uid: 5633 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 1668 + - uid: 5634 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 1668 + - uid: 5635 + components: + - type: Transform + pos: -22.5,-24.5 + parent: 1668 + - uid: 5636 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 1668 + - uid: 5919 + components: + - type: Transform + pos: -24.5,4.5 + parent: 1668 + - uid: 5920 + components: + - type: Transform + pos: -24.5,7.5 + parent: 1668 + - uid: 5921 + components: + - type: Transform + pos: -29.5,7.5 + parent: 1668 + - uid: 5922 + components: + - type: Transform + pos: -29.5,4.5 + parent: 1668 + - uid: 6056 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 1668 + - uid: 6057 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 1668 + - uid: 6058 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 1668 + - uid: 6059 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 1668 + - uid: 6060 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 1668 + - uid: 6062 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 1668 + - uid: 6063 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 1668 + - uid: 6064 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 1668 + - uid: 6104 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 1668 + - uid: 6105 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 1668 + - uid: 6106 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 1668 + - uid: 6107 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 1668 + - uid: 6108 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 1668 + - uid: 6109 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 1668 + - uid: 6153 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 1668 + - uid: 6171 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 1668 + - uid: 6601 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 1668 + - uid: 6635 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 1668 + - uid: 6636 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 1668 + - uid: 6637 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 1668 + - uid: 6638 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 1668 + - uid: 6639 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 1668 + - uid: 6640 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 1668 + - uid: 6641 + components: + - type: Transform + pos: -37.5,-15.5 + parent: 1668 + - uid: 6642 + components: + - type: Transform + pos: -38.5,-15.5 + parent: 1668 + - uid: 6937 + components: + - type: Transform + pos: -29.5,9.5 + parent: 1668 + - uid: 6938 + components: + - type: Transform + pos: -29.5,10.5 + parent: 1668 + - uid: 6939 + components: + - type: Transform + pos: -29.5,12.5 + parent: 1668 + - uid: 6940 + components: + - type: Transform + pos: -29.5,13.5 + parent: 1668 + - uid: 6944 + components: + - type: Transform + pos: -31.5,8.5 + parent: 1668 + - uid: 6953 + components: + - type: Transform + pos: -50.5,2.5 + parent: 1668 + - uid: 6955 + components: + - type: Transform + pos: -48.5,2.5 + parent: 1668 + - uid: 6986 + components: + - type: Transform + pos: 22.5,6.5 + parent: 1668 + - uid: 6992 + components: + - type: Transform + pos: 30.5,6.5 + parent: 1668 + - uid: 6993 + components: + - type: Transform + pos: 32.5,6.5 + parent: 1668 + - uid: 7153 + components: + - type: Transform + pos: -55.5,-2.5 + parent: 1668 + - uid: 7162 + components: + - type: Transform + pos: -52.5,-2.5 + parent: 1668 + - uid: 7163 + components: + - type: Transform + pos: -52.5,1.5 + parent: 1668 + - uid: 7164 + components: + - type: Transform + pos: -55.5,1.5 + parent: 1668 + - uid: 7237 + components: + - type: Transform + pos: -44.5,2.5 + parent: 1668 + - uid: 7238 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 1668 + - uid: 7240 + components: + - type: Transform + pos: -42.5,2.5 + parent: 1668 + - uid: 7258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,7.5 + parent: 1668 + - uid: 7259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,7.5 + parent: 1668 + - uid: 7260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,7.5 + parent: 1668 + - uid: 7261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,7.5 + parent: 1668 + - uid: 7262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,7.5 + parent: 1668 + - uid: 7263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,7.5 + parent: 1668 + - uid: 7264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-8.5 + parent: 1668 + - uid: 7265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-8.5 + parent: 1668 + - uid: 7266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-8.5 + parent: 1668 + - uid: 7267 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 1668 + - uid: 7330 + components: + - type: Transform + pos: -33.5,8.5 + parent: 1668 + - uid: 7362 + components: + - type: Transform + pos: -40.5,-28.5 + parent: 1668 + - uid: 7367 + components: + - type: Transform + pos: -40.5,-27.5 + parent: 1668 + - uid: 7368 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 1668 + - uid: 7369 + components: + - type: Transform + pos: -42.5,-27.5 + parent: 1668 + - uid: 7370 + components: + - type: Transform + pos: -40.5,-24.5 + parent: 1668 + - uid: 7371 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 1668 + - uid: 7372 + components: + - type: Transform + pos: -41.5,-25.5 + parent: 1668 + - uid: 7373 + components: + - type: Transform + pos: -42.5,-25.5 + parent: 1668 + - uid: 7428 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 1668 + - uid: 7429 + components: + - type: Transform + pos: -30.5,-24.5 + parent: 1668 + - uid: 7430 + components: + - type: Transform + pos: -32.5,-24.5 + parent: 1668 + - uid: 7431 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 1668 + - uid: 7432 + components: + - type: Transform + pos: -36.5,-24.5 + parent: 1668 + - uid: 7433 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 1668 + - uid: 7434 + components: + - type: Transform + pos: -38.5,-28.5 + parent: 1668 + - uid: 7435 + components: + - type: Transform + pos: -36.5,-28.5 + parent: 1668 + - uid: 7437 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 1668 + - uid: 7438 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 1668 + - uid: 7439 + components: + - type: Transform + pos: -30.5,-28.5 + parent: 1668 + - uid: 7440 + components: + - type: Transform + pos: -28.5,-28.5 + parent: 1668 + - uid: 9112 + components: + - type: Transform + pos: 21.5,-34.5 + parent: 1668 + - uid: 9113 + components: + - type: Transform + pos: 22.5,-34.5 + parent: 1668 + - uid: 9114 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 1668 + - uid: 9115 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 1668 + - uid: 9116 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 1668 + - uid: 9117 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 1668 + - uid: 9118 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 1668 + - uid: 9119 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 1668 + - uid: 9121 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 1668 +- proto: GrilleDiagonal + entities: + - uid: 374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,31.5 + parent: 1668 + - uid: 1736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,33.5 + parent: 1668 + - uid: 2136 + components: + - type: Transform + pos: 18.5,33.5 + parent: 1668 + - uid: 2138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,31.5 + parent: 1668 +- proto: GunpetInstrument + entities: + - uid: 6085 + components: + - type: Transform + pos: -7.306678,-17.20607 + parent: 1668 +- proto: GunSafeDisabler + entities: + - uid: 2219 + components: + - type: Transform + pos: 16.5,18.5 + parent: 1668 + - uid: 9183 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 1668 +- proto: GunSafePistolMk58 + entities: + - uid: 2235 + components: + - type: Transform + pos: 15.5,18.5 + parent: 1668 +- proto: GunSafeRifleLecter + entities: + - uid: 2386 + components: + - type: Transform + pos: 12.5,24.5 + parent: 1668 + - uid: 9191 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 1668 +- proto: GunSafeShotgunEnforcer + entities: + - uid: 2388 + components: + - type: Transform + pos: 14.5,22.5 + parent: 1668 +- proto: GunSafeShotgunKammerer + entities: + - uid: 2389 + components: + - type: Transform + pos: 14.5,24.5 + parent: 1668 + - uid: 9208 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 1668 +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 2387 + components: + - type: Transform + pos: 12.5,22.5 + parent: 1668 +- proto: Handcuffs + entities: + - uid: 4046 + components: + - type: Transform + pos: -22.524752,13.470394 + parent: 1668 +- proto: HandheldCrewMonitor + entities: + - uid: 904 + components: + - type: Transform + pos: 14.5227165,-4.391676 + parent: 1668 +- proto: HandheldHealthAnalyzer + entities: + - uid: 796 + components: + - type: Transform + pos: 23.504726,-8.512103 + parent: 1668 + - uid: 798 + components: + - type: Transform + pos: 17.739101,-13.277728 + parent: 1668 +- proto: HandheldStationMap + entities: + - uid: 6766 + components: + - type: Transform + pos: -42.48301,-4.457982 + parent: 1668 +- proto: HighSecArmoryLocked + entities: + - uid: 2146 + components: + - type: Transform + pos: 13.5,21.5 + parent: 1668 +- proto: HighSecCentralCommandLocked + entities: + - uid: 2212 + components: + - type: Transform + pos: 13.5,29.5 + parent: 1668 + - type: Godmode + oldDamage: {} + - uid: 5998 + components: + - type: Transform + pos: -14.5,6.5 + parent: 1668 +- proto: HighSecCommandLocked + entities: + - uid: 94 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1668 + - uid: 328 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1668 +- proto: HolofanProjector + entities: + - uid: 4088 + components: + - type: Transform + pos: -18.530924,26.575684 + parent: 1668 +- proto: HolopadBluespace + entities: + - uid: 496 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1668 +- proto: HoloprojectorSecurity + entities: + - uid: 6822 + components: + - type: Transform + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6840 + components: + - type: Transform + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: HydroponicsToolHatchet + entities: + - uid: 1042 + components: + - type: Transform + pos: 5.448747,-21.426985 + parent: 1668 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 1041 + components: + - type: Transform + pos: 8.448748,-21.489485 + parent: 1668 +- proto: HydroponicsToolScythe + entities: + - uid: 1039 + components: + - type: Transform + pos: 5.526872,-21.50511 + parent: 1668 +- proto: HydroponicsToolSpade + entities: + - uid: 1040 + components: + - type: Transform + pos: 8.511248,-21.41136 + parent: 1668 +- proto: hydroponicsTray + entities: + - uid: 983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-16.5 + parent: 1668 + - uid: 984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-15.5 + parent: 1668 + - uid: 985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-14.5 + parent: 1668 + - uid: 986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-22.5 + parent: 1668 + - uid: 987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-21.5 + parent: 1668 + - uid: 988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-20.5 + parent: 1668 + - uid: 989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-14.5 + parent: 1668 + - uid: 990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-15.5 + parent: 1668 + - uid: 991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-16.5 + parent: 1668 + - uid: 992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-22.5 + parent: 1668 + - uid: 993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-21.5 + parent: 1668 + - uid: 994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-20.5 + parent: 1668 + - uid: 1005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-15.5 + parent: 1668 + - uid: 1006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-14.5 + parent: 1668 + - uid: 1007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-15.5 + parent: 1668 + - uid: 1008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-14.5 + parent: 1668 +- proto: Hypospray + entities: + - uid: 799 + components: + - type: Transform + pos: 18.629726,-13.340228 + parent: 1668 + - uid: 6858 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6869 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ImplanterAdmeme + entities: + - uid: 910 + components: + - type: Transform + pos: 11.548839,-10.335743 + parent: 1668 +- proto: IngotGold + entities: + - uid: 3354 + components: + - type: Transform + pos: -3.5,18.5 + parent: 1668 + - uid: 3355 + components: + - type: Transform + pos: -3.5,18.5 + parent: 1668 +- proto: Intellicard + entities: + - uid: 937 + components: + - type: Transform + pos: -3.3831449,-0.61700773 + parent: 1668 +- proto: KillerTomatoSeeds + entities: + - uid: 1015 + components: + - type: Transform + pos: 8.239295,-23.358154 + parent: 1668 + - uid: 1016 + components: + - type: Transform + pos: 8.239295,-23.295654 + parent: 1668 + - uid: 1017 + components: + - type: Transform + pos: 8.239295,-23.420654 + parent: 1668 + - uid: 1018 + components: + - type: Transform + pos: 8.239295,-23.483154 + parent: 1668 +- proto: KitchenElectricGrill + entities: + - uid: 1174 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 1668 + - uid: 1179 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 1668 + - uid: 5505 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 1668 + - uid: 5506 + components: + - type: Transform + pos: -11.5,-32.5 + parent: 1668 +- proto: KitchenMicrowave + entities: + - uid: 1169 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 1668 + - uid: 5473 + components: + - type: Transform + pos: -11.5,-36.5 + parent: 1668 + - uid: 5503 + components: + - type: Transform + pos: -10.5,-36.5 + parent: 1668 +- proto: KitchenReagentGrinder + entities: + - uid: 672 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1668 + - uid: 1166 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 1668 + - uid: 1168 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 1668 + - uid: 1290 + components: + - type: Transform + pos: 34.5,-20.5 + parent: 1668 + - uid: 5504 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 1668 + - uid: 5507 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 1668 +- proto: KitchenSpike + entities: + - uid: 1184 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 1668 +- proto: Lamp + entities: + - uid: 527 + components: + - type: Transform + pos: -1.4329706,1.8655163 + parent: 1668 + - uid: 2081 + components: + - type: Transform + pos: 31.448816,12.768794 + parent: 1668 + - uid: 2811 + components: + - type: Transform + pos: -17.469866,13.826667 + parent: 1668 + - uid: 2942 + components: + - type: Transform + pos: -18.430601,7.791217 + parent: 1668 +- proto: LampBanana + entities: + - uid: 6118 + components: + - type: Transform + pos: -13.363054,-16.750496 + parent: 1668 +- proto: LampGold + entities: + - uid: 2819 + components: + - type: Transform + pos: -13.453783,13.873542 + parent: 1668 + - uid: 7296 + components: + - type: Transform + pos: -44.4528,6.0092916 + parent: 1668 + - uid: 7297 + components: + - type: Transform + pos: -50.48405,6.0092916 + parent: 1668 + - uid: 7298 + components: + - type: Transform + pos: -50.48601,-6.06394 + parent: 1668 +- proto: LauncherSyringe + entities: + - uid: 4649 + components: + - type: Transform + pos: 23.50474,-12.504835 + parent: 1668 +- proto: LemoonSeeds + entities: + - uid: 1023 + components: + - type: Transform + pos: 9.280961,-23.281765 + parent: 1668 + - uid: 1024 + components: + - type: Transform + pos: 9.280961,-23.337322 + parent: 1668 + - uid: 1025 + components: + - type: Transform + pos: 9.280961,-23.399822 + parent: 1668 + - uid: 1026 + components: + - type: Transform + pos: 9.280961,-23.462322 + parent: 1668 +- proto: LockerAtmosphericsFilled + entities: + - uid: 4033 + components: + - type: Transform + pos: -15.5,26.5 + parent: 1668 +- proto: LockerBoozeFilled + entities: + - uid: 1281 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 1668 + - uid: 2381 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 1668 +- proto: LockerBrigmedicFilled + entities: + - uid: 3609 + components: + - type: Transform + pos: 15.5,9.5 + parent: 1668 +- proto: LockerChemistryFilled + entities: + - uid: 756 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 1668 +- proto: LockerChiefEngineer + entities: + - uid: 6770 + components: + - type: MetaData + name: ert engineer's locker + - type: Transform + pos: -33.5,-4.5 + parent: 1668 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6780 + - 6779 + - 6778 + - 6777 + - 6776 + - 6775 + - 6774 + - 6773 + - 6772 + - 6771 + - 6781 + - 6782 + - 6783 + - 6784 + - 6785 + - 6786 + - 6787 + - 6788 + - 6789 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6790 + components: + - type: MetaData + name: ert engineer's locker + - type: Transform + pos: -32.5,-4.5 + parent: 1668 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6800 + - 6799 + - 6798 + - 6797 + - 6796 + - 6795 + - 6794 + - 6793 + - 6792 + - 6791 + - 6801 + - 6802 + - 6803 + - 6804 + - 6805 + - 6806 + - 6807 + - 6808 + - 6809 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerChiefMedicalOfficer + entities: + - uid: 6846 + components: + - type: MetaData + name: ert medic's locker + - type: Transform + pos: -33.5,-10.5 + parent: 1668 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6855 + - 6854 + - 6853 + - 6852 + - 6851 + - 6850 + - 6849 + - 6848 + - 6847 + - 6856 + - 6857 + - 6858 + - 6859 + - 6860 + - 6861 + - 6862 + - 6863 + - 6864 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6865 + components: + - type: MetaData + name: ert medic's locker + - type: Transform + pos: -32.5,-10.5 + parent: 1668 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6874 + - 6873 + - 6872 + - 6871 + - 6870 + - 6869 + - 6868 + - 6867 + - 6866 + - 6875 + - 6876 + - 6877 + - 6878 + - 6879 + - 6880 + - 6881 + - 6882 + - 6883 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 3162 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1668 +- proto: LockerEngineerFilled + entities: + - uid: 4036 + components: + - type: Transform + pos: -15.5,23.5 + parent: 1668 +- proto: LockerEvidence + entities: + - uid: 1356 + components: + - type: Transform + pos: 11.5,12.5 + parent: 1668 + - uid: 1357 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1668 +- proto: LockerFreezer + entities: + - uid: 1183 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 1668 + - uid: 5452 + components: + - type: Transform + pos: -11.5,-29.5 + parent: 1668 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5453 + - 5454 + - 5455 + - 5456 + - 5457 + - 5458 + - 5459 + - 5460 + - 5461 + - 5462 + - 5463 + - 5464 + - 5465 + - 5466 + - 5467 + - 5468 + - 5469 + - 5470 + - 5471 + - 5472 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 5481 + components: + - type: Transform + pos: -8.5,-29.5 + parent: 1668 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5482 + - 5483 + - 5484 + - 5485 + - 5486 + - 5487 + - 5488 + - 5489 + - 5490 + - 5491 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 5492 + components: + - type: Transform + pos: -7.5,-29.5 + parent: 1668 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5493 + - 5494 + - 5495 + - 5496 + - 5497 + - 5498 + - 5499 + - 5500 + - 5501 + - 5502 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerHeadOfSecurity + entities: + - uid: 6810 + components: + - type: MetaData + name: ert security's locker + - type: Transform + pos: -28.5,-10.5 + parent: 1668 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6822 + - 6821 + - 6820 + - 6819 + - 6818 + - 6817 + - 6816 + - 6815 + - 6814 + - 6813 + - 6812 + - 6811 + - 6823 + - 6824 + - 6825 + - 6826 + - 6827 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6828 + components: + - type: MetaData + name: ert security's locker + - type: Transform + pos: -29.5,-10.5 + parent: 1668 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6840 + - 6839 + - 6838 + - 6837 + - 6836 + - 6835 + - 6834 + - 6833 + - 6832 + - 6831 + - 6830 + - 6829 + - 6841 + - 6842 + - 6843 + - 6844 + - 6845 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerRepresentative + entities: + - uid: 6884 + components: + - type: MetaData + name: ert leader's locker + - type: Transform + pos: -28.5,-4.5 + parent: 1668 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6902 + - 6901 + - 6900 + - 6899 + - 6898 + - 6897 + - 6896 + - 6895 + - 6894 + - 6893 + - 6892 + - 6891 + - 6890 + - 6889 + - 6888 + - 6887 + - 6886 + - 6885 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSecurityFilled + entities: + - uid: 1594 + components: + - type: Transform + pos: 15.5,5.5 + parent: 1668 + - uid: 1595 + components: + - type: Transform + pos: 15.5,6.5 + parent: 1668 +- proto: LockerSteel + entities: + - uid: 2464 + components: + - type: Transform + pos: 16.5,32.5 + parent: 1668 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2474 + - 2473 + - 2472 + - 2471 + - 2470 + - 2469 + - 2468 + - 2467 + - 2466 + - 2465 + - 2475 + - 2476 + - 2477 + - 2478 + - 2479 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2480 + components: + - type: Transform + pos: 15.5,32.5 + parent: 1668 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2490 + - 2489 + - 2488 + - 2487 + - 2486 + - 2485 + - 2484 + - 2483 + - 2482 + - 2481 + - 2491 + - 2492 + - 2493 + - 2494 + - 2495 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2496 + components: + - type: Transform + pos: 10.5,32.5 + parent: 1668 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2506 + - 2505 + - 2504 + - 2503 + - 2502 + - 2501 + - 2500 + - 2499 + - 2498 + - 2497 + - 2507 + - 2508 + - 2509 + - 2510 + - 2511 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2512 + components: + - type: Transform + pos: 11.5,32.5 + parent: 1668 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2522 + - 2521 + - 2520 + - 2519 + - 2518 + - 2517 + - 2516 + - 2515 + - 2514 + - 2513 + - 2523 + - 2524 + - 2525 + - 2526 + - 2527 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4817 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 1668 + - uid: 4818 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 1668 + - uid: 4819 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 1668 + - uid: 4820 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 1668 + - uid: 4821 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 1668 + - uid: 4822 + components: + - type: Transform + pos: -16.5,-33.5 + parent: 1668 + - uid: 4823 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 1668 + - uid: 4824 + components: + - type: Transform + pos: -16.5,-31.5 + parent: 1668 + - uid: 4825 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 1668 + - uid: 4826 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 1668 +- proto: LockerWardenFilled + entities: + - uid: 3608 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1668 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 3161 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1668 +- proto: MachineCentrifuge + entities: + - uid: 674 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1668 +- proto: MachineElectrolysisUnit + entities: + - uid: 673 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1668 +- proto: MagazineMagnum + entities: + - uid: 6885 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagicDiceBag + entities: + - uid: 4765 + components: + - type: Transform + pos: -5.4992046,-49.447086 + parent: 1668 +- proto: Mannequin + entities: + - uid: 3239 + components: + - type: MetaData + desc: Bane of Cybersun. Head of CentComm Security. + name: Haunted Security Mannequin + - type: Transform + pos: 35.5,7.5 + parent: 1668 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 3242 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - type: Godmode + oldDamage: {} + - uid: 6047 + components: + - type: Transform + pos: -20.5,-17.5 + parent: 1668 +- proto: Matchbox + entities: + - uid: 9160 + components: + - type: Transform + pos: 21.13559,-32.132904 + parent: 1668 +- proto: MaterialBiomass + entities: + - uid: 749 + components: + - type: Transform + pos: 22.309278,-8.386292 + parent: 1668 + - uid: 752 + components: + - type: Transform + pos: 22.434278,-8.480042 + parent: 1668 + - uid: 753 + components: + - type: Transform + pos: 22.559278,-8.386292 + parent: 1668 +- proto: MechEquipmentGrabberSmall + entities: + - uid: 4018 + components: + - type: Transform + pos: 6.5,22.5 + parent: 1668 +- proto: MedicalBed + entities: + - uid: 680 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 1668 + - uid: 681 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 1668 +- proto: MedicalScanner + entities: + - uid: 734 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 1668 +- proto: MedicalTechFab + entities: + - uid: 812 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 1668 +- proto: MedicatedSuture + entities: + - uid: 2057 + components: + - type: Transform + pos: 16.454739,-4.266801 + parent: 1668 + - uid: 6855 + components: + - type: Transform + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6874 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6902 + components: + - type: Transform + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MedkitAdvancedFilled + entities: + - uid: 759 + components: + - type: Transform + pos: 12.405088,-13.153012 + parent: 1668 + - uid: 760 + components: + - type: Transform + pos: 12.405088,-13.342827 + parent: 1668 + - uid: 761 + components: + - type: Transform + pos: 12.405088,-13.532642 + parent: 1668 + - uid: 7099 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 1668 +- proto: MedkitBruteFilled + entities: + - uid: 762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 + pos: 12.997496,-13.1514435 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5640 + - uid: 763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-0.5 + pos: 13.002125,-13.341258 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5641 + - uid: 764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 + pos: 13.002125,-13.531073 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5642 +- proto: MedkitBurnFilled + entities: + - uid: 765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 + pos: 13.591135,-13.146813 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5644 + - uid: 766 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-0.5 + pos: 13.591135,-13.331999 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5645 + - uid: 767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-0.5 + pos: 13.591135,-13.521813 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5646 +- proto: MedkitCombatFilled + entities: + - uid: 768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-0.5 + pos: 14.1850605,-13.1514435 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5647 + - uid: 769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-0.5 + pos: 14.1850605,-13.341258 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5648 + - uid: 770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-0.5 + pos: 14.1850605,-13.5264435 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5649 + - uid: 6864 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5650 + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-0.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5651 + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MedkitFilled + entities: + - uid: 771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-0.5 + pos: 14.778411,-13.1514435 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5653 + - uid: 772 components: - type: Transform - pos: -30.5,-1.5 + pos: 14.773782,-13.341258 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5654 + - uid: 773 components: - type: Transform - pos: -30.5,0.5 + pos: 14.773782,-13.5264435 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5655 + - uid: 808 components: - type: Transform - pos: -30.5,1.5 + pos: 16.5,-2.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5656 + - uid: 6755 components: - type: Transform - pos: -30.5,2.5 + pos: -39.5,-6.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5657 +- proto: MedkitOxygenFilled + entities: + - uid: 774 components: - type: Transform - pos: -30.5,3.5 + pos: 15.366374,-13.1514435 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5662 + - uid: 775 components: - type: Transform - pos: -20.5,-2.5 + pos: 15.366374,-13.341258 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5668 + - uid: 776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,0.5 + pos: 15.361745,-13.5264435 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5672 +- proto: MedkitRadiationFilled + entities: + - uid: 777 components: - type: Transform - pos: -0.5,4.5 + pos: 15.965172,-13.1514435 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5673 + - uid: 778 components: - type: Transform - pos: -0.5,5.5 + pos: 15.965172,-13.341258 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5674 + - uid: 779 components: - type: Transform - pos: -0.5,6.5 + pos: 15.955913,-13.521813 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5675 +- proto: MedkitToxinFilled + entities: + - uid: 780 components: - type: Transform - pos: -0.5,7.5 + pos: 16.562393,-13.146813 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5676 + - uid: 781 components: - type: Transform - pos: -0.5,8.5 + pos: 16.562393,-13.336628 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5677 + - uid: 782 components: - type: Transform - pos: -0.5,9.5 + pos: 16.557764,-13.5264435 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5680 +- proto: MetalFoamGrenade + entities: + - uid: 2418 components: - type: Transform - pos: -0.5,11.5 + pos: 15.114939,30.81574 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5681 + - uid: 2594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,10.5 + pos: 15.114939,30.81574 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5682 + - uid: 2595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,10.5 + pos: 15.114939,30.81574 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5683 + - uid: 2596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,10.5 + pos: 15.114939,30.81574 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5684 +- proto: MindShieldImplanter + entities: + - uid: 2478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5685 + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,10.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5686 + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5687 + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2522 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5688 + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Mirror + entities: + - uid: 2789 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,12.5 + pos: -16.5,15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5689 +- proto: MopBucketFull + entities: + - uid: 9081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,12.5 + pos: -6.5,-10.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5690 +- proto: Multitool + entities: + - uid: 3178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,12.5 + pos: -5.5,7.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5691 +- proto: NitrogenCanister + entities: + - uid: 3493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,12.5 + pos: -31.5,26.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5692 + - uid: 4119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,12.5 + pos: -22.5,29.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5693 +- proto: NitrousOxideCanister + entities: + - uid: 4120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,12.5 + pos: -22.5,28.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5694 +- proto: NoticeBoard + entities: + - uid: 4297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,12.5 + pos: 7.5,-36.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5695 + - uid: 4298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,12.5 + pos: -8.5,-36.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5701 +- proto: NTFlag + entities: + - uid: 4181 components: - type: Transform - pos: -10.5,17.5 + pos: 8.5,6.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5702 + - uid: 7295 components: - type: Transform - pos: -10.5,18.5 + pos: -20.5,-9.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5703 +- proto: NTHandyFlag + entities: + - uid: 4191 components: - type: Transform - pos: -10.5,19.5 + pos: 32.55483,-11.579755 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5704 + - uid: 9339 components: - type: Transform - pos: -10.5,20.5 + pos: -40.5,1.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5705 +- proto: NukeCodePaperStation + entities: + - uid: 536 components: - type: Transform - pos: -10.5,21.5 + pos: -1.4979519,1.1034296 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5706 +- proto: OmnizineChemistryBottle + entities: + - uid: 6862 components: - type: Transform - pos: -10.5,22.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5708 + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6863 components: - type: Transform - pos: -10.5,24.5 + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6866 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6876 + components: + - type: Transform + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: OreProcessor + entities: + - uid: 4080 + components: + - type: Transform + pos: 3.5,26.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5709 +- proto: OrganHumanBrain + entities: + - uid: 4385 components: - type: Transform - pos: -10.5,25.5 + pos: -22.989595,-17.137362 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5710 +- proto: OxygenCanister + entities: + - uid: 792 components: - type: Transform - pos: -10.5,26.5 + anchored: True + pos: 19.5,-13.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5715 + - type: Physics + bodyType: Static + - uid: 3494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,10.5 + pos: -31.5,20.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5716 + - uid: 4122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,10.5 + pos: -21.5,30.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5717 +- proto: PaintingAmogusTriptych + entities: + - uid: 2928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,10.5 + pos: -18.5,8.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5718 +- proto: PaintingHelloWorld + entities: + - uid: 6000 components: - type: Transform - pos: -10.5,11.5 + pos: -12.5,8.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5719 +- proto: PaintingNightHawks + entities: + - uid: 2925 components: - type: Transform - pos: -10.5,12.5 + pos: -14.5,10.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5720 +- proto: PaintingSaturn + entities: + - uid: 2924 components: - type: Transform - pos: -10.5,13.5 + pos: -8.5,6.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5721 +- proto: PaintingTheGreatWave + entities: + - uid: 2799 components: - type: Transform - pos: -10.5,14.5 + rot: 3.141592653589793 rad + pos: -17.5,14.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5722 +- proto: Paper + entities: + - uid: 1748 components: - type: Transform - pos: -10.5,15.5 + pos: 7.501362,11.6733 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5725 + - uid: 1749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,12.5 + pos: 7.501362,11.6733 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5726 + - uid: 1750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,12.5 + pos: 19.535091,11.6733 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5727 + - uid: 1751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,12.5 + pos: 19.535091,11.6733 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5728 +- proto: PaperBin5 + entities: + - uid: 507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,12.5 + pos: -3.5,-2.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5729 + - uid: 529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,12.5 + pos: -1.5,0.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5730 + - uid: 2087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,12.5 + pos: 27.5,12.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5732 + - uid: 6752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,12.5 + rot: 3.141592653589793 rad + pos: -37.5,-6.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5733 + - uid: 7299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,12.5 + pos: -48.5,-6.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5734 + - uid: 7300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,12.5 + pos: -48.5,5.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5735 + - uid: 7301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,12.5 + pos: -42.5,5.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5736 +- proto: Pen + entities: + - uid: 1746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,12.5 + pos: 19.5,11.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5737 + - uid: 1747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,12.5 + pos: 7.5,11.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5738 +- proto: PenCentcom + entities: + - uid: 528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,12.5 + pos: 0.062660635,1.813037 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5739 + - uid: 2860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,12.5 + pos: -17.37441,12.973077 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5740 + - uid: 9080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,12.5 + pos: -7.577932,-9.288714 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5745 +- proto: PersonalAI + entities: + - uid: 1377 components: - type: Transform - pos: 11.5,13.5 + pos: -3.598611,-0.49923915 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5746 +- proto: PhoneInstrument + entities: + - uid: 1384 components: - type: Transform - pos: 11.5,14.5 + pos: 0.51263905,1.1600976 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5747 + - uid: 2029 components: - type: Transform - pos: 11.5,15.5 + pos: 28.45356,27.588108 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5748 + - uid: 2849 components: - type: Transform - pos: 11.5,16.5 + pos: -16.54149,11.627905 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5749 + - uid: 4764 components: - type: Transform - pos: 11.5,17.5 + pos: -3.5407324,-49.447086 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5750 + - uid: 6763 components: - type: Transform - pos: 11.5,18.5 + pos: -44.811134,-4.457982 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5751 +- proto: PlaqueAtmos + entities: + - uid: 4031 components: - type: Transform - pos: 11.5,19.5 + pos: -16.5,28.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5752 + - uid: 4213 components: - type: Transform - pos: 11.5,20.5 + pos: 2.5,-32.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5753 +- proto: PlasmaCanister + entities: + - uid: 4121 components: - type: Transform - pos: 11.5,21.5 + pos: -21.5,29.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5754 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 2833 components: - type: Transform - pos: 11.5,22.5 + pos: 0.5,22.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5755 + - uid: 3723 components: - type: Transform - pos: 11.5,23.5 + pos: 1.5,36.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5757 + - uid: 3724 components: - type: Transform - pos: 28.5,13.5 + pos: 5.5,36.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5758 + - uid: 3725 components: - type: Transform - pos: 28.5,14.5 + pos: 5.5,33.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5759 + - uid: 3726 components: - type: Transform - pos: 28.5,15.5 + pos: 1.5,33.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5760 +- proto: PlastitaniumWindowDiagonalIndestructible + entities: + - uid: 376 components: - type: Transform - pos: 28.5,16.5 + rot: -1.5707963267948966 rad + pos: 20.5,33.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5761 + - uid: 2540 components: - type: Transform - pos: 28.5,17.5 + rot: 1.5707963267948966 rad + pos: 18.5,31.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5762 + - uid: 2541 components: - type: Transform - pos: 28.5,18.5 + pos: 18.5,33.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5766 + - uid: 2543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 + rot: 3.141592653589793 rad + pos: 20.5,31.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5767 +- proto: PlastitaniumWindowIndestructible + entities: + - uid: 1741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 + pos: 18.5,32.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5768 + - uid: 2130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-0.5 + pos: 15.5,29.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5769 + - uid: 2131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-0.5 + pos: 19.5,31.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5770 + - uid: 2158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-0.5 + pos: 16.5,29.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5771 + - uid: 2189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-0.5 + pos: 10.5,29.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5773 + - uid: 2200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-0.5 + pos: 11.5,29.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5774 + - uid: 2201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-0.5 + pos: 14.5,29.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5775 + - uid: 2202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-0.5 + pos: 12.5,29.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5776 + - uid: 2449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-0.5 + pos: 19.5,33.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5777 + - uid: 2538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-0.5 + pos: 20.5,32.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5778 + - uid: 6048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-0.5 + pos: -7.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5790 + - uid: 6049 components: - type: Transform - pos: -13.5,-30.5 + pos: -8.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5791 + - uid: 6050 components: - type: Transform - pos: -13.5,-29.5 + pos: -11.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5792 + - uid: 6051 components: - type: Transform - pos: -13.5,-28.5 + pos: -10.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5793 + - uid: 6052 components: - type: Transform - pos: -13.5,-27.5 + pos: -13.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5794 + - uid: 6053 components: - type: Transform - pos: -13.5,-26.5 + pos: -14.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5796 + - uid: 6054 components: - type: Transform - pos: -13.5,-24.5 + pos: -16.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5798 + - uid: 6055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-32.5 + pos: -17.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5799 + - uid: 6077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-32.5 + pos: -20.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5800 + - uid: 6078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-32.5 + pos: -19.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5801 + - uid: 6080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-32.5 + pos: -22.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5802 + - uid: 6088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-32.5 + pos: -23.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5803 + - uid: 6089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-32.5 + pos: -25.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5804 + - uid: 6090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-32.5 + pos: -26.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5816 + - uid: 6643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-32.5 + pos: -28.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5817 + - uid: 6644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-32.5 + pos: -29.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5818 + - uid: 6645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-32.5 + pos: -31.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5819 + - uid: 6646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-32.5 + pos: -32.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5820 + - uid: 6647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-32.5 + pos: -34.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5821 + - uid: 6648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-32.5 + pos: -35.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5822 + - uid: 6649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-32.5 + pos: -38.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5823 + - uid: 6650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-32.5 + pos: -37.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5998 +- proto: PlayerStationAiEmpty + entities: + - uid: 73 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-25.5 + pos: -0.5,-2.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5999 +- proto: PlushieGhost + entities: + - uid: 6072 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-25.5 + pos: -11.029306,-17.366844 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6000 + - type: PointLight + color: '#32A836FF' +- proto: PlushieLizard + entities: + - uid: 6074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-25.5 + pos: -16.573818,-17.423563 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6001 +- proto: PlushieSharkBlue + entities: + - uid: 9288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-25.5 + pos: -15.5,-2.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6002 +- proto: PlushieSharkGrey + entities: + - uid: 4236 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-25.5 + pos: -29.5,-2.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6130 +- proto: PlushieSharkPink + entities: + - uid: 2281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-32.5 + pos: -46.5,1.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6137 +- proto: PortableGeneratorJrPacman + entities: + - uid: 4092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-32.5 + pos: -9.5,22.5 parent: 1668 - - uid: 6138 +- proto: PortableGeneratorPacman + entities: + - uid: 4093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-32.5 + pos: -8.5,22.5 parent: 1668 - - uid: 6139 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 4094 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-32.5 + pos: -7.5,22.5 parent: 1668 - - uid: 6226 +- proto: PortableRecharger + entities: + - uid: 2597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-32.5 + pos: 12.000356,30.555325 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6315 + - uid: 2598 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-36.5 + pos: 12.000356,30.555325 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6316 + - uid: 2599 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-35.5 + pos: 12.000356,30.555325 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6317 + - uid: 2600 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-34.5 + pos: 12.000356,30.555325 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6318 + - uid: 6740 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-33.5 + pos: -31.43239,-10.454217 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6319 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 4029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-37.5 + pos: -18.5,28.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6320 +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 9291 components: + - type: MetaData + desc: Ah the good old days. + name: Beach Star Bratton! - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-37.5 + pos: -10.5,8.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6321 +- proto: PosterContrabandC20r + entities: + - uid: 2448 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-37.5 + pos: 9.5,33.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6322 +- proto: PosterContrabandDonk + entities: + - uid: 9335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-37.5 + pos: 13.5,-14.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6323 +- proto: PosterContrabandDonutCorp + entities: + - uid: 9334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-37.5 + pos: 15.5,-14.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6324 +- proto: PosterContrabandEAT + entities: + - uid: 9292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-37.5 + pos: 11.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6325 +- proto: PosterContrabandEnergySwords + entities: + - uid: 2183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-37.5 + pos: 17.5,34.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6326 +- proto: PosterContrabandHackingGuide + entities: + - uid: 9332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-37.5 + pos: -7.5,16.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6327 +- proto: PosterContrabandHaveaPuff + entities: + - uid: 9293 components: - type: Transform - pos: 4.5,-36.5 + pos: 7.5,-13.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6328 +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 9331 components: - type: Transform - pos: 4.5,-35.5 + pos: -16.5,17.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6329 +- proto: PosterContrabandInterdyne + entities: + - uid: 9294 components: - type: Transform - pos: 4.5,-34.5 + pos: 20.5,-14.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6330 +- proto: PosterContrabandKosmicheskayaStantsiya + entities: + - uid: 2451 components: - type: Transform - pos: 4.5,-33.5 + rot: 1.5707963267948966 rad + pos: 17.5,25.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6331 +- proto: PosterContrabandMissingGloves + entities: + - uid: 9329 components: - type: Transform - pos: -0.5,-38.5 + pos: 2.5,13.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6332 +- proto: PosterContrabandMissingSpacepen + entities: + - uid: 9299 components: - type: Transform - pos: -0.5,-39.5 + pos: -22.5,-3.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6333 +- proto: PosterContrabandNuclearDeviceInformational + entities: + - uid: 9327 components: - type: Transform - pos: -0.5,-40.5 + pos: 9.5,32.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6658 +- proto: PosterContrabandRedRum + entities: + - uid: 9304 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-4.5 + pos: 35.5,-25.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6659 +- proto: PosterContrabandRevolver + entities: + - uid: 2450 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-3.5 + rot: 1.5707963267948966 rad + pos: 9.5,27.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6661 +- proto: PosterContrabandSmoke + entities: + - uid: 9309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-2.5 + pos: 2.5,9.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6662 +- proto: PosterContrabandTools + entities: + - uid: 9312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-2.5 + pos: -7.5,14.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6668 +- proto: PosterContrabandVoteWeh + entities: + - uid: 308 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-4.5 + pos: 29.5,6.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6669 +- proto: PosterContrabandWaffleCorp + entities: + - uid: 9330 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-3.5 + pos: 9.5,25.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6670 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 6188 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-2.5 + pos: 11.5,-12.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6671 +- proto: PosterLegitCarpMount + entities: + - uid: 9313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-1.5 + pos: 6.5,23.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6672 +- proto: PosterLegitCohibaRobustoAd + entities: + - uid: 1328 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-1.5 + pos: 31.5,-22.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6673 +- proto: PosterLegitEnlist + entities: + - uid: 2447 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-1.5 + pos: 9.5,31.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6674 +- proto: PosterLegitGetYourLEGS + entities: + - uid: 9333 components: - type: Transform - pos: 4.5,-6.5 + pos: -34.5,-3.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6675 +- proto: PosterLegitHelpOthers + entities: + - uid: 9295 components: - type: Transform - pos: 4.5,-7.5 + pos: -12.5,-28.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6676 +- proto: PosterLegitHereForYourSafety + entities: + - uid: 9296 components: - type: Transform - pos: 4.5,-8.5 + pos: 7.5,-28.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6677 +- proto: PosterLegitHighClassMartini + entities: + - uid: 1327 components: - type: Transform - pos: 4.5,-9.5 + pos: 18.5,-22.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6682 +- proto: PosterLegitIan + entities: + - uid: 9307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-11.5 + pos: -36.5,2.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6683 +- proto: PosterLegitIonRifle + entities: + - uid: 9297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-11.5 + pos: 9.5,22.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6684 +- proto: PosterLegitJustAWeekAway + entities: + - uid: 307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-11.5 + pos: 33.5,-0.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6685 +- proto: PosterLegitLoveIan + entities: + - uid: 9308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-11.5 + pos: -30.5,2.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6686 +- proto: PosterLegitMime + entities: + - uid: 9298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-11.5 + pos: -23.5,-5.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6687 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 + pos: -3.5,-7.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6688 + - uid: 613 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-12.5 + pos: 18.5,-3.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6689 + - uid: 614 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-13.5 + pos: 18.5,2.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6690 + - uid: 622 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-14.5 + pos: -3.5,6.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6691 + - uid: 623 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-15.5 + pos: 2.5,6.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6692 + - uid: 626 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-16.5 + pos: 2.5,-7.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6693 + - uid: 801 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-17.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6694 + pos: 3.5,-3.5 + parent: 1668 + - uid: 802 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-18.5 + pos: -4.5,-3.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6695 + - uid: 1270 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-19.5 + pos: 18.5,-24.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6696 + - uid: 1338 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-20.5 + pos: 28.5,-14.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6697 + - uid: 1339 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-21.5 + pos: 24.5,-14.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6698 + - uid: 1340 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-22.5 + pos: 31.5,-24.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6699 + - uid: 1341 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-23.5 + pos: 31.5,-18.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6700 + - uid: 2001 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-24.5 + pos: 26.5,28.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6701 + - uid: 2002 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-25.5 + pos: 24.5,28.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6702 + - uid: 2003 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-26.5 + pos: 28.5,28.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6703 + - uid: 2004 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-27.5 + pos: 20.5,18.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6704 + - uid: 2005 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-28.5 + pos: 32.5,18.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6710 + - uid: 2630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-32.5 + pos: 11.5,35.5 parent: 1668 - - uid: 6714 + - uid: 2631 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-31.5 + pos: 15.5,35.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6715 + - uid: 2653 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-30.5 + pos: 13.5,35.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6716 + - uid: 2702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-29.5 + rot: -1.5707963267948966 rad + pos: -12.5,2.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6717 + - uid: 2800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-29.5 + rot: 3.141592653589793 rad + pos: -16.5,14.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPipeTJunction - entities: - - uid: 3671 + - uid: 2920 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,6.5 + pos: -12.5,-3.5 parent: 1668 - - uid: 5465 + - uid: 3254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-30.5 + pos: 17.5,17.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5470 + - uid: 3255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-25.5 + pos: 1.5,17.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5473 + - uid: 3256 components: - type: Transform - pos: 16.5,-25.5 + pos: -2.5,17.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5477 + - uid: 3257 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-25.5 + pos: 9.5,17.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5478 + - uid: 4182 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-25.5 + pos: 34.5,6.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5510 + - uid: 4183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-22.5 + pos: 34.5,-7.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5520 + - uid: 4295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-18.5 + pos: 7.5,-32.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5528 + - uid: 4296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-18.5 + pos: -8.5,-32.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5530 + - uid: 7242 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-18.5 + pos: -55.5,-3.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5537 + - uid: 7243 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-18.5 + pos: -55.5,2.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5542 + - uid: 7286 components: - type: Transform - pos: -0.5,-19.5 + pos: -51.5,-3.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5543 + - uid: 7287 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-17.5 + pos: -47.5,2.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5544 + - uid: 7288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-16.5 + pos: -41.5,2.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5563 + - uid: 7289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-22.5 + pos: -45.5,-11.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5572 + - uid: 7290 components: - type: Transform - pos: -1.5,-11.5 + pos: -45.5,-3.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5592 + - uid: 7291 components: - type: Transform - pos: -0.5,-4.5 + pos: -35.5,-3.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5593 + - uid: 7292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-0.5 + pos: -35.5,-11.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5594 + - uid: 7293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-0.5 + pos: -28.5,-11.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5595 + - uid: 7294 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,3.5 + pos: -28.5,-3.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5607 + - uid: 7490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,0.5 + pos: -35.5,-24.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5613 + - uid: 7491 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,3.5 + pos: -27.5,-24.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5627 + - uid: 7492 components: - type: Transform - pos: 0.5,-4.5 + pos: -19.5,-24.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5628 + - uid: 7493 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-0.5 + pos: -11.5,-24.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5643 + - uid: 9323 components: - type: Transform - pos: -21.5,-0.5 + pos: 7.5,-44.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5652 + - uid: 9324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-0.5 + pos: -8.5,-44.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5660 + - uid: 9325 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-1.5 + pos: 7.5,-37.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5665 + - uid: 9326 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-0.5 + pos: -8.5,-37.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5678 + - uid: 9328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,10.5 + pos: -0.5,-50.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5679 + - uid: 9336 components: - type: Transform - pos: -0.5,12.5 + pos: -3.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5698 + - uid: 9337 components: - type: Transform - pos: -6.5,10.5 + pos: -3.5,-11.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5700 +- proto: PosterLegitNTTGC + entities: + - uid: 130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,16.5 + pos: 32.5,-7.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5707 + - uid: 9301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,23.5 + pos: -25.5,-3.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5723 +- proto: PosterLegitOppenhopper + entities: + - uid: 9302 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,12.5 + pos: -8.5,-28.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5724 +- proto: PosterLegitPDAAd + entities: + - uid: 9303 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,12.5 + pos: -6.5,-7.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5731 +- proto: PosterLegitPeriodicTable + entities: + - uid: 1321 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,12.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5741 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,12.5 + pos: 10.5,-7.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5772 +- proto: PosterLegitRenault + entities: + - uid: 9306 components: - type: Transform - pos: 12.5,-0.5 + pos: -17.5,2.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5786 +- proto: PosterLegitReportCrimes + entities: + - uid: 9305 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-32.5 + pos: 11.5,-24.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5788 +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 9320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-31.5 + pos: -8.5,8.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5789 +- proto: PosterLegitSafetyInternals + entities: + - uid: 9322 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-31.5 + pos: -23.5,-28.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5795 +- proto: PosterLegitSafetyMothDelam + entities: + - uid: 9318 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-25.5 + pos: -12.5,14.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5797 +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 9317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-23.5 + pos: 18.5,-14.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5805 +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 9316 components: - type: Transform - pos: 4.5,-32.5 + pos: 5.5,-13.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5815 +- proto: PosterLegitSafetyMothPiping + entities: + - uid: 9319 components: - type: Transform - pos: -5.5,-32.5 + pos: -20.5,18.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6640 +- proto: PosterLegitSafetyMothSSD + entities: + - uid: 9315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-5.5 + pos: 29.5,-28.5 parent: 1668 - - uid: 6653 +- proto: PosterLegitSafetyReport + entities: + - uid: 9321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-5.5 + pos: -31.5,-28.5 parent: 1668 - - uid: 6654 +- proto: PosterLegitSecWatch + entities: + - uid: 9310 components: - type: Transform - pos: 12.5,-6.5 + pos: 19.5,13.5 parent: 1668 - - uid: 6708 +- proto: PosterLegitSpaceCops + entities: + - uid: 9311 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-32.5 + pos: 11.5,6.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6709 +- proto: PosterLegitUeNo + entities: + - uid: 309 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-32.5 + pos: 23.5,6.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPort +- proto: PosterLegitVacation entities: - - uid: 208 + - uid: 98 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-32.5 + pos: 24.5,-7.5 parent: 1668 - - uid: 3577 + - uid: 2179 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,4.5 + pos: 17.5,30.5 parent: 1668 - - uid: 3659 + - uid: 9300 components: - type: Transform - pos: -14.5,6.5 + pos: -19.5,-3.5 parent: 1668 - - uid: 3662 +- proto: PosterLegitWorkForAFuture + entities: + - uid: 9314 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,4.5 + pos: -2.5,25.5 parent: 1668 - - uid: 6655 +- proto: PosterMapBagel + entities: + - uid: 621 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-7.5 + pos: 7.5,2.5 parent: 1668 - - uid: 6705 +- proto: PosterMapDelta + entities: + - uid: 629 components: - type: Transform - pos: 16.5,-31.5 + pos: 3.5,6.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6706 +- proto: PosterMapMarathon + entities: + - uid: 628 components: - type: Transform - pos: 17.5,-31.5 + pos: -4.5,6.5 parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPressurePump +- proto: PosterMapMoose entities: - - uid: 3663 + - uid: 631 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,5.5 + pos: -4.5,-7.5 parent: 1668 - - uid: 5395 +- proto: PosterMapPacked + entities: + - uid: 624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-30.5 + pos: -8.5,2.5 parent: 1668 - - type: GasPressurePump - targetPressure: 385 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5400 +- proto: PosterMapPillar + entities: + - uid: 630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-31.5 + pos: 3.5,-7.5 parent: 1668 - - type: GasPressurePump - targetPressure: 4500 - - type: AtmosPipeColor - color: '#990000FF' -- proto: GasThermoMachineFreezer +- proto: PosterMapSaltern entities: - - uid: 6641 + - uid: 627 components: - type: Transform - pos: 13.5,-4.5 + pos: 7.5,-3.5 parent: 1668 -- proto: GasVentPump +- proto: PosterMapSplit entities: - - uid: 3687 + - uid: 625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,9.5 + pos: -8.5,-3.5 parent: 1668 - - uid: 3688 +- proto: PotatoAI + entities: + - uid: 938 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,8.5 + pos: -3.6285608,-0.35138273 parent: 1668 - - uid: 3689 +- proto: PottedPlant21 + entities: + - uid: 2000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,6.5 + pos: 26.5,27.5 parent: 1668 - - uid: 3694 + - uid: 2906 components: - type: Transform - pos: -21.5,14.5 + pos: -22.5,9.5 parent: 1668 - - uid: 5474 + - uid: 2973 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-26.5 + pos: -19.5,7.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5475 + - uid: 4026 components: - type: Transform - pos: 20.5,-24.5 + pos: -6.5,16.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5476 + - uid: 4324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-25.5 + pos: 1.5,12.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5505 + - uid: 4448 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-20.5 + pos: 6.5,-47.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5506 + - uid: 4449 components: - type: Transform - pos: 25.5,-17.5 + pos: 1.5,-49.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5507 + - uid: 4450 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-18.5 + pos: -2.5,-49.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5521 + - uid: 4451 components: - type: Transform - pos: 7.5,-17.5 + pos: -7.5,-47.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5538 + - uid: 4837 components: - type: Transform - pos: -8.5,-17.5 + pos: 17.5,-35.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5551 + - uid: 4842 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-26.5 + pos: -18.5,-35.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5554 + - uid: 6728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-22.5 + pos: -36.5,-10.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5565 + - uid: 6732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-22.5 + pos: -36.5,-4.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5566 + - uid: 6733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-16.5 + pos: -41.5,-4.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5573 +- proto: PottedPlant22 + entities: + - uid: 1380 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-12.5 + pos: -30.5,-2.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5581 + - uid: 1755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-11.5 + pos: -6.5,5.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5583 + - uid: 2905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-11.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5658 + pos: -18.5,9.5 + parent: 1668 + - uid: 4027 components: - type: Transform - pos: -30.5,4.5 + pos: -6.5,-6.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5659 + - uid: 4065 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-2.5 + pos: -16.5,-2.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5663 + - uid: 4235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 + pos: -43.5,-2.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5664 + - uid: 4322 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-3.5 + pos: 1.5,7.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5666 + - uid: 4323 components: - type: Transform - pos: -6.5,0.5 + pos: -2.5,12.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5667 + - uid: 4657 components: - type: Transform - pos: 5.5,0.5 + pos: 6.5,-5.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5669 + - uid: 4658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,0.5 + pos: 3.5,5.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5670 + - uid: 6167 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-5.5 + pos: -20.5,-10.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5671 + - uid: 6697 components: - type: Transform - pos: -1.5,4.5 + pos: -21.5,1.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5696 + - uid: 6729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,12.5 + pos: -37.5,-10.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5697 + - uid: 6730 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,9.5 + pos: -39.5,-10.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5712 + - uid: 6731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,27.5 + pos: -37.5,-4.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5713 + - uid: 9087 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,23.5 + pos: -34.5,1.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5714 + - uid: 9088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,16.5 + pos: -51.5,1.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5742 +- proto: PottedPlant26 + entities: + - uid: 9076 components: - type: Transform - pos: 10.5,13.5 + pos: -5.5,-8.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5743 +- proto: PottedPlantBioluminscent + entities: + - uid: 1314 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,11.5 + pos: 19.5,-15.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5744 + - uid: 1322 components: - type: Transform - pos: 18.5,13.5 + pos: 31.5,-25.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5756 + - uid: 1346 components: - type: Transform - pos: 11.5,24.5 + pos: 34.5,-17.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5763 +- proto: PowerCellAntiqueProto + entities: + - uid: 3424 components: - type: Transform - pos: 28.5,19.5 + pos: -9.46758,5.7276483 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5779 +- proto: PowerCellHyper + entities: + - uid: 9187 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-1.5 + pos: -31.235607,-6.797967 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5780 + - uid: 9205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-0.5 + pos: -31.376232,-6.672967 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5806 +- proto: PowerCellRecharger + entities: + - uid: 794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-32.5 + pos: 20.5,-8.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5814 + - uid: 795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-32.5 + pos: 17.5,-13.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5824 + - uid: 903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-31.5 + pos: 11.5,-6.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5825 + - uid: 3612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-31.5 + pos: 14.5,9.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5887 + - uid: 4188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-23.5 + rot: 3.141592653589793 rad + pos: -4.5,17.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6003 + - uid: 4189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-25.5 + rot: 3.141592653589793 rad + pos: -18.5,18.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6227 + - uid: 4190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-32.5 + rot: 3.141592653589793 rad + pos: 4.5,18.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6334 + - uid: 9203 components: - type: Transform - pos: -0.5,-36.5 + pos: -31.5,-6.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6335 +- proto: PoweredDimSmallLight + entities: + - uid: 1367 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-41.5 + rot: 1.5707963267948966 rad + pos: 19.5,-22.5 parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasVentScrubber - entities: - - uid: 6140 + - uid: 1368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-32.5 + rot: 1.5707963267948966 rad + pos: 19.5,-20.5 parent: 1668 -- proto: GeneratorBasic15kW - entities: - - uid: 5176 + - uid: 1371 components: - type: Transform - pos: 30.5,-21.5 + rot: 1.5707963267948966 rad + pos: 19.5,-21.5 parent: 1668 - - uid: 5177 + - uid: 3990 components: - type: Transform - pos: 30.5,-25.5 + rot: -1.5707963267948966 rad + pos: -4.5,29.5 parent: 1668 - - uid: 5178 + - uid: 6216 components: - type: Transform - pos: 30.5,-23.5 + pos: -4.5,-16.5 parent: 1668 - - uid: 5179 +- proto: Poweredlight + entities: + - uid: 126 components: - type: Transform - pos: 34.5,-25.5 + rot: -1.5707963267948966 rad + pos: 33.5,7.5 parent: 1668 - - uid: 5180 + - uid: 128 components: - type: Transform - pos: 34.5,-23.5 + rot: 3.141592653589793 rad + pos: 24.5,-6.5 parent: 1668 - - uid: 5181 + - uid: 131 components: - type: Transform - pos: 34.5,-21.5 + rot: 3.141592653589793 rad + pos: 20.5,-13.5 parent: 1668 - - uid: 5455 + - uid: 134 components: - type: Transform - pos: 32.5,-24.5 + pos: 26.5,8.5 parent: 1668 - - uid: 5456 + - uid: 206 components: - type: Transform - pos: 32.5,-22.5 + rot: -1.5707963267948966 rad + pos: 32.5,-0.5 parent: 1668 - - uid: 6596 + - uid: 208 components: - type: Transform - pos: 33.5,-25.5 + rot: 3.141592653589793 rad + pos: 0.5,-2.5 parent: 1668 - - uid: 6597 + - uid: 210 components: - type: Transform - pos: 31.5,-25.5 + pos: 23.5,5.5 parent: 1668 - - uid: 6598 + - uid: 211 components: - type: Transform - pos: 33.5,-23.5 + pos: 29.5,5.5 parent: 1668 - - uid: 6599 + - uid: 212 components: - type: Transform - pos: 31.5,-23.5 + rot: 1.5707963267948966 rad + pos: 19.5,-3.5 parent: 1668 - - uid: 6635 + - uid: 213 components: - type: Transform - pos: 31.5,-21.5 + rot: 1.5707963267948966 rad + pos: 19.5,2.5 parent: 1668 - - uid: 6636 + - uid: 517 components: - type: Transform - pos: 33.5,-21.5 + rot: -1.5707963267948966 rad + pos: 6.5,2.5 parent: 1668 -- proto: GeneratorRTG - entities: - - uid: 5182 + - uid: 518 components: - type: Transform - pos: 32.5,-25.5 + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 parent: 1668 - - uid: 5183 + - uid: 519 components: - type: Transform - pos: 32.5,-23.5 + rot: 1.5707963267948966 rad + pos: -7.5,-3.5 parent: 1668 - - uid: 5184 + - uid: 520 components: - type: Transform - pos: 32.5,-21.5 + rot: 1.5707963267948966 rad + pos: -7.5,2.5 parent: 1668 -- proto: GravityGenerator - entities: - - uid: 1140 + - uid: 521 components: - type: Transform - pos: 32.5,-11.5 + rot: 3.141592653589793 rad + pos: 2.5,-6.5 parent: 1668 -- proto: Grille - entities: - - uid: 30 + - uid: 522 components: - type: Transform - pos: -0.5,-3.5 + rot: 3.141592653589793 rad + pos: -3.5,-6.5 parent: 1668 - - uid: 31 + - uid: 523 components: - type: Transform - pos: 2.5,-3.5 + pos: -3.5,5.5 parent: 1668 - - uid: 32 + - uid: 524 components: - type: Transform - pos: 3.5,-1.5 + pos: 2.5,5.5 parent: 1668 - - uid: 33 + - uid: 619 components: - type: Transform - pos: 3.5,-0.5 + pos: 11.5,1.5 parent: 1668 - - uid: 34 + - uid: 620 components: - type: Transform - pos: 3.5,1.5 + rot: 3.141592653589793 rad + pos: 11.5,-2.5 parent: 1668 - - uid: 35 + - uid: 744 components: - type: Transform - pos: 2.5,2.5 + pos: 11.5,-4.5 parent: 1668 - - uid: 36 + - uid: 745 components: - type: Transform - pos: 3.5,2.5 + rot: 1.5707963267948966 rad + pos: 12.5,-12.5 parent: 1668 - - uid: 37 + - uid: 746 components: - type: Transform - pos: 0.5,2.5 + rot: 1.5707963267948966 rad + pos: 12.5,-7.5 parent: 1668 - - uid: 38 + - uid: 747 components: - type: Transform - pos: -0.5,2.5 + pos: 23.5,-8.5 parent: 1668 - - uid: 39 + - uid: 750 components: - type: Transform - pos: -1.5,2.5 + rot: 1.5707963267948966 rad + pos: 3.5,-8.5 parent: 1668 - - uid: 40 + - uid: 751 components: - type: Transform - pos: -3.5,2.5 + rot: -1.5707963267948966 rad + pos: 10.5,-12.5 parent: 1668 - - uid: 41 + - uid: 1155 components: - type: Transform - pos: -4.5,2.5 + rot: 3.141592653589793 rad + pos: 28.5,-6.5 parent: 1668 - - uid: 42 + - uid: 1190 components: - type: Transform - pos: -4.5,1.5 + rot: 3.141592653589793 rad + pos: 12.5,-19.5 parent: 1668 - - uid: 43 + - uid: 1191 components: - type: Transform - pos: -4.5,-0.5 + pos: 17.5,-15.5 parent: 1668 - - uid: 44 + - uid: 1633 components: - type: Transform - pos: -4.5,-1.5 + pos: 5.5,12.5 parent: 1668 - - uid: 45 + - uid: 1634 components: - type: Transform - pos: -4.5,-2.5 + pos: 21.5,12.5 parent: 1668 - - uid: 46 + - uid: 1635 components: - type: Transform - pos: -3.5,-3.5 + rot: 1.5707963267948966 rad + pos: 19.5,7.5 parent: 1668 - - uid: 47 + - uid: 1733 components: - type: Transform - pos: -2.5,-3.5 + rot: -1.5707963267948966 rad + pos: 17.5,9.5 parent: 1668 - - uid: 80 + - uid: 2098 components: - type: Transform - pos: 8.5,5.5 + rot: -1.5707963267948966 rad + pos: 34.5,19.5 parent: 1668 - - uid: 81 + - uid: 2099 components: - type: Transform - pos: 7.5,4.5 + pos: 26.5,27.5 parent: 1668 - - uid: 82 + - uid: 2101 components: - type: Transform - pos: 4.5,7.5 + rot: 1.5707963267948966 rad + pos: 21.5,17.5 parent: 1668 - - uid: 83 + - uid: 2105 components: - type: Transform - pos: 3.5,6.5 + rot: -1.5707963267948966 rad + pos: 34.5,26.5 parent: 1668 - - uid: 84 + - uid: 2106 components: - type: Transform - pos: 2.5,5.5 + rot: -1.5707963267948966 rad + pos: 31.5,17.5 parent: 1668 - - uid: 85 + - uid: 2107 components: - type: Transform - pos: 4.5,5.5 + rot: 3.141592653589793 rad + pos: 26.5,14.5 parent: 1668 - - uid: 105 + - uid: 2119 components: - type: Transform - pos: 18.5,-0.5 + rot: -1.5707963267948966 rad + pos: 17.5,-6.5 parent: 1668 - - uid: 106 + - uid: 2120 components: - type: Transform - pos: 16.5,-0.5 + pos: -2.5,1.5 parent: 1668 - - uid: 107 + - uid: 2124 components: - type: Transform - pos: 8.5,-0.5 + rot: 3.141592653589793 rad + pos: 2.5,14.5 parent: 1668 - - uid: 108 + - uid: 2439 components: - type: Transform - pos: 6.5,-0.5 + rot: -1.5707963267948966 rad + pos: 16.5,19.5 parent: 1668 - - uid: 132 + - uid: 2612 components: - type: Transform - pos: 1.5,-3.5 + rot: 3.141592653589793 rad + pos: 10.5,-23.5 parent: 1668 - - uid: 133 + - uid: 2700 components: - type: Transform - pos: 3.5,-2.5 + pos: 8.5,8.5 parent: 1668 - - uid: 154 + - uid: 2737 components: - type: Transform - pos: 5.5,-7.5 + pos: -12.5,3.5 parent: 1668 - - uid: 155 + - uid: 2775 components: - type: Transform - pos: 3.5,-7.5 + rot: 3.141592653589793 rad + pos: -12.5,-4.5 parent: 1668 - - uid: 156 + - uid: 2797 components: - type: Transform - pos: 2.5,-6.5 + rot: 3.141592653589793 rad + pos: -17.5,15.5 parent: 1668 - - uid: 157 + - uid: 2915 components: - type: Transform - pos: 6.5,-5.5 + pos: 1.5,21.5 parent: 1668 - - uid: 158 + - uid: 2917 components: - type: Transform - pos: 6.5,-4.5 + rot: -1.5707963267948966 rad + pos: 7.5,30.5 parent: 1668 - - uid: 159 + - uid: 2921 components: - type: Transform - pos: 8.5,-5.5 + pos: 11.5,5.5 parent: 1668 - - uid: 160 + - uid: 3189 components: - type: Transform - pos: 8.5,-4.5 + rot: -1.5707963267948966 rad + pos: -4.5,10.5 parent: 1668 - - uid: 186 + - uid: 3190 components: - type: Transform - pos: 16.5,3.5 + rot: 1.5707963267948966 rad + pos: -9.5,10.5 parent: 1668 - - uid: 189 + - uid: 3191 components: - type: Transform - pos: 17.5,-5.5 + rot: 3.141592653589793 rad + pos: -3.5,14.5 parent: 1668 - - uid: 191 + - uid: 3192 components: - type: Transform - pos: 9.5,-8.5 + rot: -1.5707963267948966 rad + pos: 1.5,9.5 parent: 1668 - - uid: 192 + - uid: 3197 components: - type: Transform - pos: 10.5,-8.5 + pos: 2.5,-14.5 parent: 1668 - - uid: 193 + - uid: 3306 components: - type: Transform - pos: 11.5,-8.5 + rot: -1.5707963267948966 rad + pos: -8.5,15.5 parent: 1668 - - uid: 194 + - uid: 3307 components: - type: Transform - pos: 12.5,-9.5 + rot: -1.5707963267948966 rad + pos: -3.5,20.5 parent: 1668 - - uid: 195 + - uid: 3495 components: - type: Transform - pos: 9.5,-10.5 + pos: -30.5,21.5 parent: 1668 - - uid: 196 + - uid: 3496 components: - type: Transform - pos: 10.5,-10.5 + pos: -30.5,27.5 parent: 1668 - - uid: 197 + - uid: 3533 components: - type: Transform - pos: 11.5,-10.5 + pos: -14.5,22.5 parent: 1668 - - uid: 198 + - uid: 3534 components: - type: Transform - pos: 13.5,-10.5 + pos: -26.5,17.5 parent: 1668 - - uid: 199 + - uid: 3535 components: - type: Transform - pos: 14.5,-10.5 + rot: 3.141592653589793 rad + pos: -26.5,29.5 parent: 1668 - - uid: 200 + - uid: 3537 components: - type: Transform - pos: 15.5,-10.5 + rot: -1.5707963267948966 rad + pos: -27.5,23.5 parent: 1668 - - uid: 201 + - uid: 3614 components: - type: Transform - pos: 15.5,-8.5 + rot: -1.5707963267948966 rad + pos: 17.5,5.5 parent: 1668 - - uid: 202 + - uid: 3668 components: - type: Transform - pos: 13.5,-8.5 + rot: 1.5707963267948966 rad + pos: -1.5,26.5 parent: 1668 - - uid: 203 + - uid: 3669 components: - type: Transform - pos: 14.5,-8.5 + rot: -1.5707963267948966 rad + pos: 8.5,26.5 parent: 1668 - - uid: 212 + - uid: 3909 components: - type: Transform - pos: 16.5,-9.5 + pos: 9.5,16.5 parent: 1668 - - uid: 223 + - uid: 3910 components: - type: Transform - pos: 15.5,2.5 + pos: 17.5,16.5 parent: 1668 - - uid: 224 + - uid: 4271 components: - type: Transform - pos: 13.5,2.5 + pos: 3.5,-33.5 parent: 1668 - - uid: 225 + - uid: 4272 components: - type: Transform - pos: 11.5,2.5 + pos: -4.5,-33.5 parent: 1668 - - uid: 238 + - uid: 4273 components: - type: Transform - pos: 7.5,-12.5 + rot: 3.141592653589793 rad + pos: -3.5,-31.5 parent: 1668 - - uid: 239 + - uid: 4274 components: - type: Transform - pos: 6.5,-13.5 + rot: 3.141592653589793 rad + pos: 2.5,-31.5 parent: 1668 - - uid: 240 + - uid: 4275 components: - type: Transform - pos: 7.5,-14.5 + rot: 3.141592653589793 rad + pos: 7.5,-31.5 parent: 1668 - - uid: 241 + - uid: 4276 components: - type: Transform - pos: 2.5,-13.5 + rot: 3.141592653589793 rad + pos: -8.5,-31.5 parent: 1668 - - uid: 242 + - uid: 4313 components: - type: Transform - pos: 2.5,-10.5 + pos: 2.5,-25.5 parent: 1668 - - uid: 245 + - uid: 4314 components: - type: Transform - pos: 17.5,6.5 + pos: -3.5,-25.5 parent: 1668 - - uid: 246 + - uid: 4315 components: - type: Transform - pos: 17.5,4.5 + pos: 14.5,-25.5 parent: 1668 - - uid: 278 + - uid: 4316 components: - type: Transform - pos: 3.5,8.5 + pos: -27.5,-25.5 parent: 1668 - - uid: 279 + - uid: 4782 components: - type: Transform - pos: 6.5,9.5 + rot: 3.141592653589793 rad + pos: -0.5,-49.5 parent: 1668 - - uid: 280 + - uid: 4783 components: - type: Transform - pos: 7.5,9.5 + rot: 3.141592653589793 rad + pos: -6.5,-49.5 parent: 1668 - - uid: 281 + - uid: 4784 components: - type: Transform - pos: 8.5,8.5 + rot: 3.141592653589793 rad + pos: 5.5,-49.5 parent: 1668 - - uid: 282 + - uid: 4789 components: - type: Transform - pos: 9.5,7.5 + pos: -11.5,-38.5 parent: 1668 - - uid: 283 + - uid: 4790 components: - type: Transform - pos: 10.5,7.5 + pos: 10.5,-38.5 parent: 1668 - - uid: 284 + - uid: 4791 components: - type: Transform - pos: 11.5,7.5 + rot: -1.5707963267948966 rad + pos: 6.5,-44.5 parent: 1668 - - uid: 285 + - uid: 4792 components: - type: Transform - pos: 13.5,7.5 + rot: -1.5707963267948966 rad + pos: 6.5,-37.5 parent: 1668 - - uid: 286 + - uid: 4793 components: - type: Transform - pos: 14.5,7.5 + rot: 1.5707963267948966 rad + pos: -7.5,-37.5 parent: 1668 - - uid: 287 + - uid: 4794 components: - type: Transform - pos: 12.5,8.5 + rot: 1.5707963267948966 rad + pos: -7.5,-44.5 parent: 1668 - - uid: 288 + - uid: 4801 components: - type: Transform - pos: 14.5,9.5 + pos: -11.5,-47.5 parent: 1668 - - uid: 289 + - uid: 4802 components: - type: Transform - pos: 13.5,9.5 + pos: 10.5,-47.5 parent: 1668 - - uid: 290 + - uid: 4804 components: - type: Transform - pos: 11.5,9.5 + rot: -1.5707963267948966 rad + pos: 19.5,-38.5 parent: 1668 - - uid: 291 + - uid: 4805 components: - type: Transform - pos: 10.5,9.5 + rot: 1.5707963267948966 rad + pos: -20.5,-43.5 parent: 1668 - - uid: 292 + - uid: 4806 components: - type: Transform - pos: 9.5,9.5 + rot: 1.5707963267948966 rad + pos: -20.5,-38.5 parent: 1668 - - uid: 304 + - uid: 4807 components: - type: Transform - pos: 15.5,-3.5 + rot: -1.5707963267948966 rad + pos: 19.5,-43.5 parent: 1668 - - uid: 305 + - uid: 4808 components: - type: Transform - pos: 13.5,-3.5 + rot: 3.141592653589793 rad + pos: 16.5,-46.5 parent: 1668 - - uid: 306 + - uid: 4809 components: - type: Transform - pos: 11.5,-3.5 + rot: 3.141592653589793 rad + pos: -17.5,-46.5 parent: 1668 - - uid: 311 + - uid: 4811 components: - type: Transform - pos: 0.5,-8.5 + pos: 17.5,-35.5 parent: 1668 - - uid: 312 + - uid: 4812 components: - type: Transform - pos: -1.5,-8.5 + pos: -18.5,-35.5 parent: 1668 - - uid: 313 + - uid: 4813 components: - type: Transform - pos: -1.5,-6.5 + rot: 1.5707963267948966 rad + pos: 12.5,-32.5 parent: 1668 - - uid: 314 + - uid: 4814 components: - type: Transform - pos: 0.5,-6.5 + rot: -1.5707963267948966 rad + pos: -13.5,-32.5 parent: 1668 - - uid: 341 + - uid: 4815 components: - type: Transform - pos: -6.5,-7.5 + pos: -18.5,-29.5 parent: 1668 - - uid: 342 + - uid: 4816 components: - type: Transform - pos: -4.5,-7.5 + pos: 17.5,-29.5 parent: 1668 - - uid: 343 + - uid: 5520 components: - type: Transform - pos: -3.5,-6.5 + rot: 3.141592653589793 rad + pos: -11.5,-22.5 parent: 1668 - - uid: 344 + - uid: 5718 components: - type: Transform - pos: -7.5,-5.5 + pos: -11.5,-25.5 parent: 1668 - - uid: 345 + - uid: 5719 components: - type: Transform - pos: -7.5,-4.5 + pos: -19.5,-25.5 parent: 1668 - - uid: 448 + - uid: 5875 components: - type: Transform - pos: 35.5,-6.5 + rot: 3.141592653589793 rad + pos: -3.5,-22.5 parent: 1668 - - uid: 449 + - uid: 5876 components: - type: Transform - pos: 35.5,-4.5 + rot: 3.141592653589793 rad + pos: -7.5,-22.5 parent: 1668 - - uid: 450 + - uid: 5877 components: - type: Transform - pos: 35.5,-2.5 + rot: 3.141592653589793 rad + pos: -27.5,-22.5 parent: 1668 - - uid: 451 + - uid: 5878 components: - type: Transform - pos: 35.5,1.5 + rot: 3.141592653589793 rad + pos: -15.5,-22.5 parent: 1668 - - uid: 452 + - uid: 5879 components: - type: Transform - pos: 35.5,3.5 + rot: 3.141592653589793 rad + pos: -19.5,-22.5 parent: 1668 - - uid: 453 + - uid: 5880 components: - type: Transform - pos: 35.5,5.5 + rot: 3.141592653589793 rad + pos: -23.5,-22.5 parent: 1668 - - uid: 454 + - uid: 5893 components: - type: Transform - pos: 21.5,-7.5 + pos: -23.5,-30.5 parent: 1668 - - uid: 455 + - uid: 5894 components: - type: Transform - pos: 23.5,-8.5 + pos: -27.5,-30.5 parent: 1668 - - uid: 456 + - uid: 5911 components: - type: Transform - pos: 29.5,-8.5 + pos: -16.5,1.5 parent: 1668 - - uid: 457 + - uid: 5912 components: - type: Transform - pos: 31.5,-7.5 + pos: -24.5,1.5 parent: 1668 - - uid: 458 + - uid: 5928 components: - type: Transform - pos: 31.5,6.5 + pos: -23.5,7.5 parent: 1668 - - uid: 459 + - uid: 5929 components: - type: Transform - pos: 28.5,7.5 + pos: -30.5,7.5 parent: 1668 - - uid: 460 + - uid: 6190 components: - type: Transform - pos: 24.5,7.5 + pos: 8.5,-14.5 parent: 1668 - - uid: 461 + - uid: 6212 components: - type: Transform - pos: 21.5,6.5 + rot: 3.141592653589793 rad + pos: 4.5,-23.5 parent: 1668 - - uid: 473 + - uid: 6677 components: - type: Transform - pos: 33.5,-6.5 + rot: 3.141592653589793 rad + pos: -29.5,-17.5 parent: 1668 - - uid: 474 + - uid: 6678 components: - type: Transform - pos: 33.5,-4.5 + rot: 3.141592653589793 rad + pos: -32.5,-17.5 parent: 1668 - - uid: 475 + - uid: 6679 components: - type: Transform - pos: 33.5,-2.5 + rot: 3.141592653589793 rad + pos: -35.5,-17.5 parent: 1668 - - uid: 476 + - uid: 6680 components: - type: Transform - pos: 34.5,-1.5 + rot: 3.141592653589793 rad + pos: -38.5,-17.5 parent: 1668 - - uid: 477 + - uid: 7095 components: - type: Transform - pos: 34.5,0.5 + rot: 1.5707963267948966 rad + pos: -45.5,-7.5 parent: 1668 - - uid: 478 + - uid: 7096 components: - type: Transform - pos: 33.5,1.5 + pos: -39.5,-4.5 parent: 1668 - - uid: 479 + - uid: 7097 components: - type: Transform - pos: 33.5,3.5 + rot: 3.141592653589793 rad + pos: -39.5,-10.5 parent: 1668 - - uid: 480 + - uid: 7098 components: - type: Transform - pos: 33.5,5.5 + pos: -29.5,1.5 parent: 1668 - - uid: 672 + - uid: 7101 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 + rot: -1.5707963267948966 rad + pos: -28.5,-9.5 parent: 1668 - - uid: 673 + - uid: 7102 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-0.5 + pos: -33.5,-5.5 parent: 1668 - - uid: 674 + - uid: 7103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 + pos: -40.5,1.5 parent: 1668 - - uid: 675 + - uid: 7182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,4.5 + pos: -46.5,1.5 parent: 1668 - - uid: 678 + - uid: 7334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,7.5 + rot: 3.141592653589793 rad + pos: -39.5,3.5 parent: 1668 - - uid: 679 + - uid: 7337 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,7.5 + pos: -38.5,11.5 parent: 1668 - - uid: 680 + - uid: 7460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,5.5 + rot: 3.141592653589793 rad + pos: -31.5,-22.5 parent: 1668 - - uid: 681 + - uid: 7461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,5.5 + rot: 3.141592653589793 rad + pos: -35.5,-22.5 parent: 1668 - - uid: 702 + - uid: 7462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,6.5 + rot: 3.141592653589793 rad + pos: -39.5,-22.5 parent: 1668 - - uid: 703 + - uid: 7463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,6.5 + pos: -39.5,-30.5 parent: 1668 - - uid: 704 + - uid: 7464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,8.5 + pos: -35.5,-30.5 parent: 1668 - - uid: 725 + - uid: 7465 components: - type: Transform - pos: 3.5,14.5 + pos: -31.5,-30.5 parent: 1668 - - uid: 742 + - uid: 7487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-10.5 + pos: -35.5,-25.5 parent: 1668 - - uid: 743 + - uid: 8778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-13.5 + rot: 1.5707963267948966 rad + pos: -2.5,-10.5 parent: 1668 - - uid: 765 + - uid: 8779 components: - type: Transform - pos: -7.5,-9.5 + rot: 1.5707963267948966 rad + pos: -2.5,-16.5 parent: 1668 - - uid: 766 +- proto: PoweredlightBlue + entities: + - uid: 1249 components: - type: Transform - pos: -8.5,-10.5 + pos: 24.5,-15.5 parent: 1668 - - uid: 767 + - uid: 1252 components: - type: Transform - pos: -8.5,-12.5 + pos: 32.5,-15.5 parent: 1668 - - uid: 768 + - uid: 6081 components: - type: Transform - pos: -7.5,-13.5 + rot: 3.141592653589793 rad + pos: -17.5,-17.5 parent: 1668 - - uid: 769 + - uid: 6087 components: - type: Transform - pos: -8.5,-14.5 + rot: 3.141592653589793 rad + pos: -8.5,-17.5 parent: 1668 - - uid: 782 + - uid: 6110 components: - type: Transform - pos: 1.5,-14.5 + rot: 3.141592653589793 rad + pos: -20.5,-17.5 parent: 1668 - - uid: 783 +- proto: PoweredlightCyan + entities: + - uid: 1250 components: - type: Transform - pos: 0.5,-14.5 + rot: 3.141592653589793 rad + pos: 29.5,-27.5 parent: 1668 - - uid: 784 + - uid: 1255 components: - type: Transform - pos: -1.5,-14.5 + rot: 3.141592653589793 rad + pos: 23.5,-27.5 parent: 1668 - - uid: 785 + - uid: 9133 components: - type: Transform - pos: -2.5,-14.5 + rot: 1.5707963267948966 rad + pos: 19.5,-31.5 parent: 1668 - - uid: 845 +- proto: PoweredlightExterior + entities: + - uid: 3892 components: - type: Transform - pos: 8.5,-16.5 + rot: 3.141592653589793 rad + pos: -3.5,34.5 parent: 1668 - - uid: 846 +- proto: PoweredlightGreen + entities: + - uid: 6086 components: - type: Transform - pos: 9.5,-17.5 + rot: 3.141592653589793 rad + pos: -11.5,-17.5 parent: 1668 - - uid: 847 +- proto: PoweredlightLED + entities: + - uid: 6157 components: - type: Transform - pos: 10.5,-17.5 + rot: 1.5707963267948966 rad + pos: -26.5,-11.5 parent: 1668 - - uid: 848 + - uid: 6158 components: - type: Transform - pos: 11.5,-16.5 + rot: -1.5707963267948966 rad + pos: -17.5,-11.5 parent: 1668 - - uid: 849 +- proto: PoweredlightOrange + entities: + - uid: 4663 components: - type: Transform - pos: -4.5,11.5 + rot: 3.141592653589793 rad + pos: -23.5,-17.5 parent: 1668 - - uid: 850 +- proto: PoweredlightRed + entities: + - uid: 2445 components: - type: Transform - pos: -3.5,17.5 + rot: -1.5707963267948966 rad + pos: 16.5,32.5 parent: 1668 - - uid: 853 + - uid: 2446 components: - type: Transform - pos: 3.5,16.5 + rot: 1.5707963267948966 rad + pos: 10.5,32.5 parent: 1668 - - uid: 855 + - uid: 6079 components: - type: Transform - pos: 2.5,17.5 + rot: 3.141592653589793 rad + pos: -17.5,-17.5 parent: 1668 - - uid: 1424 +- proto: PoweredlightSodium + entities: + - uid: 6082 components: - type: Transform - pos: -10.5,32.5 + rot: 3.141592653589793 rad + pos: -14.5,-17.5 parent: 1668 - - uid: 1425 +- proto: PoweredSmallLight + entities: + - uid: 207 components: - type: Transform - pos: 6.5,-8.5 + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 parent: 1668 - - uid: 1467 + - uid: 547 components: - type: Transform - pos: 16.5,-4.5 + pos: 34.5,5.5 parent: 1668 - - uid: 1488 + - uid: 548 components: - type: Transform - pos: 3.5,12.5 + rot: 3.141592653589793 rad + pos: 34.5,-6.5 parent: 1668 - - uid: 1489 + - uid: 1092 components: - type: Transform - pos: 3.5,10.5 + rot: 1.5707963267948966 rad + pos: 12.5,-22.5 parent: 1668 - - uid: 1513 + - uid: 1156 components: - type: Transform - pos: -13.5,18.5 + rot: -1.5707963267948966 rad + pos: 34.5,-11.5 parent: 1668 - - uid: 1514 + - uid: 2441 components: - type: Transform - pos: -12.5,18.5 + rot: 1.5707963267948966 rad + pos: 10.5,27.5 parent: 1668 - - uid: 1515 + - uid: 2442 components: - type: Transform - pos: -16.5,17.5 + rot: -1.5707963267948966 rad + pos: 16.5,23.5 parent: 1668 - - uid: 1516 + - uid: 2443 components: - type: Transform - pos: -16.5,18.5 + rot: 1.5707963267948966 rad + pos: 10.5,23.5 parent: 1668 - - uid: 1517 + - uid: 2444 components: - type: Transform - pos: -15.5,18.5 + rot: -1.5707963267948966 rad + pos: 16.5,27.5 parent: 1668 - - uid: 1594 + - uid: 2463 components: - type: Transform - pos: -14.5,20.5 + rot: 3.141592653589793 rad + pos: -16.5,5.5 parent: 1668 - - uid: 1595 + - uid: 2634 components: - type: Transform - pos: -14.5,21.5 + rot: -1.5707963267948966 rad + pos: -9.5,6.5 parent: 1668 - - uid: 1596 + - uid: 2715 components: - type: Transform - pos: -14.5,22.5 + rot: -1.5707963267948966 rad + pos: 19.5,19.5 parent: 1668 - - uid: 1597 + - uid: 2927 components: - type: Transform - pos: -14.5,23.5 + rot: -1.5707963267948966 rad + pos: -15.5,11.5 parent: 1668 - - uid: 1598 + - uid: 2929 components: - type: Transform - pos: -15.5,23.5 + rot: 3.141592653589793 rad + pos: -23.5,9.5 parent: 1668 - - uid: 1599 + - uid: 2930 components: - type: Transform - pos: -16.5,23.5 + pos: -23.5,13.5 parent: 1668 - - uid: 1600 + - uid: 3359 components: - type: Transform - pos: -16.5,26.5 + rot: 1.5707963267948966 rad + pos: -7.5,25.5 parent: 1668 - - uid: 1601 + - uid: 3360 components: - type: Transform - pos: -15.5,26.5 + rot: -1.5707963267948966 rad + pos: -9.5,25.5 parent: 1668 - - uid: 1602 + - uid: 3664 components: - type: Transform - pos: -14.5,26.5 + rot: -1.5707963267948966 rad + pos: 7.5,35.5 parent: 1668 - - uid: 1603 + - uid: 3665 components: - type: Transform - pos: -16.5,29.5 + rot: 1.5707963267948966 rad + pos: -0.5,35.5 parent: 1668 - - uid: 1604 + - uid: 3903 components: - type: Transform - pos: -15.5,29.5 + rot: 1.5707963267948966 rad + pos: -2.5,29.5 parent: 1668 - - uid: 1605 + - uid: 4022 components: - type: Transform - pos: -14.5,29.5 + rot: -1.5707963267948966 rad + pos: 19.5,23.5 parent: 1668 - - uid: 1606 + - uid: 4023 components: - type: Transform - pos: -14.5,30.5 + rot: 1.5707963267948966 rad + pos: 21.5,26.5 parent: 1668 - - uid: 1667 + - uid: 4084 components: - type: Transform - pos: -8.5,32.5 + pos: -16.5,27.5 parent: 1668 - - uid: 1669 + - uid: 4664 components: - type: Transform - pos: -6.5,32.5 + rot: 3.141592653589793 rad + pos: -26.5,-17.5 parent: 1668 - - uid: 1670 + - uid: 4785 components: - type: Transform - pos: -12.5,32.5 + rot: 1.5707963267948966 rad + pos: 8.5,-45.5 parent: 1668 - - uid: 2002 + - uid: 4786 components: - type: Transform - pos: 5.5,10.5 + rot: 1.5707963267948966 rad + pos: 8.5,-36.5 parent: 1668 - - uid: 2003 + - uid: 4788 components: - type: Transform - pos: 5.5,12.5 + rot: -1.5707963267948966 rad + pos: -9.5,-45.5 parent: 1668 - - uid: 2004 + - uid: 4798 components: - type: Transform - pos: 5.5,14.5 + pos: -15.5,-38.5 parent: 1668 - - uid: 2246 + - uid: 4799 components: - type: Transform - pos: 15.5,14.5 + rot: -1.5707963267948966 rad + pos: -9.5,-36.5 parent: 1668 - - uid: 2247 + - uid: 4838 components: - type: Transform - pos: 15.5,12.5 + pos: 18.5,-48.5 parent: 1668 - - uid: 2248 + - uid: 4839 components: - type: Transform - pos: 15.5,10.5 + pos: -19.5,-48.5 parent: 1668 - - uid: 2284 + - uid: 7184 components: - type: Transform - pos: 23.5,14.5 + pos: -53.5,1.5 parent: 1668 - - uid: 2285 + - uid: 7234 components: - type: Transform - pos: 25.5,14.5 + rot: -1.5707963267948966 rad + pos: -47.5,-6.5 parent: 1668 - - uid: 2286 + - uid: 7235 components: - type: Transform - pos: 26.5,14.5 + rot: 1.5707963267948966 rad + pos: -51.5,5.5 parent: 1668 - - uid: 2287 + - uid: 7236 components: - type: Transform - pos: 27.5,14.5 + rot: 1.5707963267948966 rad + pos: -45.5,5.5 parent: 1668 - - uid: 2288 + - uid: 7335 components: - type: Transform - pos: 29.5,14.5 + pos: -30.5,13.5 parent: 1668 - - uid: 2289 + - uid: 7336 components: - type: Transform - pos: 30.5,14.5 + rot: 3.141592653589793 rad + pos: -30.5,9.5 parent: 1668 - - uid: 2290 + - uid: 8820 components: - type: Transform - pos: 31.5,14.5 + pos: -13.5,-6.5 parent: 1668 - - uid: 2291 + - uid: 8821 components: - type: Transform - pos: 33.5,14.5 + pos: -10.5,-6.5 parent: 1668 - - uid: 2346 +- proto: PoweredWarmSmallLight + entities: + - uid: 1280 components: - type: Transform - pos: 24.5,15.5 + rot: 1.5707963267948966 rad + pos: 32.5,-21.5 parent: 1668 - - uid: 2347 + - uid: 2100 components: - type: Transform - pos: 24.5,16.5 + pos: 34.5,12.5 parent: 1668 - - uid: 2348 + - uid: 2923 components: - type: Transform - pos: 24.5,17.5 + rot: 1.5707963267948966 rad + pos: 25.5,11.5 parent: 1668 - - uid: 2349 + - uid: 2926 components: - type: Transform - pos: 24.5,19.5 + rot: 1.5707963267948966 rad + pos: -13.5,11.5 parent: 1668 - - uid: 2510 + - uid: 3908 components: - type: Transform - pos: 10.5,16.5 + rot: -1.5707963267948966 rad + pos: 8.5,21.5 parent: 1668 - - uid: 2511 + - uid: 6172 components: - type: Transform - pos: 10.5,17.5 + rot: 3.141592653589793 rad + pos: -22.5,-8.5 parent: 1668 - - uid: 2512 + - uid: 8819 components: - type: Transform - pos: 10.5,18.5 + pos: -6.5,-8.5 parent: 1668 - - uid: 2513 +- proto: Protolathe + entities: + - uid: 3273 components: - type: Transform - pos: 8.5,16.5 + pos: -5.5,20.5 parent: 1668 - - uid: 2546 +- proto: Rack + entities: + - uid: 2162 components: - type: Transform - pos: 8.5,20.5 + pos: 12.5,20.5 parent: 1668 - - uid: 2557 + - uid: 2169 components: - type: Transform - pos: 14.5,21.5 + pos: 14.5,20.5 parent: 1668 - - uid: 2754 + - uid: 2294 components: - type: Transform - pos: 4.5,24.5 + rot: 1.5707963267948966 rad + pos: -12.5,-45.5 parent: 1668 - - uid: 2756 + - uid: 2408 components: - type: Transform - pos: 7.5,21.5 + pos: 14.5,34.5 parent: 1668 - - uid: 2758 + - uid: 2409 components: - type: Transform - pos: 7.5,22.5 + pos: 13.5,34.5 parent: 1668 - - uid: 2772 + - uid: 2410 components: - type: Transform - pos: 14.5,24.5 + pos: 12.5,34.5 parent: 1668 - - uid: 2792 + - uid: 2609 components: - type: Transform - pos: 13.5,30.5 + pos: 13.5,-21.5 parent: 1668 - - uid: 2808 + - uid: 2648 components: - type: Transform - pos: 8.5,26.5 + pos: 13.5,32.5 parent: 1668 - - uid: 2809 + - uid: 3163 components: - type: Transform - pos: 7.5,26.5 + pos: -5.5,7.5 parent: 1668 - - uid: 2810 + - uid: 3164 components: - type: Transform - pos: 7.5,27.5 + pos: -6.5,7.5 parent: 1668 - - uid: 2811 + - uid: 3165 components: - type: Transform - pos: 7.5,29.5 + pos: -7.5,7.5 parent: 1668 - - uid: 2815 + - uid: 3185 components: - type: Transform - pos: 6.5,30.5 + pos: -7.5,12.5 parent: 1668 - - uid: 2816 + - uid: 4017 components: - type: Transform - pos: 11.5,29.5 + pos: 6.5,22.5 parent: 1668 - - uid: 2817 + - uid: 4089 components: - type: Transform - pos: 11.5,27.5 + pos: -19.5,25.5 parent: 1668 - - uid: 2818 + - uid: 4096 components: - type: Transform - pos: 11.5,26.5 + pos: -8.5,20.5 parent: 1668 - - uid: 2819 + - uid: 4097 components: - type: Transform - pos: 10.5,26.5 + pos: -7.5,20.5 parent: 1668 - - uid: 2860 + - uid: 4222 components: - type: Transform - pos: 4.5,27.5 + rot: 1.5707963267948966 rad + pos: 12.5,-45.5 parent: 1668 - - uid: 2861 + - uid: 4343 components: - type: Transform - pos: 14.5,27.5 + rot: 1.5707963267948966 rad + pos: -9.5,-45.5 parent: 1668 - - uid: 2880 + - uid: 4344 components: - type: Transform - pos: 12.5,30.5 + rot: 1.5707963267948966 rad + pos: -11.5,-45.5 parent: 1668 - - uid: 2887 + - uid: 4352 components: - type: Transform - pos: 5.5,30.5 + rot: 1.5707963267948966 rad + pos: 10.5,-45.5 parent: 1668 - - uid: 2907 + - uid: 4355 components: - type: Transform - pos: 7.5,7.5 + rot: 1.5707963267948966 rad + pos: 11.5,-45.5 parent: 1668 - - uid: 3134 + - uid: 4356 components: - type: Transform - pos: 6.5,7.5 + rot: 1.5707963267948966 rad + pos: 8.5,-45.5 parent: 1668 - - uid: 3141 + - uid: 4378 components: - type: Transform - pos: 9.5,-15.5 + rot: 1.5707963267948966 rad + pos: -13.5,-45.5 parent: 1668 - - uid: 3247 + - uid: 4380 components: - type: Transform - pos: 10.5,-15.5 + rot: 1.5707963267948966 rad + pos: 9.5,-45.5 parent: 1668 - - uid: 3387 + - uid: 4389 components: - type: Transform - pos: -26.5,-0.5 + rot: 1.5707963267948966 rad + pos: -10.5,-45.5 parent: 1668 - - uid: 3388 + - uid: 4650 components: - type: Transform - pos: -28.5,-0.5 + pos: 23.5,-12.5 parent: 1668 - - uid: 3389 +- proto: RadioImplanterCentcomm + entities: + - uid: 1385 components: - type: Transform - pos: -27.5,11.5 + pos: 11.548664,-10.594937 parent: 1668 - - uid: 3390 + - uid: 2474 components: - type: Transform - pos: -27.5,12.5 - parent: 1668 - - uid: 3391 + parent: 2464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2494 components: - type: Transform - pos: -27.5,8.5 - parent: 1668 - - uid: 3392 + parent: 2480 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2510 components: - type: Transform - pos: -27.5,9.5 - parent: 1668 - - uid: 3436 + parent: 2496 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2520 components: - type: Transform - pos: -13.5,2.5 - parent: 1668 - - uid: 3437 + parent: 2512 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Railing + entities: + - uid: 3037 components: - type: Transform - pos: -10.5,1.5 + rot: 1.5707963267948966 rad + pos: 7.5,7.5 parent: 1668 - - uid: 3438 + - uid: 3670 components: - type: Transform - pos: -11.5,1.5 + rot: 1.5707963267948966 rad + pos: 7.5,8.5 parent: 1668 - - uid: 3439 +- proto: RandomDrinkBottle + entities: + - uid: 6199 components: - type: Transform - pos: -12.5,1.5 + pos: 10.5,-36.5 parent: 1668 - - uid: 3440 +- proto: RandomDrinkGlass + entities: + - uid: 6200 components: - type: Transform - pos: -14.5,1.5 + pos: 7.5,-34.5 parent: 1668 - - uid: 3441 + - uid: 6201 components: - type: Transform - pos: -15.5,1.5 + pos: 7.5,-35.5 parent: 1668 - - uid: 3442 + - uid: 6202 components: - type: Transform - pos: -16.5,1.5 + pos: 7.5,-33.5 parent: 1668 - - uid: 3936 + - uid: 6206 components: - type: Transform - pos: -30.5,7.5 + pos: 7.5,-29.5 parent: 1668 - - uid: 3937 + - uid: 6207 components: - type: Transform - pos: -32.5,7.5 + pos: 8.5,-29.5 parent: 1668 - - uid: 3938 +- proto: RandomFoodBakedWhole + entities: + - uid: 6198 components: - type: Transform - pos: -33.5,7.5 + pos: -8.5,-34.5 parent: 1668 - - uid: 3943 +- proto: RandomFoodMeal + entities: + - uid: 6196 components: - type: Transform - pos: -34.5,6.5 + pos: -8.5,-33.5 parent: 1668 - - uid: 3944 + - uid: 6197 components: - type: Transform - pos: -34.5,5.5 + pos: -8.5,-35.5 parent: 1668 - - uid: 3945 +- proto: RCDExperimental + entities: + - uid: 4045 components: - type: Transform - pos: -34.5,4.5 + pos: -17.5,18.5 parent: 1668 - - uid: 3946 +- proto: RCDRecharging + entities: + - uid: 6771 components: - type: Transform - pos: -34.5,3.5 - parent: 1668 - - uid: 3979 + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6797 components: - type: Transform - pos: -32.5,-0.5 - parent: 1668 - - uid: 3980 + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Recycler + entities: + - uid: 8745 components: - type: Transform - pos: -33.5,-0.5 + rot: -1.5707963267948966 rad + pos: -4.5,-10.5 parent: 1668 - - uid: 3981 +- proto: RegenerativeMesh + entities: + - uid: 6854 components: - type: Transform - pos: -34.5,-0.5 - parent: 1668 - - uid: 3982 + parent: 6846 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6873 components: - type: Transform - pos: -34.5,-2.5 - parent: 1668 - - uid: 3983 + parent: 6865 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6886 components: - type: Transform - pos: -32.5,-2.5 - parent: 1668 - - uid: 3984 + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9198 components: - type: Transform - pos: -32.5,1.5 + pos: 16.595364,-4.485551 parent: 1668 - - uid: 3985 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 2145 components: - type: Transform - pos: -34.5,1.5 + pos: 11.5,21.5 parent: 1668 - - uid: 4201 + - uid: 2147 components: - type: Transform - pos: 15.5,8.5 + pos: 15.5,21.5 parent: 1668 - - uid: 4226 + - uid: 2151 components: - type: Transform - pos: -9.5,-16.5 + pos: 10.5,21.5 parent: 1668 - - uid: 4227 + - uid: 2153 components: - type: Transform - pos: -10.5,-17.5 + pos: 16.5,21.5 parent: 1668 - - uid: 4228 +- proto: ReinforcedWindow + entities: + - uid: 50 components: - type: Transform - pos: -11.5,-17.5 + pos: 1.5,-3.5 parent: 1668 - - uid: 4229 + - uid: 51 components: - type: Transform - pos: -12.5,-16.5 + pos: 2.5,-3.5 parent: 1668 - - uid: 4264 + - uid: 52 components: - type: Transform - pos: 0.5,-20.5 + pos: 3.5,-2.5 parent: 1668 - - uid: 4317 + - uid: 54 components: - type: Transform - pos: -4.5,-23.5 + pos: 3.5,-0.5 parent: 1668 - - uid: 4318 + - uid: 55 components: - type: Transform - pos: -4.5,-22.5 + pos: 3.5,1.5 parent: 1668 - - uid: 4319 + - uid: 56 components: - type: Transform - pos: -4.5,-21.5 + pos: 3.5,2.5 parent: 1668 - - uid: 4320 + - uid: 57 components: - type: Transform - pos: -2.5,-23.5 + pos: 2.5,2.5 parent: 1668 - - uid: 4321 + - uid: 58 components: - type: Transform - pos: -2.5,-22.5 + pos: 0.5,2.5 parent: 1668 - - uid: 4322 + - uid: 59 components: - type: Transform - pos: -2.5,-21.5 + pos: -1.5,2.5 parent: 1668 - - uid: 4323 + - uid: 60 components: - type: Transform - pos: 3.5,-23.5 + pos: -0.5,2.5 parent: 1668 - - uid: 4324 + - uid: 61 components: - type: Transform - pos: 3.5,-22.5 + pos: -3.5,2.5 parent: 1668 - - uid: 4325 + - uid: 62 components: - type: Transform - pos: 3.5,-21.5 + pos: -4.5,2.5 parent: 1668 - - uid: 4326 + - uid: 63 components: - type: Transform - pos: 1.5,-23.5 + pos: -4.5,1.5 parent: 1668 - - uid: 4327 + - uid: 64 components: - type: Transform - pos: 1.5,-22.5 + pos: -4.5,-0.5 parent: 1668 - - uid: 4328 + - uid: 65 components: - type: Transform - pos: 1.5,-21.5 + pos: -4.5,-1.5 parent: 1668 - - uid: 4366 + - uid: 66 components: - type: Transform - pos: 4.5,-30.5 + pos: -4.5,-2.5 parent: 1668 - - uid: 4602 + - uid: 67 components: - type: Transform - pos: 6.5,-30.5 + pos: -3.5,-3.5 parent: 1668 - - uid: 4671 + - uid: 68 components: - type: Transform - pos: -1.5,-34.5 + pos: -2.5,-3.5 parent: 1668 - - uid: 4672 + - uid: 86 components: - type: Transform - pos: -0.5,-34.5 + pos: 24.5,7.5 parent: 1668 - - uid: 4673 + - uid: 143 components: - type: Transform - pos: 0.5,-34.5 + pos: -0.5,-3.5 parent: 1668 - - uid: 4750 + - uid: 145 components: - type: Transform - pos: 15.5,-22.5 + pos: 28.5,7.5 parent: 1668 - - uid: 4751 + - uid: 162 components: - type: Transform - pos: 17.5,-22.5 + pos: 1.5,-7.5 parent: 1668 - - uid: 5025 + - uid: 169 components: - type: Transform - pos: 19.5,-23.5 + pos: -2.5,6.5 parent: 1668 - - uid: 5064 + - uid: 170 components: - type: Transform - pos: 20.5,-23.5 + pos: 16.5,-3.5 parent: 1668 - - uid: 5065 + - uid: 171 components: - type: Transform - pos: 21.5,-23.5 + pos: 12.5,2.5 parent: 1668 - - uid: 5079 + - uid: 174 components: - type: Transform - pos: 20.5,6.5 + pos: 14.5,-3.5 parent: 1668 - - uid: 5114 + - uid: 175 components: - type: Transform - pos: 28.5,-25.5 + pos: 14.5,2.5 parent: 1668 - - uid: 5115 + - uid: 176 components: - type: Transform - pos: 28.5,-24.5 + pos: -8.5,1.5 parent: 1668 - - uid: 5116 + - uid: 177 components: - type: Transform - pos: 28.5,-23.5 + pos: -8.5,-2.5 parent: 1668 - - uid: 5117 + - uid: 179 components: - type: Transform - pos: 28.5,-22.5 + pos: 1.5,6.5 parent: 1668 - - uid: 5118 + - uid: 180 components: - type: Transform - pos: 28.5,-21.5 + pos: 7.5,4.5 parent: 1668 - - uid: 5169 + - uid: 181 components: - type: Transform - pos: 31.5,-19.5 + pos: -2.5,-7.5 parent: 1668 - - uid: 5170 + - uid: 189 components: - type: Transform - pos: 33.5,-19.5 + pos: 12.5,-3.5 parent: 1668 - - uid: 5320 + - uid: 192 components: - type: Transform - pos: -1.5,-24.5 + pos: 16.5,2.5 parent: 1668 - - uid: 5412 + - uid: 348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-32.5 + pos: 21.5,6.5 parent: 1668 - - uid: 5781 + - uid: 355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-30.5 + pos: 31.5,6.5 parent: 1668 - - uid: 5782 + - uid: 366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-30.5 + pos: 4.5,6.5 parent: 1668 - - uid: 5783 + - uid: 367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-30.5 + pos: 5.5,6.5 parent: 1668 - - uid: 5922 + - uid: 394 components: - type: Transform - pos: -20.5,-33.5 + pos: 6.5,6.5 parent: 1668 - - uid: 5923 + - uid: 478 components: - type: Transform - pos: -20.5,-32.5 + pos: 18.5,-2.5 parent: 1668 - - uid: 5924 + - uid: 479 components: - type: Transform - pos: -20.5,-31.5 + pos: 18.5,1.5 parent: 1668 - - uid: 5925 + - uid: 480 components: - type: Transform - pos: -18.5,-34.5 + pos: 7.5,-2.5 parent: 1668 - - uid: 5926 + - uid: 481 components: - type: Transform - pos: -17.5,-34.5 + pos: 7.5,1.5 parent: 1668 - - uid: 5927 + - uid: 594 components: - type: Transform - pos: -19.5,-34.5 + pos: 7.5,-6.5 parent: 1668 - - uid: 5949 + - uid: 595 components: - type: Transform - pos: -15.5,-25.5 + pos: 7.5,-5.5 parent: 1668 - - uid: 5950 + - uid: 596 components: - type: Transform - pos: -17.5,-25.5 + pos: 7.5,-4.5 parent: 1668 - - uid: 5983 + - uid: 712 components: - type: Transform - pos: -21.5,-27.5 + pos: 22.5,-7.5 parent: 1668 - - uid: 5984 + - uid: 719 components: - type: Transform - pos: -23.5,-27.5 + pos: 21.5,-7.5 parent: 1668 - - uid: 5985 + - uid: 720 components: - type: Transform - pos: -23.5,-25.5 + pos: 20.5,-7.5 parent: 1668 - - uid: 5986 + - uid: 921 components: - type: Transform - pos: -22.5,-25.5 + pos: 28.5,-12.5 parent: 1668 - - uid: 5987 + - uid: 922 components: - type: Transform - pos: -21.5,-25.5 + pos: 28.5,-11.5 parent: 1668 - - uid: 5988 + - uid: 923 components: - type: Transform - pos: -21.5,-23.5 + pos: 28.5,-10.5 parent: 1668 - - uid: 5989 + - uid: 924 components: - type: Transform - pos: -23.5,-23.5 + pos: 28.5,-9.5 parent: 1668 - - uid: 5993 + - uid: 925 components: - type: Transform - pos: -18.5,-21.5 + pos: 27.5,-7.5 parent: 1668 - - uid: 5994 + - uid: 926 components: - type: Transform - pos: -19.5,-21.5 + pos: 26.5,-7.5 parent: 1668 - - uid: 5995 + - uid: 927 components: - type: Transform - pos: -20.5,-21.5 + pos: 25.5,-7.5 parent: 1668 - - uid: 6160 + - uid: 928 components: - type: Transform - pos: -2.5,-33.5 + pos: 24.5,-9.5 parent: 1668 - - uid: 6161 + - uid: 929 components: - type: Transform - pos: -2.5,-32.5 + pos: 24.5,-10.5 parent: 1668 - - uid: 6162 + - uid: 930 components: - type: Transform - pos: -2.5,-31.5 + pos: 24.5,-11.5 parent: 1668 - - uid: 6163 + - uid: 931 components: - type: Transform - pos: 1.5,-33.5 + pos: 24.5,-12.5 parent: 1668 - - uid: 6164 + - uid: 932 components: - type: Transform - pos: 1.5,-32.5 + pos: 27.5,-14.5 parent: 1668 - - uid: 6165 + - uid: 933 components: - type: Transform - pos: 1.5,-31.5 + pos: 26.5,-14.5 parent: 1668 - - uid: 6280 + - uid: 934 components: - type: Transform - pos: -0.5,-38.5 + pos: 25.5,-14.5 parent: 1668 - - uid: 6281 + - uid: 1106 components: - type: Transform - pos: -0.5,-40.5 + pos: 35.5,-26.5 parent: 1668 - - uid: 6301 + - uid: 1162 components: - type: Transform - pos: -2.5,-46.5 + pos: 35.5,-16.5 parent: 1668 - - uid: 6302 + - uid: 1198 components: - type: Transform - pos: -2.5,-44.5 + pos: 26.5,-28.5 parent: 1668 - - uid: 6303 + - uid: 1199 components: - type: Transform - pos: -0.5,-46.5 + pos: 27.5,-28.5 parent: 1668 - - uid: 6304 + - uid: 1205 components: - type: Transform - pos: -0.5,-45.5 + pos: 25.5,-28.5 parent: 1668 - - uid: 6305 + - uid: 1254 components: - type: Transform - pos: -0.5,-44.5 + pos: 35.5,-21.5 parent: 1668 - - uid: 6306 + - uid: 1316 components: - type: Transform - pos: 1.5,-46.5 + pos: 35.5,-22.5 parent: 1668 - - uid: 6307 + - uid: 1352 components: - type: Transform - pos: 1.5,-44.5 + pos: 33.5,-28.5 parent: 1668 - - uid: 6505 + - uid: 1353 components: - type: Transform - pos: 7.5,-8.5 + pos: 32.5,-28.5 parent: 1668 - - uid: 6575 + - uid: 1354 components: - type: Transform - pos: -5.5,-30.5 + pos: 31.5,-28.5 parent: 1668 - - uid: 6576 + - uid: 1365 components: - type: Transform - pos: -7.5,-30.5 + pos: 35.5,-20.5 parent: 1668 - - uid: 6768 + - uid: 1521 components: - type: Transform - pos: -1.5,-20.5 + pos: 2.5,7.5 parent: 1668 - - uid: 6769 + - uid: 1524 components: - type: Transform - pos: 0.5,-24.5 + pos: 6.5,9.5 parent: 1668 - - uid: 6779 + - uid: 1526 components: - type: Transform - pos: 5.5,6.5 + pos: 5.5,9.5 parent: 1668 - - uid: 6986 + - uid: 1537 components: - type: Transform - pos: 22.5,6.5 + pos: 4.5,9.5 parent: 1668 - - uid: 6992 + - uid: 1538 components: - type: Transform - pos: 30.5,6.5 + pos: 3.5,9.5 parent: 1668 - - uid: 6993 + - uid: 1539 components: - type: Transform - pos: 32.5,6.5 + pos: 2.5,8.5 parent: 1668 -- proto: GroundTobacco - entities: - - uid: 3755 + - uid: 1550 components: - type: Transform - pos: -18.558027,8.843213 + pos: 22.5,9.5 parent: 1668 - - uid: 3756 + - uid: 1554 components: - type: Transform - pos: -18.370527,8.827588 + pos: 2.5,10.5 parent: 1668 -- proto: GunSafeShotgunKammerer - entities: - - uid: 6526 + - uid: 1555 components: - type: Transform - pos: 10.5,30.5 + pos: 2.5,11.5 parent: 1668 -- proto: GunSafeSubMachineGunDrozd - entities: - - uid: 2923 + - uid: 1556 components: - type: Transform - pos: 8.5,30.5 + pos: 2.5,12.5 parent: 1668 -- proto: Handcuffs - entities: - - uid: 3751 + - uid: 1557 components: - type: Transform - pos: -25.604141,8.625723 + pos: 23.5,9.5 parent: 1668 -- proto: HandLabeler - entities: - - uid: 2228 + - uid: 1558 components: - type: Transform - pos: -14.611721,14.56378 + pos: 19.5,9.5 parent: 1668 - - uid: 2229 + - uid: 1559 components: - type: Transform - pos: -9.361721,12.50128 + pos: 18.5,11.5 parent: 1668 - - uid: 2240 + - uid: 1560 components: - type: Transform - pos: -3.4985683,16.513187 + pos: 21.5,9.5 parent: 1668 -- proto: HighSecArmoryLocked - entities: - - uid: 2553 + - uid: 1561 components: - type: Transform - pos: 9.5,20.5 + pos: 20.5,9.5 parent: 1668 - - uid: 2784 + - uid: 1562 components: - type: Transform - pos: 7.5,28.5 + pos: 20.5,13.5 parent: 1668 - - uid: 2785 + - uid: 1572 components: - type: Transform - pos: 11.5,28.5 + pos: 22.5,13.5 parent: 1668 -- proto: HighSecCentralCommandLocked - entities: - - uid: 3791 + - uid: 1575 components: - type: Transform - pos: -13.5,5.5 + pos: 7.5,9.5 parent: 1668 - - uid: 3794 + - uid: 1576 components: - type: Transform - pos: -4.5,0.5 + pos: 8.5,11.5 parent: 1668 - - uid: 3795 + - uid: 1577 components: - type: Transform - pos: 3.5,0.5 + pos: 6.5,13.5 parent: 1668 - - uid: 3863 + - uid: 1578 components: - type: Transform - pos: 2.5,-42.5 + pos: 4.5,13.5 parent: 1668 - - uid: 3864 + - uid: 1608 components: - type: Transform - pos: -3.5,-42.5 + pos: 17.5,13.5 parent: 1668 -- proto: HighSecCommandLocked - entities: - - uid: 123 + - uid: 1609 components: - type: Transform - pos: 32.5,-14.5 + pos: 15.5,13.5 parent: 1668 - - uid: 3885 + - uid: 1610 components: - type: Transform - pos: -22.5,-2.5 + pos: 11.5,13.5 parent: 1668 - - uid: 3902 + - uid: 1611 components: - type: Transform - pos: -20.5,-2.5 + pos: 9.5,13.5 parent: 1668 -- proto: HighSecDoor - entities: - - uid: 565 + - uid: 1737 components: - type: Transform - pos: 18.5,-6.5 + pos: 23.5,-30.5 parent: 1668 - - uid: 5932 + - uid: 1738 components: - type: Transform - pos: -15.5,-32.5 + pos: 23.5,-33.5 parent: 1668 -- proto: HospitalCurtainsOpen - entities: - - uid: 3422 + - uid: 1739 components: - type: Transform - pos: -20.5,15.5 + pos: 23.5,-29.5 parent: 1668 -- proto: JanitorialTrolley - entities: - - uid: 2881 + - uid: 1769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-31.5 + pos: 35.5,10.5 parent: 1668 -- proto: JawsOfLife - entities: - - uid: 4261 + - uid: 1770 components: - type: Transform - pos: 21.501507,-22.363987 + pos: 35.5,12.5 parent: 1668 -- proto: KitchenMicrowave - entities: - - uid: 2226 + - uid: 1771 components: - type: Transform - pos: -15.5,17.5 + pos: 35.5,11.5 parent: 1668 - - uid: 4585 + - uid: 1862 components: - type: Transform - pos: -11.5,-24.5 + pos: 22.5,23.5 parent: 1668 - - uid: 4589 + - uid: 1863 components: - type: Transform - pos: -11.5,-28.5 + pos: 30.5,23.5 parent: 1668 -- proto: KitchenReagentGrinder - entities: - - uid: 2922 + - uid: 1912 components: - type: Transform - pos: 3.5,-9.5 + pos: 32.5,23.5 parent: 1668 - - uid: 4590 + - uid: 1913 components: - type: Transform - pos: -11.5,-25.5 + pos: 33.5,17.5 parent: 1668 - - uid: 4591 + - uid: 1917 components: - type: Transform - pos: -9.5,-28.5 + pos: 32.5,19.5 parent: 1668 -- proto: KitchenSpike - entities: - - uid: 4581 + - uid: 2137 components: - type: Transform - pos: -7.5,-21.5 + pos: 11.5,17.5 parent: 1668 -- proto: KnifePlastic - entities: - - uid: 3726 + - uid: 2139 components: - type: Transform - pos: 0.9231305,-25.45219 + pos: 10.5,17.5 parent: 1668 - - uid: 4253 + - uid: 2140 components: - type: Transform - pos: 0.9231305,-25.45219 + pos: 15.5,17.5 parent: 1668 - - uid: 5214 + - uid: 2143 components: - type: Transform - pos: 0.9231305,-25.45219 + pos: 16.5,17.5 parent: 1668 -- proto: Lamp - entities: - - uid: 1442 + - uid: 2295 components: - type: Transform - pos: -0.93100256,1.9752237 + pos: -3.5,-45.5 parent: 1668 - - uid: 2829 + - uid: 2296 components: - type: Transform - pos: 5.496662,21.877665 + pos: -1.5,-45.5 parent: 1668 - - uid: 3626 + - uid: 2298 components: - type: Transform - pos: -20.472635,6.7337127 + pos: -4.5,-45.5 parent: 1668 - - uid: 3627 + - uid: 2322 components: - type: Transform - pos: -20.48826,12.764963 + pos: -6.5,-36.5 parent: 1668 -- proto: LampGold - entities: - - uid: 3628 + - uid: 2323 components: - type: Transform - pos: -16.37576,12.926986 + pos: -7.5,-36.5 parent: 1668 -- proto: LargeBeaker - entities: - - uid: 5066 + - uid: 2343 components: - type: Transform - pos: -10.010703,-28.243814 + pos: -6.5,-30.5 parent: 1668 -- proto: Lighter - entities: - - uid: 3754 + - uid: 2353 components: - type: Transform - pos: -18.379215,8.381029 + pos: 6.5,-36.5 parent: 1668 -- proto: LockableButtonCentcomm - entities: - - uid: 3149 + - uid: 2354 components: - type: Transform - pos: 14.5,32.5 + pos: 5.5,-36.5 parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 4476: - - Pressed: Toggle - 6492: - - Pressed: Toggle - 6397: - - Pressed: Toggle - 3431: - - Pressed: Toggle - - uid: 4477 + - uid: 2355 components: - type: Transform - pos: 4.5,32.5 + pos: 4.5,-36.5 parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 2946: - - Pressed: Toggle - 5058: - - Pressed: Toggle - 6314: - - Pressed: Toggle - 3420: - - Pressed: Toggle -- proto: LockableButtonCommand - entities: - - uid: 4475 + - uid: 2356 components: - type: Transform - pos: -16.5,-4.5 + pos: 3.5,-36.5 parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 3789: - - Pressed: Toggle - 3788: - - Pressed: Toggle - 3787: - - Pressed: Toggle -- proto: LockerAtmosphericsFilledHardsuit - entities: - - uid: 3790 + - uid: 2357 components: - type: Transform - pos: 15.5,-29.5 + pos: 2.5,-36.5 parent: 1668 -- proto: LockerBoozeFilled - entities: - - uid: 4417 + - uid: 2440 components: - type: Transform - pos: 10.5,-28.5 + pos: 1.5,-36.5 parent: 1668 -- proto: LockerChemistryFilled - entities: - - uid: 3986 + - uid: 2456 components: - type: Transform - pos: 5.5,-13.5 + pos: 0.5,-36.5 parent: 1668 -- proto: LockerChiefEngineerFilled - entities: - - uid: 6491 + - uid: 2457 components: - type: Transform - pos: -14.5,-3.5 + pos: -0.5,-36.5 parent: 1668 -- proto: LockerChiefMedicalOfficerFilled - entities: - - uid: 6495 + - uid: 2458 components: - type: Transform - pos: -14.5,-9.5 + pos: -1.5,-36.5 parent: 1668 -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 1178 + - uid: 2459 components: - type: Transform - pos: 15.5,-15.5 + pos: -2.5,-36.5 parent: 1668 - - uid: 2039 + - uid: 2460 components: - type: Transform - pos: 2.5,21.5 + pos: -3.5,-36.5 parent: 1668 - - uid: 5322 + - uid: 2461 components: - type: Transform - pos: 27.5,-13.5 + pos: -4.5,-36.5 parent: 1668 -- proto: LockerEngineerFilledHardsuit - entities: - - uid: 3796 + - uid: 2462 components: - type: Transform - pos: 23.5,-23.5 + pos: -5.5,-36.5 parent: 1668 - - uid: 5252 + - uid: 2531 components: - type: Transform - pos: 23.5,-22.5 + pos: 3.5,34.5 parent: 1668 -- proto: LockerEvidence - entities: - - uid: 3148 + - uid: 2583 components: - type: Transform - pos: 8.5,25.5 + pos: 3.5,35.5 parent: 1668 -- proto: LockerFreezer - entities: - - uid: 5458 + - uid: 2632 components: - type: Transform - pos: -8.5,-21.5 + pos: 6.5,36.5 parent: 1668 - - 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: - - 5459 - - 5460 - - 5461 - - 5462 - - 5848 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 327 + - uid: 2703 components: - type: Transform - pos: -10.5,-5.5 + pos: -13.5,-3.5 parent: 1668 -- proto: LockerHeadOfSecurityFilled - entities: - - uid: 3153 + - uid: 2704 components: - type: Transform - pos: -11.5,-9.5 + pos: -14.5,-3.5 parent: 1668 -- proto: LockerQuarterMasterFilled - entities: - - uid: 5080 + - uid: 2705 components: - type: Transform - pos: -10.5,-7.5 + pos: -15.5,-3.5 parent: 1668 -- proto: LockerResearchDirectorFilled - entities: - - uid: 6494 + - uid: 2706 components: - type: Transform pos: -11.5,-3.5 parent: 1668 -- proto: LockerSalvageSpecialistFilledHardsuit - entities: - - uid: 3987 + - uid: 2707 components: - type: Transform - pos: -8.5,19.5 + pos: -10.5,-3.5 parent: 1668 -- proto: LockerSecurityFilled - entities: - - uid: 511 + - uid: 2708 components: - type: Transform - pos: 19.5,-10.5 + pos: -9.5,-3.5 parent: 1668 - - uid: 512 + - uid: 2709 components: - type: Transform - pos: 22.5,-10.5 + pos: -9.5,2.5 parent: 1668 - - uid: 815 + - uid: 2710 components: - type: Transform - pos: -6.5,-10.5 + pos: -10.5,2.5 parent: 1668 -- proto: LockerWallMedicalDoctorFilled - entities: - - uid: 6775 + - uid: 2711 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-15.5 + pos: -11.5,2.5 parent: 1668 -- proto: LockerWallMedicalFilled - entities: - - uid: 2013 + - uid: 2712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-7.5 + pos: -13.5,2.5 parent: 1668 -- proto: LockerWardenFilled - entities: - uid: 2713 components: - type: Transform - pos: 6.5,17.5 + pos: -14.5,2.5 parent: 1668 -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 129 + - uid: 2714 components: - type: Transform - pos: -26.5,2.5 + pos: -15.5,2.5 parent: 1668 - - uid: 2040 + - uid: 2754 components: - type: Transform - pos: 0.5,19.5 + pos: -19.5,16.5 parent: 1668 - - uid: 5319 + - uid: 2755 components: - type: Transform - pos: 28.5,-13.5 + pos: -19.5,15.5 parent: 1668 -- proto: MachineCentrifuge - entities: - - uid: 1426 + - uid: 2779 components: - type: Transform - pos: 5.5,-9.5 + pos: -24.5,9.5 parent: 1668 -- proto: MachineElectrolysisUnit - entities: - - uid: 6506 + - uid: 2780 components: - type: Transform - pos: 6.5,-9.5 + pos: -24.5,10.5 parent: 1668 -- proto: MagazinePistolSubMachineGunTopMounted - entities: - - uid: 3896 + - uid: 2781 components: - type: Transform - pos: -13.453807,-3.1600308 + pos: -24.5,12.5 parent: 1668 -- proto: MaterialBiomass - entities: - - uid: 2495 + - uid: 2782 components: - type: Transform - pos: 13.210049,-12.580112 + pos: -24.5,13.5 parent: 1668 -- proto: MedalCase - entities: - - uid: 6922 + - uid: 2897 components: - type: Transform - pos: -18.47654,4.596927 + pos: -20.5,8.5 parent: 1668 -- proto: MedicalBed - entities: - - uid: 612 + - uid: 2898 components: - type: Transform - pos: 13.5,-7.5 + pos: -22.5,8.5 parent: 1668 - - uid: 1195 + - uid: 2933 components: - type: Transform - pos: 13.5,-14.5 + pos: 23.5,-32.5 parent: 1668 - - uid: 1196 + - uid: 2981 components: - type: Transform - pos: 13.5,-13.5 + pos: 23.5,-34.5 parent: 1668 -- proto: MedicalScanner - entities: - - uid: 723 + - uid: 2982 components: - type: Transform - pos: 9.5,-14.5 + pos: 23.5,-31.5 parent: 1668 -- proto: MedicalTechFab - entities: - - uid: 616 + - uid: 2988 components: - type: Transform - pos: 9.5,-7.5 + pos: -0.5,22.5 parent: 1668 -- proto: MedkitAdvancedFilled - entities: - - uid: 6610 + - uid: 2998 components: - type: Transform - pos: 14.536912,-7.5898757 + rot: 3.141592653589793 rad + pos: 4.5,17.5 parent: 1668 -- proto: MedkitBruteFilled - entities: - - uid: 622 + - uid: 3000 components: - type: Transform - pos: 14.703841,-7.3571634 + rot: 3.141592653589793 rad + pos: 2.5,17.5 parent: 1668 -- proto: MedkitBurnFilled - entities: - - uid: 621 + - uid: 3002 components: - type: Transform - pos: 14.594466,-7.4821634 + pos: -4.5,13.5 parent: 1668 -- proto: MedkitFilled - entities: - - uid: 1454 + - uid: 3004 components: - type: Transform - pos: 15.537778,-2.524952 + pos: -6.5,13.5 parent: 1668 - - uid: 3897 + - uid: 3182 components: - type: Transform - pos: -13.438182,-5.5085163 + pos: 4.5,22.5 parent: 1668 -- proto: MedkitOxygenFilled - entities: - - uid: 625 + - uid: 3184 components: - type: Transform - pos: 15.547591,-7.3884134 + pos: -8.5,-4.5 parent: 1668 -- proto: MedkitRadiationFilled - entities: - - uid: 623 + - uid: 3234 components: - type: Transform - pos: 15.266341,-7.6071634 + pos: -8.5,3.5 parent: 1668 -- proto: MedkitToxinFilled - entities: - - uid: 624 + - uid: 3286 components: - type: Transform - pos: 15.406966,-7.4977884 + pos: -12.5,23.5 parent: 1668 -- proto: Mirror - entities: - - uid: 3426 + - uid: 3293 components: - type: Transform - pos: -19.5,14.5 + pos: -4.5,23.5 parent: 1668 - - uid: 6845 + - uid: 3295 components: - type: Transform - pos: -4.5,-14.5 + pos: -6.5,23.5 parent: 1668 -- proto: MopItem - entities: - - uid: 6230 + - uid: 3297 components: - type: Transform - pos: -17.485325,-31.461966 + pos: -10.5,23.5 parent: 1668 -- proto: NetworkConfigurator - entities: - - uid: 1461 + - uid: 3366 components: - type: Transform - pos: 13.484868,-12.584605 + pos: -25.5,28.5 parent: 1668 -- proto: NitrogenCanister - entities: - - uid: 5413 + - uid: 3369 components: - type: Transform - pos: 25.5,-28.5 + pos: -26.5,27.5 parent: 1668 -- proto: NTFlag - entities: - - uid: 1190 + - uid: 3370 components: - type: Transform - pos: 15.5,7.5 + pos: -26.5,22.5 parent: 1668 - - uid: 2143 + - uid: 3372 components: - type: Transform - pos: -5.5,-38.5 + pos: -26.5,20.5 parent: 1668 - - uid: 2249 + - uid: 3373 components: - type: Transform - pos: 4.5,-38.5 + pos: -26.5,21.5 parent: 1668 -- proto: NTHandyFlag - entities: - - uid: 1187 + - uid: 3374 components: - type: Transform - pos: 31.51589,5.5499916 + pos: -26.5,25.5 parent: 1668 -- proto: Omnitool - entities: - - uid: 4393 + - uid: 3376 components: - type: Transform - pos: 24.630873,-13.468605 + pos: -26.5,23.5 parent: 1668 -- proto: OperatingTable - entities: - - uid: 610 + - uid: 3377 components: - type: Transform - pos: 9.5,-5.5 + pos: -26.5,24.5 parent: 1668 -- proto: OreProcessorIndustrial - entities: - - uid: 6978 + - uid: 3378 components: - type: Transform - pos: -5.5,29.5 + pos: -28.5,20.5 parent: 1668 -- proto: OxygenCanister - entities: - - uid: 5415 + - uid: 3380 components: - type: Transform - pos: 19.5,-28.5 + pos: -24.5,28.5 parent: 1668 - - uid: 6719 + - uid: 3382 components: - type: Transform - pos: 12.5,-7.5 + pos: -26.5,26.5 parent: 1668 -- proto: OxygenTankFilled - entities: - - uid: 3901 + - uid: 3392 components: - type: Transform - pos: -12.625682,-7.0710163 + pos: -28.5,26.5 parent: 1668 -- proto: PaintingAmogusTriptych - entities: - - uid: 3766 + - uid: 3393 components: - type: Transform - pos: -21.5,7.5 + pos: -28.5,27.5 parent: 1668 - - uid: 6942 + - uid: 3394 components: - type: Transform - pos: -14.5,7.5 + pos: -28.5,25.5 parent: 1668 -- proto: PaintingHelloWorld - entities: - - uid: 3767 + - uid: 3399 components: - type: Transform - pos: -17.5,3.5 + pos: -28.5,21.5 parent: 1668 -- proto: PaintingNightHawks - entities: - - uid: 3779 + - uid: 3408 components: - type: Transform - pos: -25.5,4.5 + pos: -23.5,18.5 parent: 1668 -- proto: PaintingSadClown - entities: - - uid: 6943 + - uid: 3410 components: - type: Transform - pos: -16.5,7.5 + pos: -24.5,18.5 parent: 1668 -- proto: PaintingSaturn - entities: - - uid: 3776 + - uid: 3415 components: - type: Transform - pos: -9.5,5.5 + pos: -25.5,18.5 parent: 1668 -- proto: PaintingTheGreatWave - entities: - - uid: 3743 + - uid: 3425 components: - type: Transform - pos: -20.5,13.5 + pos: -28.5,19.5 parent: 1668 -- proto: PaintingTheSonOfMan - entities: - - uid: 3744 + - uid: 3440 components: - type: Transform - pos: -17.5,9.5 + pos: -26.5,19.5 parent: 1668 -- proto: Paper - entities: - - uid: 2915 + - uid: 3602 components: - type: Transform - pos: 0.536467,0.64872134 + pos: 33.5,9.5 parent: 1668 - - uid: 2916 + - uid: 3603 components: - type: Transform - pos: 0.44271702,0.72684634 + pos: 32.5,9.5 parent: 1668 - - uid: 2919 + - uid: 3604 components: - type: Transform - pos: 0.645842,0.55497134 + pos: 31.5,9.5 parent: 1668 -- proto: PaperBin10 - entities: - - uid: 6630 + - uid: 3605 components: - type: Transform - pos: -3.5,-2.5 + pos: 30.5,9.5 parent: 1668 -- proto: ParchisBoard - entities: - - uid: 3764 + - uid: 3606 components: - type: Transform - pos: -23.482897,2.599884 + pos: 29.5,9.5 parent: 1668 -- proto: PenCentcom - entities: - - uid: 2905 + - uid: 3615 components: - type: Transform - pos: -20.468134,12.0128975 + pos: 7.5,36.5 parent: 1668 - - uid: 2924 + - uid: 3616 components: - type: Transform - pos: 0.16146702,1.3987213 + pos: 0.5,36.5 parent: 1668 - - uid: 6600 + - uid: 3617 components: - type: Transform - pos: -1.4166579,1.6018463 + pos: -0.5,36.5 parent: 1668 -- proto: PercentileDie - entities: - - uid: 3765 + - uid: 3626 components: - type: Transform - pos: -18.522638,2.6762333 + pos: 6.5,33.5 parent: 1668 -- proto: PhoneInstrument - entities: - - uid: 2464 + - uid: 3627 components: - type: Transform - pos: 29.471363,23.660753 + pos: 7.5,33.5 parent: 1668 - - uid: 3742 + - uid: 3628 components: - type: Transform - pos: -19.555511,10.655831 + pos: 0.5,33.5 parent: 1668 - - uid: 3876 + - uid: 3629 components: - type: Transform - pos: -26.67884,-3.3787808 + pos: -0.5,33.5 parent: 1668 -- proto: PianoInstrument - entities: - - uid: 4474 + - uid: 3667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-29.5 + pos: -6.5,17.5 parent: 1668 -- proto: PlaqueAtmos - entities: - - uid: 4383 + - uid: 3882 components: - type: Transform - pos: 2.5,-24.5 + pos: -2.5,33.5 parent: 1668 - - uid: 6646 + - uid: 3883 components: - type: Transform - pos: 17.5,-28.5 + pos: -3.5,30.5 parent: 1668 -- proto: PlasmaReinforcedWindowDirectional - entities: - - uid: 5934 + - uid: 3997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-28.5 + rot: 3.141592653589793 rad + pos: -2.5,13.5 parent: 1668 - - uid: 6004 + - uid: 4001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-29.5 + rot: 3.141592653589793 rad + pos: 1.5,13.5 parent: 1668 - - uid: 6103 + - uid: 4058 components: - type: Transform - pos: 24.5,-29.5 + pos: -6.5,-29.5 parent: 1668 - - uid: 6180 + - uid: 4066 components: - type: Transform - pos: 25.5,-29.5 + pos: 1.5,-45.5 parent: 1668 - - uid: 6181 + - uid: 4076 components: - type: Transform - pos: 19.5,-29.5 + pos: -5.5,-28.5 parent: 1668 - - uid: 6231 + - uid: 4102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-29.5 + pos: -24.5,30.5 parent: 1668 - - uid: 6232 + - uid: 4104 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-28.5 + pos: -24.5,29.5 parent: 1668 - - uid: 6277 + - uid: 4106 components: - type: Transform - pos: 20.5,-29.5 + pos: -24.5,31.5 parent: 1668 -- proto: PlasmaWindoorSecureSecurityLocked - entities: - - uid: 5410 + - uid: 4108 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,22.5 + pos: -23.5,31.5 parent: 1668 - - uid: 5411 + - uid: 4109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,25.5 + pos: -22.5,31.5 parent: 1668 - - uid: 5416 + - uid: 4110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,28.5 + pos: -21.5,31.5 parent: 1668 - - uid: 5417 + - uid: 4111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,25.5 + pos: -20.5,31.5 parent: 1668 - - uid: 5423 + - uid: 4112 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,28.5 + pos: -19.5,31.5 parent: 1668 -- proto: PlasticFlapsAirtightClear - entities: - - uid: 1590 + - uid: 4113 components: - type: Transform - pos: -16.5,24.5 + pos: -19.5,30.5 parent: 1668 - - uid: 1591 + - uid: 4114 components: - type: Transform - pos: -14.5,24.5 + pos: -19.5,29.5 parent: 1668 - - uid: 1592 + - uid: 4126 components: - type: Transform - pos: -16.5,28.5 + pos: 1.5,-29.5 parent: 1668 - - uid: 1593 + - uid: 4127 components: - type: Transform - pos: -14.5,28.5 + pos: 1.5,-30.5 parent: 1668 - - uid: 1623 + - uid: 4128 components: - type: Transform - pos: -4.5,15.5 + pos: 1.5,-31.5 parent: 1668 -- proto: PlushieAtmosian - entities: - - uid: 6890 + - uid: 4129 components: - type: Transform - pos: 17.549469,-29.409344 + pos: 3.5,-31.5 parent: 1668 -- proto: PortableScrubber - entities: - - uid: 3696 + - uid: 4130 components: - type: Transform - pos: -14.5,4.5 + pos: 3.5,-30.5 parent: 1668 - - uid: 5764 + - uid: 4131 components: - type: Transform - pos: 16.5,-31.5 + pos: 3.5,-29.5 parent: 1668 - - uid: 5765 + - uid: 4132 components: - type: Transform - pos: 17.5,-31.5 + pos: -2.5,-29.5 parent: 1668 -- proto: PosterContrabandBeachStarYamamoto - entities: - - uid: 6638 + - uid: 4133 components: - - type: MetaData - desc: A picture depicting a woman at the beach. Neat. - name: Beach Star Bratton! - type: Transform - pos: 15.5,33.5 + pos: -2.5,-30.5 parent: 1668 -- proto: PosterContrabandC20r - entities: - - uid: 6734 + - uid: 4134 components: - type: Transform - pos: 9.5,33.5 + pos: -2.5,-31.5 parent: 1668 -- proto: PosterContrabandEAT - entities: - - uid: 6737 + - uid: 4135 components: - type: Transform - pos: -12.5,-26.5 + pos: -4.5,-31.5 parent: 1668 -- proto: PosterContrabandHighEffectEngineering - entities: - - uid: 4576 + - uid: 4136 components: - type: Transform - pos: 22.5,-20.5 + pos: -4.5,-30.5 parent: 1668 -- proto: PosterContrabandMissingGloves - entities: - - uid: 6945 + - uid: 4137 components: - type: Transform - pos: 14.5,-21.5 + pos: -4.5,-29.5 parent: 1668 -- proto: PosterContrabandRedRum - entities: - - uid: 6918 + - uid: 4138 components: - type: Transform - pos: -4.5,25.5 + pos: 5.5,-30.5 parent: 1668 -- proto: PosterContrabandRobustSoftdrinks - entities: - - uid: 6958 + - uid: 4139 components: - type: Transform - pos: -7.5,-14.5 + pos: 5.5,-29.5 parent: 1668 -- proto: PosterContrabandSpaceUp - entities: - - uid: 6746 + - uid: 4140 components: - type: Transform - pos: 29.5,-7.5 + pos: -6.5,-31.5 parent: 1668 -- proto: PosterContrabandTools - entities: - - uid: 6731 + - uid: 4142 components: - type: Transform - pos: 22.5,-21.5 + pos: 4.5,-28.5 parent: 1668 -- proto: PosterContrabandUnreadableAnnouncement - entities: - - uid: 6917 + - uid: 4153 components: - type: Transform - pos: -8.5,18.5 + pos: 5.5,-31.5 parent: 1668 -- proto: PosterContrabandVoteWeh - entities: - - uid: 6745 + - uid: 4300 components: - type: Transform - pos: 29.5,6.5 + pos: 1.5,-24.5 parent: 1668 -- proto: PosterLegitAnatomyPoster - entities: - - uid: 6733 + - uid: 4307 components: - type: Transform - pos: 8.5,-6.5 + pos: -2.5,-24.5 parent: 1668 -- proto: PosterLegitCarpMount - entities: - - uid: 6740 + - uid: 4345 components: - type: Transform - pos: 8.5,33.5 + pos: 0.5,-45.5 parent: 1668 - - uid: 6915 + - uid: 4346 components: - type: Transform - pos: -9.5,7.5 + pos: 2.5,-45.5 parent: 1668 -- proto: PosterLegitCleanliness - entities: - - uid: 6735 + - uid: 4347 components: - type: Transform - pos: -15.5,-31.5 + pos: -0.5,-45.5 parent: 1668 - - uid: 6736 + - uid: 4348 components: - type: Transform - pos: -9.5,-20.5 + pos: 3.5,-45.5 parent: 1668 -- proto: PosterLegitCohibaRobustoAd - entities: - - uid: 6732 + - uid: 4349 components: - type: Transform - pos: 11.5,-24.5 + pos: 4.5,-45.5 parent: 1668 -- proto: PosterLegitEnlist - entities: - - uid: 6633 + - uid: 4358 components: - type: Transform - pos: 6.5,16.5 + pos: -7.5,-45.5 parent: 1668 - - uid: 6639 + - uid: 4359 components: - type: Transform - pos: 3.5,33.5 + pos: -6.5,-45.5 parent: 1668 -- proto: PosterLegitHelpOthers - entities: - - uid: 6738 + - uid: 4361 components: - type: Transform - pos: 11.5,-27.5 + pos: 3.5,-50.5 parent: 1668 -- proto: PosterLegitHereForYourSafety - entities: - - uid: 6959 + - uid: 4366 components: - type: Transform - pos: 5.5,-19.5 + pos: 1.5,-50.5 parent: 1668 -- proto: PosterLegitHighClassMartini - entities: - - uid: 6739 + - uid: 4367 components: - type: Transform - pos: 8.5,-20.5 + pos: -5.5,-45.5 parent: 1668 -- proto: PosterLegitJustAWeekAway - entities: - - uid: 6741 + - uid: 4373 components: - type: Transform - pos: 33.5,-0.5 + pos: 4.5,-50.5 parent: 1668 -- proto: PosterLegitLoveIan - entities: - - uid: 6957 + - uid: 4375 components: - type: Transform - pos: -6.5,-16.5 + pos: 0.5,-50.5 parent: 1668 - - uid: 6960 + - uid: 4392 components: - type: Transform - pos: -14.5,-2.5 + pos: 5.5,-45.5 parent: 1668 -- proto: PosterLegitNanomichiAd - entities: - - uid: 3778 + - uid: 4398 components: - type: Transform - pos: -25.5,6.5 + pos: 6.5,-45.5 parent: 1668 -- proto: PosterLegitNanotrasenLogo - entities: - - uid: 469 + - uid: 4401 components: - type: Transform - pos: -24.5,13.5 + pos: -2.5,-45.5 parent: 1668 - - uid: 797 + - uid: 4402 components: - type: Transform - pos: -2.5,-8.5 + pos: -1.5,-50.5 parent: 1668 - - uid: 798 + - uid: 4403 components: - type: Transform - pos: -2.5,-6.5 + pos: -2.5,-50.5 parent: 1668 - - uid: 799 + - uid: 4404 components: - type: Transform - pos: 1.5,-6.5 + pos: -4.5,-50.5 parent: 1668 - - uid: 800 + - uid: 4405 components: - type: Transform - pos: 1.5,-8.5 + pos: -5.5,-50.5 parent: 1668 - - uid: 801 + - uid: 4455 components: - type: Transform - pos: 3.5,-3.5 + pos: 10.5,-49.5 parent: 1668 - - uid: 802 + - uid: 4456 components: - type: Transform - pos: -4.5,-3.5 + pos: 9.5,-49.5 parent: 1668 - - uid: 1464 + - uid: 4457 components: - type: Transform - pos: 14.5,30.5 + pos: 11.5,-49.5 parent: 1668 - - uid: 1861 + - uid: 4468 components: - type: Transform - pos: -2.5,5.5 + pos: 18.5,-45.5 parent: 1668 - - uid: 2053 + - uid: 4472 components: - type: Transform - pos: 1.5,5.5 + pos: 19.5,-42.5 parent: 1668 - - uid: 2054 + - uid: 4473 components: - type: Transform - pos: -2.5,7.5 + pos: 19.5,-44.5 parent: 1668 - - uid: 2055 + - uid: 4477 components: - type: Transform - pos: 1.5,7.5 + pos: 18.5,-41.5 parent: 1668 - - uid: 2454 + - uid: 4478 components: - type: Transform - pos: 21.5,10.5 + pos: 18.5,-40.5 parent: 1668 - - uid: 2455 + - uid: 4480 components: - type: Transform - pos: 21.5,13.5 + pos: 18.5,-46.5 parent: 1668 - - uid: 2456 + - uid: 4496 components: - type: Transform - pos: 28.5,24.5 + pos: -11.5,-49.5 parent: 1668 - - uid: 2457 + - uid: 4497 components: - type: Transform - pos: 30.5,24.5 + pos: -10.5,-49.5 parent: 1668 - - uid: 2458 + - uid: 4498 components: - type: Transform - pos: 26.5,24.5 + pos: -12.5,-49.5 parent: 1668 - - uid: 2459 + - uid: 4509 components: - type: Transform - pos: 34.5,20.5 + pos: -19.5,-45.5 parent: 1668 - - uid: 2460 + - uid: 4510 components: - type: Transform - pos: 22.5,20.5 + pos: -19.5,-46.5 parent: 1668 - - uid: 2918 + - uid: 4514 components: - type: Transform - pos: -19.5,13.5 + pos: -19.5,-40.5 parent: 1668 - - uid: 3450 + - uid: 4515 components: - type: Transform - pos: -13.5,1.5 + pos: -19.5,-41.5 parent: 1668 - - uid: 3603 + - uid: 4519 components: - type: Transform - pos: -11.5,7.5 + pos: -19.5,-35.5 parent: 1668 - - uid: 3604 + - uid: 4520 components: - type: Transform - pos: -15.5,7.5 + pos: -19.5,-36.5 parent: 1668 - - uid: 3605 + - uid: 4579 components: - type: Transform - pos: -11.5,-2.5 + pos: 19.5,-39.5 parent: 1668 - - uid: 3606 + - uid: 4580 components: - type: Transform - pos: -17.5,-2.5 + pos: 19.5,-37.5 parent: 1668 - - uid: 3777 + - uid: 4581 components: - type: Transform - pos: -25.5,2.5 + pos: 18.5,-36.5 parent: 1668 - - uid: 3867 + - uid: 4582 components: - type: Transform - pos: -25.5,-2.5 + pos: 18.5,-35.5 parent: 1668 - - uid: 4395 + - uid: 4583 components: - type: Transform - pos: 1.5,-24.5 + pos: -20.5,-44.5 parent: 1668 - - uid: 4635 + - uid: 4584 components: - type: Transform - pos: -3.5,-14.5 + pos: -20.5,-42.5 parent: 1668 - - uid: 4636 + - uid: 4585 components: - type: Transform - pos: 2.5,-14.5 + pos: -20.5,-39.5 parent: 1668 - - uid: 6446 + - uid: 4586 components: - type: Transform - pos: 1.5,-38.5 + pos: -20.5,-37.5 parent: 1668 - - uid: 6447 + - uid: 4680 components: - type: Transform - pos: -3.5,-40.5 + pos: -14.5,-38.5 parent: 1668 - - uid: 6448 + - uid: 4682 components: - type: Transform - pos: 2.5,-40.5 + pos: -14.5,-41.5 parent: 1668 - - uid: 6557 + - uid: 4689 components: - type: Transform - pos: -17.5,-23.5 + pos: -14.5,-39.5 parent: 1668 - - uid: 6558 + - uid: 4690 components: - type: Transform - pos: -15.5,-27.5 + pos: -14.5,-40.5 parent: 1668 - - uid: 6559 + - uid: 4691 components: - type: Transform - pos: 1.5,-30.5 + pos: -14.5,-42.5 parent: 1668 - - uid: 6560 + - uid: 4692 components: - type: Transform - pos: -2.5,-30.5 + pos: -14.5,-43.5 parent: 1668 - - uid: 6613 + - uid: 4693 components: - type: Transform - pos: 4.5,30.5 + pos: 13.5,-43.5 parent: 1668 - - uid: 6632 + - uid: 4694 components: - type: Transform - pos: 13.5,16.5 + pos: 13.5,-42.5 parent: 1668 - - uid: 6721 + - uid: 4700 components: - type: Transform - pos: 16.5,1.5 + pos: 13.5,-41.5 parent: 1668 - - uid: 6722 + - uid: 4701 components: - type: Transform - pos: 8.5,-2.5 + pos: 13.5,-40.5 parent: 1668 - - uid: 6882 + - uid: 4702 components: - type: Transform - pos: -2.5,-20.5 + pos: 13.5,-39.5 parent: 1668 -- proto: PosterLegitNTTGC - entities: - - uid: 6884 + - uid: 4703 components: - type: Transform - pos: 18.5,17.5 + pos: 13.5,-38.5 parent: 1668 -- proto: PosterLegitPeriodicTable - entities: - - uid: 6913 + - uid: 5321 components: - type: Transform - pos: 5.5,-14.5 + pos: 30.5,6.5 parent: 1668 -- proto: PosterLegitRenault - entities: - - uid: 6962 + - uid: 5386 components: - type: Transform - pos: -9.5,-6.5 + pos: 22.5,6.5 parent: 1668 -- proto: PosterLegitReportCrimes - entities: - - uid: 6743 + - uid: 5391 components: - type: Transform - pos: -19.5,1.5 + pos: 20.5,6.5 parent: 1668 -- proto: PosterLegitSafetyEyeProtection - entities: - - uid: 6914 + - uid: 5397 components: - type: Transform - pos: 5.5,-8.5 + pos: 32.5,6.5 parent: 1668 -- proto: PosterLegitSafetyMothDelam - entities: - - uid: 6912 + - uid: 5554 components: - type: Transform - pos: 23.5,-12.5 + pos: -4.5,-24.5 parent: 1668 -- proto: PosterLegitSafetyMothEpi - entities: - - uid: 6910 + - uid: 5555 components: - type: Transform - pos: 12.5,-8.5 + pos: -6.5,-24.5 parent: 1668 -- proto: PosterLegitSafetyMothHardhat - entities: - - uid: 6911 + - uid: 5556 components: - type: Transform - pos: 14.5,-20.5 + pos: -8.5,-24.5 parent: 1668 -- proto: PosterLegitSafetyMothMeth - entities: - - uid: 6909 + - uid: 5557 components: - type: Transform - pos: 6.5,-12.5 + pos: -10.5,-24.5 parent: 1668 -- proto: PosterLegitSafetyMothPiping - entities: - - uid: 6887 + - uid: 5558 components: - type: Transform - pos: 14.5,-31.5 + pos: -12.5,-24.5 parent: 1668 -- proto: PosterLegitSafetyReport - entities: - - uid: 6747 + - uid: 5559 components: - type: Transform - pos: 23.5,-7.5 + pos: -14.5,-24.5 parent: 1668 -- proto: PosterLegitSecWatch - entities: - - uid: 6781 + - uid: 5560 components: - type: Transform - pos: 26.5,-12.5 + pos: -16.5,-24.5 parent: 1668 -- proto: PosterLegitUeNo - entities: - - uid: 6744 + - uid: 5561 components: - type: Transform - pos: 23.5,6.5 + pos: -18.5,-24.5 parent: 1668 -- proto: PosterLegitVacation - entities: - - uid: 6885 + - uid: 5615 components: - type: Transform - pos: 8.5,9.5 + pos: -20.5,-28.5 parent: 1668 - - uid: 6886 + - uid: 5616 components: - type: Transform - pos: 18.5,-4.5 + pos: -22.5,-28.5 parent: 1668 - - uid: 6919 + - uid: 5617 components: - type: Transform - pos: -4.5,28.5 + pos: -24.5,-28.5 parent: 1668 - - uid: 6946 + - uid: 5618 components: - type: Transform - pos: -8.5,-29.5 + pos: -26.5,-28.5 parent: 1668 -- proto: PosterLegitWalk - entities: - - uid: 6961 + - uid: 5625 components: - type: Transform - pos: 19.5,-7.5 + pos: -26.5,-24.5 parent: 1668 -- proto: PosterLegitWorkForAFuture - entities: - - uid: 6742 + - uid: 5626 components: - type: Transform - pos: 10.5,33.5 + pos: -24.5,-24.5 parent: 1668 - - uid: 6916 + - uid: 5627 components: - type: Transform - pos: -12.5,13.5 + pos: -22.5,-24.5 parent: 1668 -- proto: PosterMapBagel - entities: - - uid: 6749 + - uid: 5628 components: - type: Transform - pos: 3.5,5.5 + pos: -20.5,-24.5 parent: 1668 -- proto: PosterMapDelta - entities: - - uid: 6750 + - uid: 5666 components: - type: Transform - pos: 3.5,-6.5 + pos: -40.5,-24.5 parent: 1668 -- proto: PosterMapLighthouse - entities: - - uid: 6754 + - uid: 5913 components: - type: Transform - pos: -11.5,-20.5 + pos: -24.5,4.5 parent: 1668 -- proto: PosterMapMarathon - entities: - - uid: 6751 + - uid: 5914 components: - type: Transform - pos: 6.5,-3.5 + pos: -29.5,7.5 parent: 1668 -- proto: PosterMapMetaRight - entities: - - uid: 6752 + - uid: 5915 components: - type: Transform - pos: 9.5,-29.5 + pos: -29.5,4.5 parent: 1668 -- proto: PosterMapMoose - entities: - - uid: 6755 + - uid: 5916 components: - type: Transform - pos: 10.5,-20.5 + pos: -24.5,7.5 parent: 1668 -- proto: PosterMapOrigin - entities: - - uid: 6759 + - uid: 6014 components: - type: Transform - pos: -4.5,5.5 + rot: -1.5707963267948966 rad + pos: -25.5,2.5 parent: 1668 -- proto: PosterMapPillar - entities: - - uid: 6753 + - uid: 6015 components: - type: Transform - pos: -5.5,-20.5 + rot: -1.5707963267948966 rad + pos: -27.5,2.5 parent: 1668 -- proto: PosterMapSaltern - entities: - - uid: 6756 + - uid: 6016 components: - type: Transform - pos: -10.5,-29.5 + rot: -1.5707963267948966 rad + pos: -28.5,2.5 parent: 1668 -- proto: PosterMapSplit - entities: - - uid: 6757 + - uid: 6017 components: - type: Transform - pos: -7.5,-3.5 + rot: -1.5707963267948966 rad + pos: -26.5,2.5 parent: 1668 -- proto: PosterMapWaystation - entities: - - uid: 6758 + - uid: 6933 components: - type: Transform - pos: -4.5,-6.5 + pos: -29.5,9.5 parent: 1668 -- proto: PottedPlant15 - entities: - - uid: 3459 + - uid: 6934 components: - type: Transform - pos: -24.5,12.5 + pos: -29.5,10.5 parent: 1668 -- proto: PottedPlant21 - entities: - - uid: 508 + - uid: 6935 components: - type: Transform - pos: 24.5,-10.5 + pos: -29.5,12.5 parent: 1668 - - uid: 542 + - uid: 6936 components: - type: Transform - pos: 19.5,-5.5 + pos: -29.5,13.5 parent: 1668 - - uid: 543 + - uid: 6954 components: - type: Transform - pos: 19.5,4.5 + pos: -52.5,1.5 parent: 1668 - - uid: 602 + - uid: 7108 components: - - type: MetaData - name: security plant - type: Transform - pos: 9.5,6.5 + rot: 1.5707963267948966 rad + pos: -48.5,-8.5 parent: 1668 - - uid: 606 + - uid: 7109 components: - type: Transform - pos: 9.5,-0.5 + rot: 1.5707963267948966 rad + pos: -50.5,-8.5 parent: 1668 - - uid: 607 + - uid: 7110 components: - type: Transform - pos: 15.5,-0.5 + rot: 1.5707963267948966 rad + pos: -49.5,-8.5 parent: 1668 - - uid: 708 + - uid: 7120 components: - type: Transform - pos: -6.5,-5.5 + pos: -44.5,2.5 parent: 1668 - - uid: 709 + - uid: 7121 components: - type: Transform - pos: 5.5,4.5 + pos: -42.5,2.5 parent: 1668 - - uid: 803 + - uid: 7123 components: - type: Transform - pos: -1.5,-13.5 + pos: -50.5,-3.5 parent: 1668 - - uid: 2160 + - uid: 7124 components: - type: Transform - pos: 0.5,16.5 + pos: -48.5,-3.5 parent: 1668 - - uid: 2161 + - uid: 7133 components: - type: Transform - pos: -1.5,16.5 + rot: 1.5707963267948966 rad + pos: -43.5,7.5 parent: 1668 - - uid: 2162 + - uid: 7134 components: - type: Transform - pos: 2.5,12.5 + rot: 1.5707963267948966 rad + pos: -42.5,7.5 parent: 1668 - - uid: 2381 + - uid: 7135 components: - type: Transform - pos: 22.5,10.5 + rot: 1.5707963267948966 rad + pos: -44.5,7.5 parent: 1668 - - uid: 2383 + - uid: 7143 components: - type: Transform - pos: 34.5,10.5 + rot: 1.5707963267948966 rad + pos: -49.5,7.5 parent: 1668 - - uid: 2384 + - uid: 7144 components: - type: Transform - pos: 24.5,21.5 + rot: 1.5707963267948966 rad + pos: -48.5,7.5 parent: 1668 - - uid: 2385 + - uid: 7145 components: - type: Transform - pos: 32.5,21.5 + rot: 1.5707963267948966 rad + pos: -50.5,7.5 parent: 1668 - - uid: 2386 + - uid: 7152 components: - type: Transform - pos: 18.5,18.5 + pos: -55.5,-2.5 parent: 1668 - - uid: 2422 + - uid: 7154 components: - type: Transform - pos: 28.5,23.5 + pos: -52.5,-2.5 parent: 1668 - - uid: 3178 + - uid: 7161 components: - type: Transform - pos: 6.5,10.5 + pos: -55.5,1.5 parent: 1668 - - uid: 3179 + - uid: 7239 components: - type: Transform - pos: 13.5,15.5 + pos: -50.5,2.5 parent: 1668 - - uid: 3456 + - uid: 7241 components: - type: Transform - pos: -20.5,2.5 + pos: -48.5,2.5 parent: 1668 - - uid: 3457 + - uid: 7323 components: - type: Transform - pos: -21.5,6.5 + pos: -31.5,8.5 parent: 1668 - - uid: 3458 + - uid: 7324 components: - type: Transform - pos: -24.5,8.5 + pos: -33.5,8.5 parent: 1668 - - uid: 3460 + - uid: 7359 components: - type: Transform - pos: -25.5,-0.5 + pos: -40.5,-27.5 parent: 1668 - - uid: 3461 + - uid: 7360 components: - type: Transform - pos: -10.5,-0.5 + pos: -41.5,-27.5 parent: 1668 - - uid: 3856 + - uid: 7361 components: - type: Transform - pos: -18.5,-3.5 + pos: -42.5,-27.5 parent: 1668 - - uid: 3857 + - uid: 7363 components: - type: Transform - pos: -18.5,-9.5 + pos: -40.5,-25.5 parent: 1668 - - uid: 3858 + - uid: 7364 components: - type: Transform - pos: -23.5,-3.5 + pos: -41.5,-25.5 parent: 1668 - - uid: 4624 + - uid: 7365 components: - type: Transform - pos: -7.5,-19.5 + pos: -42.5,-25.5 parent: 1668 - - uid: 4625 + - uid: 7366 components: - type: Transform - pos: -5.5,-19.5 + pos: -40.5,-28.5 parent: 1668 - - uid: 4626 + - uid: 7374 components: - type: Transform - pos: 4.5,-19.5 + pos: -28.5,-28.5 parent: 1668 - - uid: 4627 + - uid: 7375 components: - type: Transform - pos: 6.5,-19.5 + pos: -30.5,-28.5 parent: 1668 - - uid: 4628 + - uid: 7376 components: - type: Transform - pos: 13.5,-18.5 + pos: -28.5,-24.5 parent: 1668 - - uid: 4629 + - uid: 7377 components: - type: Transform - pos: -14.5,-18.5 + pos: -30.5,-24.5 parent: 1668 - - uid: 5375 + - uid: 7378 components: - type: Transform - pos: 18.5,-20.5 + pos: -32.5,-28.5 parent: 1668 - - uid: 5382 + - uid: 7379 components: - type: Transform - pos: 17.5,-23.5 + pos: -34.5,-28.5 parent: 1668 - - uid: 6561 + - uid: 7380 components: - type: Transform - pos: -18.5,-27.5 + pos: -36.5,-28.5 parent: 1668 - - uid: 6562 + - uid: 7381 components: - type: Transform - pos: -3.5,-31.5 + pos: -38.5,-28.5 parent: 1668 - - uid: 6563 + - uid: 7382 components: - type: Transform - pos: 2.5,-31.5 + pos: -38.5,-24.5 parent: 1668 -- proto: PottedPlant22 - entities: - - uid: 544 + - uid: 7383 components: - type: Transform - pos: 19.5,-0.5 + pos: -36.5,-24.5 parent: 1668 - - uid: 603 + - uid: 7384 components: - - type: MetaData - name: security plant - type: Transform - pos: 13.5,4.5 + pos: -34.5,-24.5 parent: 1668 - - uid: 706 + - uid: 7385 components: - type: Transform - pos: -6.5,4.5 + pos: -32.5,-24.5 parent: 1668 - - uid: 707 + - uid: 8759 components: - type: Transform - pos: 5.5,-5.5 + pos: -25.5,8.5 parent: 1668 - - uid: 804 + - uid: 8760 components: - type: Transform - pos: 0.5,-13.5 + pos: -26.5,8.5 parent: 1668 - - uid: 2193 + - uid: 8761 components: - type: Transform - pos: -2.5,16.5 + pos: -27.5,8.5 parent: 1668 - - uid: 2387 + - uid: 8762 components: - type: Transform - pos: 23.5,10.5 + pos: -28.5,8.5 parent: 1668 - - uid: 2388 + - uid: 9110 components: - type: Transform - pos: 33.5,10.5 + pos: 22.5,-34.5 parent: 1668 - - uid: 2389 + - uid: 9111 components: - type: Transform - pos: 34.5,21.5 + pos: 21.5,-34.5 parent: 1668 - - uid: 2390 + - uid: 9122 components: - type: Transform - pos: 22.5,21.5 + pos: 21.5,-28.5 parent: 1668 - - uid: 2391 + - uid: 9289 components: - type: Transform - pos: 25.5,21.5 + pos: -36.5,-3.5 parent: 1668 - - uid: 2392 +- proto: RitualDagger + entities: + - uid: 6114 components: - type: Transform - pos: 31.5,21.5 + rot: 3.141592653589793 rad + pos: -8.533529,-17.289402 parent: 1668 - - uid: 2393 +- proto: RubberStampApproved + entities: + - uid: 531 components: - type: Transform - pos: 18.5,22.5 + pos: 0.35229805,0.5584074 parent: 1668 - - uid: 2394 +- proto: RubberStampCentcom + entities: + - uid: 12 components: - type: Transform - pos: 16.5,12.5 + pos: -3.6834178,-1.8503399 parent: 1668 - - uid: 3180 + - uid: 532 components: - type: Transform - pos: 6.5,15.5 + pos: 0.5235943,0.77137035 parent: 1668 - - uid: 3181 + - uid: 2861 components: - type: Transform - pos: 14.5,10.5 + pos: -17.65566,12.332452 parent: 1668 - - uid: 3453 +- proto: RubberStampDenied + entities: + - uid: 530 components: - type: Transform - pos: -22.5,2.5 + pos: 0.690261,0.5584074 parent: 1668 - - uid: 3454 +- proto: Screen + entities: + - uid: 6906 components: - type: Transform - pos: -24.5,6.5 + pos: -39.5,-3.5 parent: 1668 - - uid: 3455 + - uid: 6907 components: - type: Transform - pos: -22.5,8.5 + pos: -34.5,-4.5 parent: 1668 - - uid: 3853 + - uid: 6908 components: - type: Transform - pos: -21.5,-9.5 + pos: -34.5,-10.5 parent: 1668 - - uid: 3854 + - uid: 6909 components: - type: Transform - pos: -19.5,-9.5 + pos: -42.5,-11.5 parent: 1668 - - uid: 3855 + - uid: 6910 components: - type: Transform - pos: -19.5,-3.5 + pos: -41.5,-11.5 parent: 1668 - - uid: 4620 + - uid: 6911 components: - type: Transform - pos: -4.5,-19.5 + pos: -29.5,-11.5 parent: 1668 - - uid: 4621 + - uid: 6912 components: - type: Transform - pos: 3.5,-19.5 + pos: -42.5,-3.5 parent: 1668 - - uid: 4622 + - uid: 6913 components: - type: Transform - pos: 7.5,-19.5 + pos: -21.5,2.5 parent: 1668 - - uid: 4623 + - uid: 6914 components: - type: Transform - pos: -8.5,-19.5 + pos: -23.5,8.5 parent: 1668 - - uid: 5377 + - uid: 6915 components: - type: Transform - pos: 27.5,-25.5 + pos: -3.5,17.5 parent: 1668 - - uid: 5383 + - uid: 6916 components: - type: Transform - pos: 17.5,-27.5 + pos: 7.5,17.5 parent: 1668 - - uid: 6564 + - uid: 6917 components: - type: Transform - pos: -14.5,-33.5 + pos: 26.5,13.5 parent: 1668 - - uid: 6565 + - uid: 6918 components: - type: Transform - pos: 13.5,-33.5 + pos: 33.5,-7.5 parent: 1668 -- proto: PottedPlantBioluminscent - entities: - - uid: 6566 + - uid: 6919 components: - type: Transform - pos: -0.5,-41.5 + pos: 33.5,6.5 parent: 1668 -- proto: PowerCellRecharger - entities: - - uid: 1448 + - uid: 6920 components: - type: Transform - pos: 12.5,6.5 + pos: -8.5,4.5 parent: 1668 - - uid: 1458 + - uid: 6921 components: - type: Transform - pos: -4.5,-10.5 + pos: -8.5,-5.5 parent: 1668 - - uid: 5376 + - uid: 6922 components: - type: Transform - pos: 21.5,-21.5 + pos: 7.5,5.5 parent: 1668 - - uid: 5378 + - uid: 6923 components: - type: Transform - pos: 26.5,-26.5 + pos: 23.5,-28.5 parent: 1668 - - uid: 6498 + - uid: 6924 components: - type: Transform - pos: 9.5,-4.5 + pos: 21.5,-14.5 parent: 1668 -- proto: PowerDrill - entities: - - uid: 3698 + - uid: 6925 components: - type: Transform - pos: -16.54512,6.5009594 + pos: -15.5,-24.5 parent: 1668 -- proto: Poweredlight - entities: - - uid: 510 + - uid: 6926 components: - type: Transform - pos: 20.5,-10.5 + pos: -23.5,-24.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 523 + - uid: 6927 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-8.5 + pos: 1.5,-32.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 524 + - uid: 6928 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-8.5 + pos: -2.5,-32.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 525 + - uid: 6929 components: - type: Transform - pos: 26.5,8.5 + pos: 7.5,-24.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 526 + - uid: 6930 components: - type: Transform - pos: 21.5,8.5 + pos: 13.5,-24.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 527 + - uid: 6931 components: - type: Transform - pos: 31.5,8.5 + pos: 4.5,-7.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 576 + - uid: 6932 components: - type: Transform - pos: 17.5,-4.5 + pos: -14.5,11.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 577 + - uid: 7332 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-7.5 + pos: -34.5,2.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 578 + - uid: 7488 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,3.5 + pos: -31.5,-24.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 580 + - uid: 7489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-0.5 + pos: -39.5,-24.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 581 +- proto: Screwdriver + entities: + - uid: 3175 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-6.5 + pos: -6.5,7.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 582 + - uid: 8822 components: - type: Transform - pos: 34.5,5.5 + pos: -10.5,-6.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 583 +- proto: SecurityTechFab + entities: + - uid: 2160 components: - type: Transform - pos: 23.5,5.5 + pos: 11.5,20.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 584 +- proto: SeedExtractor + entities: + - uid: 998 components: - type: Transform - pos: 29.5,5.5 + pos: 6.5,-17.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 585 +- proto: SeismicCharge + entities: + - uid: 9197 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-6.5 + pos: -31.52614,-4.329217 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 586 + - uid: 9202 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-6.5 + pos: -31.385515,-4.391717 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 587 +- proto: SheetGlass + entities: + - uid: 818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-3.5 + pos: 8.375388,-6.4888477 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 588 + - uid: 2232 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,2.5 + pos: 14.65328,20.579678 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 737 + - uid: 2233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-13.5 + pos: 14.65328,20.579678 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 739 + - uid: 2234 components: - type: Transform - pos: 12.5,-11.5 + pos: 14.65328,20.579678 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 740 + - uid: 3308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-9.5 + pos: -3.5,22.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1384 + - uid: 3309 components: - type: Transform - pos: 7.5,1.5 + pos: -3.5,22.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1385 + - uid: 6779 components: - type: Transform - pos: 17.5,1.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1386 + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6794 components: - type: Transform - pos: -8.5,1.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1387 + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlasma + entities: + - uid: 783 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-2.5 + pos: 4.4811854,-10.45799 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1388 + - uid: 4098 components: - type: Transform - pos: -2.5,1.5 + pos: -8.5,20.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1389 + - uid: 4101 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,4.5 + pos: -8.5,20.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1390 +- proto: SheetPlasteel + entities: + - uid: 817 components: - type: Transform - pos: 5.5,4.5 + pos: 8.625388,-6.3169727 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1393 + - uid: 2223 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-5.5 + pos: 12.62203,20.595303 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1396 + - uid: 2224 components: - type: Transform - pos: 1.5,4.5 + pos: 12.62203,20.595303 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1481 + - uid: 2225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,6.5 + pos: 12.62203,20.595303 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1484 + - uid: 3305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-9.5 + pos: -3.5,21.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1485 + - uid: 3349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-13.5 + pos: -3.5,21.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2151 + - uid: 6775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,16.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2152 + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6796 components: - type: Transform - pos: -11.5,17.5 - parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2153 + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlastic + entities: + - uid: 819 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,14.5 + pos: 8.656638,-6.4888477 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2154 + - uid: 2229 components: - type: Transform - pos: -8.5,12.5 + pos: 14.40328,20.595303 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2155 + - uid: 2230 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,8.5 + pos: 14.40328,20.595303 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2156 + - uid: 2231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,8.5 + pos: 14.40328,20.595303 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2157 + - uid: 3350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,13.5 + pos: -3.5,20.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2158 + - uid: 3351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,15.5 + pos: -3.5,20.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2159 +- proto: SheetSteel + entities: + - uid: 816 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-16.5 + pos: 8.359763,-6.3169727 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2219 + - uid: 2226 components: - type: Transform - pos: -11.5,31.5 + pos: 12.37203,20.610928 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2220 + - uid: 2227 components: - type: Transform - pos: -7.5,31.5 + pos: 12.37203,20.610928 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2221 + - uid: 2228 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,19.5 + pos: 12.37203,20.610928 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2222 + - uid: 3352 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,28.5 + pos: -3.5,19.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2223 + - uid: 3353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,22.5 + pos: -3.5,19.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2351 + - uid: 6773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,1.5 - parent: 1668 - - uid: 2723 + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,8.5 + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetUranium + entities: + - uid: 4099 + components: + - type: Transform + pos: -7.5,20.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2724 + - uid: 4100 components: - type: Transform - pos: 4.5,14.5 + pos: -7.5,20.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2725 +- proto: ShelfBar + entities: + - uid: 1345 components: - type: Transform - pos: 6.5,15.5 + pos: 32.5,-18.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2726 +- proto: ShelfChemistryChemistrySecure + entities: + - uid: 4293 components: - type: Transform - pos: 13.5,15.5 + pos: 6.5,-7.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2727 +- proto: ShelfKitchen + entities: + - uid: 4294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,13.5 + pos: 11.5,-16.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2729 +- proto: ShotGunCabinetFilled + entities: + - uid: 1288 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,10.5 + pos: 33.5,-18.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2730 +- proto: Shovel + entities: + - uid: 6193 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,10.5 + pos: -20.5,-4.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2731 +- proto: ShuttersNormalOpen + entities: + - uid: 81 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,19.5 + pos: 3.5,-1.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2732 + - uid: 2246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,15.5 + pos: 16.5,17.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2733 + - uid: 2247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,19.5 + pos: 15.5,17.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2734 + - uid: 2248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,15.5 + pos: 11.5,17.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2735 + - uid: 2249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,20.5 + pos: 10.5,17.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2736 +- proto: SignalSwitch + entities: + - uid: 602 components: + - type: MetaData + name: West Thoroughfare Blast Doors - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,20.5 + pos: 13.5,4.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2739 + - type: DeviceLinkSource + linkedPorts: + 542: + - On: Open + - Off: Close + 543: + - On: Open + - Off: Close + 544: + - On: Open + - Off: Close + 545: + - On: Open + - Off: Close + 546: + - On: Open + - Off: Close + - uid: 603 components: + - type: MetaData + name: East Thoroughfare Blast Doors - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,20.5 + pos: 15.5,4.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2908 + - type: DeviceLinkSource + linkedPorts: + 539: + - On: Open + - Off: Close + 538: + - On: Open + - Off: Close + 537: + - On: Open + - Off: Close + 540: + - On: Open + - Off: Close + 541: + - On: Open + - Off: Close + - uid: 9388 components: + - type: MetaData + name: Green Team Entrance - type: Transform - pos: 17.5,8.5 + rot: 1.5707963267948966 rad + pos: 0.5,-49.5 parent: 1668 - - uid: 2931 + - type: DeviceLinkSource + linkedPorts: + 9380: + - On: Open + - Off: Close + 9381: + - On: Open + - Off: Close + 9382: + - On: Open + - Off: Close + 9383: + - On: Open + - Off: Close + - uid: 9389 components: + - type: MetaData + name: Red Team Entrance - type: Transform - pos: 12.5,32.5 + rot: -1.5707963267948966 rad + pos: -1.5,-49.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2932 + - type: DeviceLinkSource + linkedPorts: + 9387: + - On: Open + - Off: Close + 9386: + - On: Open + - Off: Close + 9385: + - On: Open + - Off: Close + 9384: + - On: Open + - Off: Close +- proto: SignalSwitchDirectional + entities: + - uid: 336 components: + - type: MetaData + name: Panic Switch - type: Transform - pos: 6.5,32.5 + pos: 1.5,2.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2933 + - type: DeviceLinkSource + linkedPorts: + 332: + - On: Open + - Off: Close + 331: + - On: Open + - Off: Close + 330: + - On: Open + - Off: Close + 329: + - On: Open + - Off: Close + 81: + - On: Open + - Off: Close + 327: + - On: Open + - Off: Close + 314: + - On: Open + - Off: Close + 315: + - On: Open + - Off: Close + 318: + - On: Open + - Off: Close + 319: + - On: Open + - Off: Close + 320: + - On: Open + - Off: Close + 321: + - On: Open + - Off: Close + 322: + - On: Open + - Off: Close + 323: + - On: Open + - Off: Close + 324: + - On: Open + - Off: Close + 325: + - On: Open + - Off: Close + 326: + - On: Open + - Off: Close + 335: + - On: Open + - Off: Close + 334: + - On: Open + - Off: Close + 333: + - On: Open + - Off: Close + - uid: 569 components: + - type: MetaData + name: Window Shutters - type: Transform - pos: 9.5,32.5 + pos: 17.5,-3.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2934 + - type: DeviceLinkSource + linkedPorts: + 568: + - On: Open + - Off: Close + 567: + - On: Open + - Off: Close + 566: + - On: Open + - Off: Close + 565: + - On: Open + - Off: Close + 564: + - On: Open + - Off: Close + - uid: 570 components: + - type: MetaData + name: Window Shutters - type: Transform rot: 3.141592653589793 rad - pos: 9.5,27.5 + pos: 17.5,2.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2939 + - type: DeviceLinkSource + linkedPorts: + 559: + - On: Open + - Off: Close + 560: + - On: Open + - Off: Close + 561: + - On: Open + - Off: Close + 562: + - On: Open + - Off: Close + 563: + - On: Open + - Off: Close + - uid: 607 components: + - type: MetaData + name: Exterior Security Door Toggle - type: Transform - pos: 9.5,25.5 + rot: 1.5707963267948966 rad + pos: 11.5,3.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2940 + - type: DeviceLinkSource + linkedPorts: + 554: + - Status: Toggle + 555: + - Status: Toggle + - uid: 608 components: + - type: MetaData + name: Interior Security Door Toggle - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,26.5 + pos: 11.5,5.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2941 + - type: DeviceLinkSource + linkedPorts: + 578: + - Status: Toggle + 577: + - Status: Toggle + - uid: 610 components: + - type: MetaData + name: Docking Bay Door Blast Door - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,26.5 + pos: 18.5,-4.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2942 + - type: DeviceLinkSource + linkedPorts: + 612: + - On: Open + - Off: Close + - uid: 611 components: + - type: MetaData + name: Docking Bay Door Blast Door - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,19.5 + pos: 18.5,3.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3135 + - type: DeviceLinkSource + linkedPorts: + 609: + - On: Open + - Off: Close + - uid: 728 components: + - type: MetaData + name: Shuttle Bay Window Blast Doors - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,6.5 + pos: 20.5,-8.5 parent: 1668 - - uid: 3701 + - type: DeviceLinkSource + linkedPorts: + 731: + - On: Open + - Off: Close + 730: + - On: Open + - Off: Close + 729: + - On: Open + - Off: Close + - uid: 1130 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,14.5 + pos: 32.5,-9.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3702 + - type: DeviceLinkSource + linkedPorts: + 1142: + - On: Open + - Off: Close + 1141: + - On: Open + - Off: Close + 1140: + - On: Open + - Off: Close + - uid: 1131 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,10.5 + pos: 32.5,-12.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3703 + - type: DeviceLinkSource + linkedPorts: + 1143: + - On: Open + - Off: Close + 1144: + - On: Open + - Off: Close + 1145: + - On: Open + - Off: Close + - uid: 1587 components: + - type: MetaData + name: Inner Windoor Switch - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,10.5 + pos: 18.5,11.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3704 + - type: DeviceLinkSource + linkedPorts: + 1585: + - Status: Toggle + - uid: 1588 components: + - type: MetaData + name: Inner Windoor Toggle - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,10.5 + rot: 1.5707963267948966 rad + pos: 8.5,11.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3705 + - type: DeviceLinkSource + linkedPorts: + 1586: + - Status: Toggle + - uid: 1663 components: - type: Transform - pos: -21.5,6.5 + pos: 23.5,13.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3706 + - type: DeviceLinkSource + linkedPorts: + 1626: + - On: Forward + - Off: Off + - uid: 1728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,4.5 + pos: 3.5,13.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3707 + - type: DeviceLinkSource + linkedPorts: + 1627: + - On: Forward + - Off: Off + - uid: 2250 components: - type: Transform - pos: -15.5,6.5 + rot: 3.141592653589793 rad + pos: 14.5,17.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3708 + - type: DeviceLinkSource + linkedPorts: + 2247: + - On: Open + - Off: Close + 2246: + - On: Open + - Off: Close + 2248: + - On: Open + - Off: Close + 2249: + - On: Open + - Off: Close + - uid: 2254 components: - type: Transform - pos: -11.5,6.5 + rot: 3.141592653589793 rad + pos: 14.5,21.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4167 + - type: DeviceLinkSource + linkedPorts: + 2257: + - On: Open + - Off: Close + 2256: + - On: Open + - Off: Close + 2253: + - On: Open + - Off: Close + 2252: + - On: Open + - Off: Close + - uid: 2803 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,6.5 + pos: -18.5,17.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4168 + - type: DeviceLinkSource + linkedPorts: + 2805: + - On: Open + - Off: Close + 2804: + - On: Open + - Off: Close + - uid: 3914 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,3.5 + rot: 1.5707963267948966 rad + pos: 5.5,21.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4169 + - type: DeviceLinkSource + linkedPorts: + 3913: + - Off: Close + - On: Open + 3912: + - On: Open + - Off: Close + - uid: 4715 components: + - type: MetaData + name: Red Team Armory - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-2.5 + pos: -1.5,-49.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4170 + - type: DeviceLinkSource + linkedPorts: + 4726: + - On: Open + - Off: Close + 4727: + - On: Open + - Off: Close + 4728: + - On: Open + - Off: Close + 4729: + - On: Open + - Off: Close + 4730: + - On: Open + - Off: Close + - uid: 4716 components: + - type: MetaData + name: Arena Doors - type: Transform - pos: -31.5,1.5 + rot: 3.141592653589793 rad + pos: -0.5,-49.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4171 + - type: DeviceLinkSource + linkedPorts: + 4737: + - On: Open + - Off: Close + 4738: + - On: Open + - Off: Close + 4739: + - On: Open + - Off: Close + 4740: + - On: Open + - Off: Close + 4741: + - On: Open + - Off: Close + 4742: + - On: Open + - Off: Close + 4759: + - On: Open + - Off: Close + 4758: + - On: Open + - Off: Close + 4757: + - On: Open + - Off: Close + 4756: + - On: Open + - Off: Close + 4755: + - On: Open + - Off: Close + 4754: + - On: Open + - Off: Close + - uid: 4717 components: + - type: MetaData + name: Green Team Armory - type: Transform - pos: -27.5,0.5 + rot: 3.141592653589793 rad + pos: 0.5,-49.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4172 + - type: DeviceLinkSource + linkedPorts: + 4743: + - On: Open + - Off: Close + 4744: + - On: Open + - Off: Close + 4745: + - On: Open + - Off: Close + 4746: + - On: Open + - Off: Close + 4747: + - On: Open + - Off: Close + - uid: 9217 components: + - type: MetaData + name: ERT Ready Room - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,4.5 + pos: -42.5,-7.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4174 + - type: DeviceLinkSource + linkedPorts: + 6903: + - On: Open + - Off: Close + 6904: + - On: Open + - Off: Close + 6905: + - On: Open + - Off: Close +- proto: SignArmory + entities: + - uid: 2163 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-1.5 + pos: 12.5,17.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4175 +- proto: SignAtmos + entities: + - uid: 4030 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-9.5 + pos: -26.5,18.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4176 +- proto: SignBar + entities: + - uid: 1139 components: - type: Transform - pos: -17.5,-3.5 + pos: 28.5,-7.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4177 + - uid: 4317 components: - type: Transform - pos: -12.5,-3.5 + pos: 17.5,-24.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4178 + - uid: 5538 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-9.5 + pos: 11.5,-31.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4329 +- proto: SignCargo + entities: + - uid: 1758 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-9.5 + pos: 1.5,22.5 parent: 1668 - - uid: 4334 + - uid: 3916 components: - type: Transform - pos: -26.5,-3.5 + pos: -3.5,32.5 parent: 1668 - - uid: 4340 +- proto: SignCargoDock + entities: + - uid: 2986 components: - type: Transform - pos: -8.5,-4.5 + pos: 3.5,33.5 parent: 1668 - - uid: 4392 +- proto: SignDangerMed + entities: + - uid: 2535 + components: + - type: Transform + pos: 9.5,29.5 + parent: 1668 +- proto: SignDirectionalBar + entities: + - uid: 5656 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-7.5 + pos: 2.5,-24.5 parent: 1668 - - uid: 4396 +- proto: SignDirectionalEscapePod + entities: + - uid: 5654 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-7.5 + pos: -3.5,-24.5 parent: 1668 - - uid: 4397 +- proto: SignElectricalMed + entities: + - uid: 5 components: - type: Transform - pos: 7.5,-4.5 + pos: 18.5,27.5 parent: 1668 - - uid: 4399 + - uid: 5725 components: - type: Transform - pos: 18.5,16.5 + pos: -3.5,-16.5 parent: 1668 - - uid: 4400 +- proto: SignEngineering + entities: + - uid: 3025 components: - type: Transform - pos: 28.5,23.5 + pos: -7.5,15.5 parent: 1668 - - uid: 4402 +- proto: SignEscapePods + entities: + - uid: 5655 components: - type: Transform - pos: 34.5,23.5 + pos: -15.5,-28.5 parent: 1668 - - uid: 4499 +- proto: SignGravity + entities: + - uid: 4028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,6.5 + pos: -7.5,23.5 parent: 1668 - - uid: 4596 +- proto: SignHead + entities: + - uid: 2993 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-28.5 + pos: -19.5,2.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4597 + - uid: 7333 components: - type: Transform - pos: -8.5,-21.5 + pos: -32.5,2.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4598 +- proto: SignJanitor + entities: + - uid: 6045 components: - type: Transform - pos: 7.5,-21.5 + pos: -3.5,-10.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4599 +- proto: SignKiddiePlaque + entities: + - uid: 4020 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-28.5 + pos: 33.5,13.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4600 + - uid: 4214 components: - type: Transform - pos: -3.5,-25.5 + pos: -3.5,-28.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4601 +- proto: SignKitchen + entities: + - uid: 1069 components: - type: Transform - pos: 2.5,-25.5 + rot: -1.5707963267948966 rad + pos: 18.5,-16.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4603 + - uid: 5536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-22.5 + pos: 16.5,-24.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4604 + - uid: 5537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-22.5 + pos: -12.5,-31.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4637 +- proto: SignLawyer + entities: + - uid: 2102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-29.5 + pos: 28.5,13.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4638 +- proto: SignMedical + entities: + - uid: 573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-29.5 + pos: 11.5,-3.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4694 +- proto: SignPlaque + entities: + - uid: 510 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-11.5 + pos: -1.5,-3.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5056 + - uid: 2801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 + pos: -15.5,14.5 parent: 1668 - - uid: 5353 + - uid: 4019 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-26.5 + pos: 6.5,17.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5354 + - uid: 4211 components: - type: Transform - pos: 14.5,-23.5 + pos: 2.5,-28.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5357 + - uid: 4212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-28.5 + pos: -3.5,-32.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5358 + - uid: 4662 components: + - type: MetaData + desc: Current Headmin. + name: nikthechampiongr - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-19.5 + pos: -24.5,-15.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5359 + - uid: 6119 components: + - type: MetaData + desc: The rest of these are my alts. + name: Chief Engineer - type: Transform - pos: 13.5,-18.5 + pos: -9.5,-15.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5360 + - uid: 6120 components: + - type: MetaData + desc: m...miku... + name: mirrorcult - type: Transform - pos: 18.5,-20.5 + pos: -6.5,-15.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5361 + - uid: 6121 + components: + - type: MetaData + desc: '...' + name: Skarlet + - type: Transform + pos: -12.5,-15.5 + parent: 1668 + - uid: 6122 components: + - type: MetaData + desc: Happy Birthday Nairod! + name: Nairod - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-26.5 + pos: -15.5,-15.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5362 + - uid: 6123 components: + - type: MetaData + desc: Subscribe to Liltenhead. + name: Liltenhead - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-20.5 + pos: -18.5,-15.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5363 + - uid: 6184 components: + - type: MetaData + desc: Thank you for your service. + name: Game Admin Retirement Home - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-13.5 + pos: -22.5,-9.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5364 + - uid: 9395 components: + - type: MetaData + desc: Current Headmin. + name: Crazybrain - type: Transform - pos: 31.5,-15.5 + pos: -21.5,-15.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5365 +- proto: SignPrison + entities: + - uid: 1631 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-13.5 + pos: 8.5,13.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5366 + - uid: 1632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-16.5 + pos: 18.5,6.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5367 +- proto: SignRedOne + entities: + - uid: 1589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-14.5 + pos: 8.5,11.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5408 +- proto: SignRedTwo + entities: + - uid: 1590 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-32.5 + pos: 18.5,11.5 parent: 1668 - - uid: 5452 +- proto: SignScience + entities: + - uid: 9123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,8.5 + pos: 19.5,-28.5 parent: 1668 - - uid: 5582 +- proto: SignSecureMed + entities: + - uid: 2545 components: - type: Transform - pos: 16.5,-29.5 + pos: 19.5,34.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5826 + - uid: 2564 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-19.5 + pos: 21.5,32.5 + parent: 1668 + - uid: 2571 + components: + - type: Transform + pos: 19.5,30.5 + parent: 1668 + - uid: 2572 + components: + - type: Transform + pos: 17.5,32.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5827 + - uid: 6734 components: - type: Transform - pos: -14.5,-18.5 + pos: -34.5,-9.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5828 + - uid: 6735 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-19.5 + pos: -34.5,-5.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5829 + - uid: 6736 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-19.5 + pos: -37.5,-3.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5830 + - uid: 6737 components: - type: Transform - pos: -2.5,-9.5 + pos: -41.5,-3.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5831 +- proto: SignSecurity + entities: + - uid: 574 components: - type: Transform - pos: 1.5,-9.5 + pos: 11.5,2.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5847 +- proto: SignSpace + entities: + - uid: 4091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,33.5 + pos: -22.5,18.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5849 + - uid: 4850 components: - type: Transform - pos: 3.5,-15.5 + pos: 16.5,-47.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5850 + - uid: 4851 components: - type: Transform - pos: -4.5,-15.5 + pos: -17.5,-47.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5851 +- proto: SignTelecomms + entities: + - uid: 6022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-16.5 + rot: 3.141592653589793 rad + pos: -12.5,-11.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5852 +- proto: Sink + entities: + - uid: 2677 components: - type: Transform - pos: -4.5,-9.5 + rot: -1.5707963267948966 rad + pos: 30.5,-23.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5884 + - uid: 2794 components: - type: Transform - pos: 12.5,6.5 + rot: -1.5707963267948966 rad + pos: -17.5,15.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5885 + - uid: 4827 components: - type: Transform - pos: 9.5,1.5 + rot: 1.5707963267948966 rad + pos: -18.5,-33.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5886 + - uid: 4828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-2.5 + rot: 1.5707963267948966 rad + pos: -18.5,-32.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5933 + - uid: 4829 components: - type: Transform - pos: -17.5,-31.5 + rot: 1.5707963267948966 rad + pos: -18.5,-31.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6102 + - uid: 4830 components: - type: Transform - pos: -16.5,-23.5 + rot: 1.5707963267948966 rad + pos: -18.5,-30.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6154 + - uid: 4831 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-25.5 + pos: 17.5,-33.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6155 + - uid: 4832 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-29.5 + rot: -1.5707963267948966 rad + pos: 17.5,-32.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6228 + - uid: 4833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-13.5 + rot: -1.5707963267948966 rad + pos: 17.5,-31.5 parent: 1668 - - uid: 6463 + - uid: 4834 components: - type: Transform - pos: -5.5,-39.5 + rot: -1.5707963267948966 rad + pos: 17.5,-30.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6464 +- proto: SinkWide + entities: + - uid: 675 components: - type: Transform - pos: 4.5,-39.5 + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6465 + - uid: 1753 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-41.5 + pos: 12.5,-16.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6466 + - uid: 1766 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-43.5 + pos: 17.5,-16.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6467 + - uid: 4232 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-39.5 + pos: 8.5,-32.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6468 + - uid: 4333 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-39.5 + pos: -9.5,-32.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6469 + - uid: 4648 components: - type: Transform - pos: -11.5,-30.5 + pos: 5.5,-14.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6470 +- proto: Sledgehammer + entities: + - uid: 3253 components: - type: Transform - pos: 10.5,-30.5 + pos: 13.540003,-21.466553 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6471 +- proto: SmartFridge + entities: + - uid: 646 components: - type: Transform - pos: 3.5,-31.5 + pos: 11.5,-8.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6472 +- proto: SMESAdvanced + entities: + - uid: 3222 components: - type: Transform - pos: -4.5,-31.5 + pos: -12.5,18.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6473 + - uid: 3224 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-37.5 + pos: -12.5,17.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6474 + - uid: 3225 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-37.5 + pos: -12.5,19.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6502 + - uid: 3404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-9.5 + pos: -13.5,5.5 parent: 1668 - - uid: 6609 +- proto: SmokeGrenade + entities: + - uid: 1636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,18.5 + pos: 14.500356,30.399075 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6723 + - uid: 1767 components: - type: Transform - pos: -15.5,2.5 + pos: 14.500356,30.399075 parent: 1668 - - uid: 6724 + - uid: 2035 components: - type: Transform - pos: -11.5,2.5 + pos: 14.500356,30.399075 parent: 1668 - - uid: 6725 + - uid: 2036 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-1.5 + pos: 14.500356,30.399075 parent: 1668 - - uid: 6730 +- proto: SoapNT + entities: + - uid: 2792 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,10.5 + pos: -17.5,16.5 parent: 1668 - - uid: 6760 +- proto: SodaDispenser + entities: + - uid: 1243 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-7.5 + pos: 30.5,-22.5 parent: 1668 - - uid: 6761 + - uid: 1245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-7.5 + pos: 27.5,-21.5 parent: 1668 - - uid: 6766 + - uid: 4037 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,6.5 + pos: -19.5,27.5 parent: 1668 - - uid: 6784 + - uid: 4288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-22.5 + rot: -1.5707963267948966 rad + pos: 10.5,-33.5 parent: 1668 - - uid: 6874 +- proto: SpaceCash + entities: + - uid: 9170 components: - type: Transform - pos: 31.5,-28.5 + pos: 20.697725,-32.941944 parent: 1668 - - uid: 6875 + - uid: 9171 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-31.5 + pos: 21.322725,-31.535694 parent: 1668 - - uid: 6883 + - uid: 9172 components: - type: Transform - pos: 22.5,23.5 + pos: 20.885225,-33.223194 parent: 1668 - - uid: 6920 +- proto: SpawnMechRipley + entities: + - uid: 4016 components: - type: Transform - pos: 2.5,18.5 + pos: 6.5,18.5 parent: 1668 - - uid: 6921 +- proto: SpeedLoaderMagnumAP + entities: + - uid: 2431 components: - type: Transform - pos: -3.5,18.5 + pos: 16.07121,34.757042 parent: 1668 - - uid: 6944 + - uid: 2432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,16.5 + pos: 16.07121,34.757042 parent: 1668 -- proto: PoweredlightLED - entities: - - uid: 5584 + - uid: 2433 components: - type: Transform - pos: 22.5,-28.5 + pos: 16.07121,34.663292 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: PoweredlightSodium - entities: - - uid: 3245 + - uid: 2434 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,26.5 + pos: 16.07121,34.663292 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5227 + - uid: 2435 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-26.5 + pos: 16.07121,34.553917 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5229 + - uid: 2436 components: - type: Transform - pos: 34.5,-20.5 + pos: 16.07121,34.553917 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5878 + - uid: 2437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-12.5 + pos: 16.07121,34.413292 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: PoweredSmallLight - entities: - - uid: 2050 + - uid: 2438 components: - type: Transform - pos: -1.5,24.5 + pos: 16.07121,34.413292 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2051 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 9084 components: - type: Transform - pos: -2.5,21.5 + pos: -6.3936605,-9.234895 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2052 + - uid: 9085 components: - type: Transform - pos: 1.5,21.5 + pos: -6.5186605,-9.422395 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2217 +- proto: SS13Memorial + entities: + - uid: 486 components: - type: Transform - pos: -15.5,28.5 + pos: 26.5,7.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2218 +- proto: StairStageWood + entities: + - uid: 1370 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,24.5 + pos: 19.5,-23.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2740 +- proto: StairWood + entities: + - uid: 6192 components: - type: Transform - pos: 14.5,19.5 + pos: -21.5,-11.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2762 +- proto: StasisBed + entities: + - uid: 682 components: - type: Transform - pos: 16.5,22.5 + pos: 14.5,-11.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2831 +- proto: StationAnchor + entities: + - uid: 3358 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,21.5 + pos: -11.5,26.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2929 +- proto: StatueBananiumClown + entities: + - uid: 9280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,31.5 + pos: -23.5,3.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2930 +- proto: StatueVenusBlue + entities: + - uid: 3463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,31.5 + pos: 31.5,7.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2935 +- proto: StatueVenusRed + entities: + - uid: 5078 components: - type: Transform - pos: 16.5,25.5 + pos: 21.5,7.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2936 +- proto: SteelBench + entities: + - uid: 1781 components: - type: Transform - pos: 16.5,28.5 + rot: -1.5707963267948966 rad + pos: -5.5,-1.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2937 + - uid: 1782 components: - type: Transform - pos: 2.5,28.5 + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2938 +- proto: Stimpack + entities: + - uid: 2672 components: - type: Transform - pos: 2.5,25.5 + pos: 13.522015,32.351566 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2943 + - uid: 2673 components: - type: Transform - pos: 5.5,19.5 + pos: 13.522015,32.351566 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 4504 + - uid: 2674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-22.5 + pos: 13.522015,32.351566 parent: 1668 - - uid: 5368 + - uid: 2675 components: - type: Transform - pos: 16.5,-17.5 + pos: 13.522015,32.351566 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5369 +- proto: Stool + entities: + - uid: 1319 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-15.5 + rot: 1.5707963267948966 rad + pos: 19.5,-21.5 parent: 1668 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6782 + - uid: 1596 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-28.5 + pos: 16.5,5.5 parent: 1668 -- proto: Rack - entities: - - uid: 1662 + - uid: 1597 components: - type: Transform - pos: -11.5,17.5 + rot: -1.5707963267948966 rad + pos: 16.5,6.5 parent: 1668 - - uid: 2167 + - uid: 1684 components: - type: Transform - pos: -3.5,16.5 + rot: -1.5707963267948966 rad + pos: 20.5,11.5 parent: 1668 - - uid: 2195 + - uid: 1685 components: - type: Transform - pos: -1.5,24.5 + rot: 1.5707963267948966 rad + pos: 6.5,11.5 parent: 1668 - - uid: 2200 + - uid: 3027 components: - type: Transform - pos: 15.5,30.5 + pos: 18.5,26.5 parent: 1668 - - uid: 2201 + - uid: 3038 components: - type: Transform - pos: 3.5,30.5 + rot: 3.141592653589793 rad + pos: 18.5,24.5 parent: 1668 - - uid: 2889 + - uid: 3610 components: - type: Transform - pos: 3.5,32.5 + rot: -1.5707963267948966 rad + pos: 16.5,8.5 parent: 1668 - - uid: 2890 + - uid: 3611 components: - type: Transform - pos: 15.5,32.5 + rot: -1.5707963267948966 rad + pos: 16.5,9.5 parent: 1668 - - uid: 3117 + - uid: 9078 components: - type: Transform - pos: 5.5,32.5 + rot: 3.141592653589793 rad + pos: -7.029807,-10.078645 parent: 1668 - - uid: 3118 +- proto: StoolBar + entities: + - uid: 748 components: - type: Transform - pos: 6.5,32.5 + rot: 1.5707963267948966 rad + pos: 22.5,-27.5 parent: 1668 - - uid: 3119 + - uid: 1253 components: - type: Transform - pos: 12.5,32.5 + pos: 26.5,-18.5 parent: 1668 - - uid: 3120 + - uid: 1256 components: - type: Transform - pos: 13.5,32.5 + pos: 25.5,-18.5 parent: 1668 - - uid: 5327 + - uid: 1257 components: - type: Transform - pos: 24.5,-13.5 + rot: 1.5707963267948966 rad + pos: 24.5,-19.5 parent: 1668 - - uid: 5340 + - uid: 1258 components: - type: Transform - pos: 21.5,-17.5 + rot: 1.5707963267948966 rad + pos: 24.5,-23.5 parent: 1668 - - uid: 6449 + - uid: 1259 components: - type: Transform - pos: -6.5,-40.5 + rot: 3.141592653589793 rad + pos: 25.5,-24.5 parent: 1668 - - uid: 6450 + - uid: 1260 components: - type: Transform - pos: -6.5,-42.5 + rot: 3.141592653589793 rad + pos: 26.5,-24.5 parent: 1668 - - uid: 6451 + - uid: 1261 components: - type: Transform - pos: 5.5,-42.5 + rot: 1.5707963267948966 rad + pos: 23.5,-22.5 parent: 1668 - - uid: 6452 + - uid: 1262 components: - type: Transform - pos: 5.5,-40.5 + rot: 1.5707963267948966 rad + pos: 23.5,-21.5 parent: 1668 -- proto: RadioHandheld - entities: - - uid: 3903 + - uid: 1263 components: - type: Transform - pos: -13.516307,-6.3210163 + rot: 1.5707963267948966 rad + pos: 23.5,-20.5 parent: 1668 - - uid: 3904 + - uid: 1264 components: - type: Transform - pos: -13.344432,-6.4147663 + pos: 29.5,-17.5 parent: 1668 -- proto: Railing - entities: - - uid: 1075 + - uid: 1265 components: - type: Transform - pos: 34.5,-4.5 + pos: 28.5,-17.5 parent: 1668 - - uid: 1076 + - uid: 1266 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-4.5 + pos: 27.5,-17.5 parent: 1668 - - uid: 1077 + - uid: 1267 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,3.5 + pos: 28.5,-25.5 parent: 1668 - - uid: 1078 + - uid: 1268 components: - type: Transform - pos: 34.5,3.5 + rot: 3.141592653589793 rad + pos: 27.5,-25.5 parent: 1668 - - uid: 4434 + - uid: 1269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-25.5 + rot: 3.141592653589793 rad + pos: 29.5,-25.5 parent: 1668 - - uid: 4435 + - uid: 1317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-26.5 + rot: -1.5707963267948966 rad + pos: 30.5,-27.5 parent: 1668 - - uid: 4436 + - uid: 1320 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-25.5 + pos: 24.5,-27.5 parent: 1668 - - uid: 4438 + - uid: 1324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-26.5 + rot: 1.5707963267948966 rad + pos: 25.5,-15.5 parent: 1668 - - uid: 4439 + - uid: 1325 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-26.5 + pos: 27.5,-15.5 parent: 1668 - - uid: 4440 + - uid: 1330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-25.5 + rot: 1.5707963267948966 rad + pos: 20.5,-15.5 parent: 1668 - - uid: 4454 + - uid: 1331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-29.5 + rot: 1.5707963267948966 rad + pos: 20.5,-16.5 parent: 1668 - - uid: 4455 + - uid: 1336 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-28.5 + pos: 22.5,-15.5 parent: 1668 - - uid: 4456 + - uid: 1337 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-29.5 + pos: 22.5,-16.5 parent: 1668 - - uid: 4457 + - uid: 1343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-29.5 + rot: -1.5707963267948966 rad + pos: 33.5,-17.5 parent: 1668 - - uid: 4460 + - uid: 1344 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-28.5 + pos: 31.5,-17.5 parent: 1668 - - uid: 4461 + - uid: 1361 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-29.5 + pos: 34.5,-25.5 parent: 1668 - - uid: 4462 + - uid: 1362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-28.5 + rot: 3.141592653589793 rad + pos: 34.5,-27.5 parent: 1668 - - uid: 4463 + - uid: 1363 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-28.5 + pos: 28.5,-27.5 parent: 1668 - - uid: 4464 + - uid: 1364 components: - type: Transform - pos: 0.5,-27.5 + pos: 23.5,-26.5 parent: 1668 - - uid: 4465 + - uid: 4038 components: - type: Transform - pos: -1.5,-27.5 + rot: 3.141592653589793 rad + pos: -17.5,25.5 parent: 1668 - - uid: 4468 + - uid: 4039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-25.5 + rot: 3.141592653589793 rad + pos: -18.5,25.5 parent: 1668 - - uid: 4469 +- proto: StorageCanister + entities: + - uid: 4125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-26.5 + pos: -21.5,28.5 parent: 1668 - - uid: 5216 +- proto: Stunbaton + entities: + - uid: 1149 components: - type: Transform - pos: 34.5,-20.5 + pos: 32.496967,-9.410905 parent: 1668 - - uid: 5218 + - uid: 4684 components: - type: Transform - pos: 32.5,-20.5 + pos: -9.5,-45.5 parent: 1668 - - uid: 5220 + - uid: 4685 components: - type: Transform - pos: 30.5,-20.5 + pos: -10.5,-45.5 parent: 1668 - - uid: 5221 + - uid: 4686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-26.5 + pos: -11.5,-45.5 parent: 1668 - - uid: 5223 + - uid: 4687 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-26.5 + pos: -12.5,-45.5 parent: 1668 - - uid: 5225 + - uid: 4688 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-26.5 + pos: -13.5,-45.5 parent: 1668 - - uid: 5226 + - uid: 4695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-25.5 + pos: 8.5,-45.5 parent: 1668 - - uid: 5228 + - uid: 4696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-23.5 + pos: 9.5,-45.5 parent: 1668 - - uid: 5230 + - uid: 4697 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-21.5 + pos: 10.5,-45.5 parent: 1668 - - uid: 6144 + - uid: 4698 components: - type: Transform - pos: -22.5,-23.5 + pos: 11.5,-45.5 parent: 1668 - - uid: 6145 + - uid: 4699 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-27.5 + pos: 12.5,-45.5 parent: 1668 -- proto: RailingCornerSmall +- proto: SubstationBasic entities: - - uid: 4471 + - uid: 1312 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-27.5 + pos: 34.5,-13.5 parent: 1668 - - uid: 4473 + - uid: 2070 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-27.5 + pos: -13.5,7.5 parent: 1668 - - uid: 5231 + - uid: 3248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-26.5 + pos: -13.5,15.5 parent: 1668 - - uid: 5232 + - uid: 3734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-20.5 + pos: 18.5,28.5 parent: 1668 -- proto: RandomDrinkBottle - entities: - - uid: 4607 + - uid: 4436 components: + - type: MetaData + name: Thunderdome Substation - type: Transform - pos: 10.5,-27.5 + pos: 2.5,-49.5 parent: 1668 - - uid: 4610 + - uid: 5726 components: - type: Transform - pos: 8.5,-21.5 + pos: -5.5,-16.5 parent: 1668 -- proto: RandomDrinkGlass +- proto: SuitStorageAtmos entities: - - uid: 4611 + - uid: 4034 components: - type: Transform - pos: 7.5,-26.5 + pos: -15.5,25.5 parent: 1668 - - uid: 4612 +- proto: SuitStorageBasic + entities: + - uid: 2911 components: - type: Transform - pos: 7.5,-25.5 + pos: -10.5,5.5 parent: 1668 - - uid: 4613 +- proto: SuitStorageEngi + entities: + - uid: 4035 components: - type: Transform - pos: 3.5,-26.5 + pos: -15.5,24.5 parent: 1668 - - uid: 4614 +- proto: SurveillanceCameraCommand + entities: + - uid: 9397 components: - type: Transform - pos: -4.5,-26.5 + rot: 3.141592653589793 rad + pos: 1.5,1.5 parent: 1668 -- proto: RandomFoodBakedSingle - entities: - - uid: 4616 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Core + - uid: 9400 components: - type: Transform - pos: -3.5,-29.5 + rot: 3.141592653589793 rad + pos: -19.5,13.5 parent: 1668 -- proto: RandomFoodMeal - entities: - - uid: 4608 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Admiralty Lounge + - uid: 9401 components: - type: Transform - pos: -8.5,-26.5 + rot: 3.141592653589793 rad + pos: -18.5,7.5 parent: 1668 - - uid: 4609 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Admiralty Office + - uid: 9402 components: - type: Transform - pos: -8.5,-27.5 + rot: -1.5707963267948966 rad + pos: -13.5,10.5 parent: 1668 -- proto: RandomFoodSingle - entities: - - uid: 4605 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Admiralty Bedroom + - uid: 9430 components: - type: Transform - pos: -4.5,-25.5 + pos: -48.5,3.5 parent: 1668 - - uid: 4606 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Office 1 + - uid: 9431 components: - type: Transform - pos: 2.5,-28.5 + pos: -42.5,3.5 parent: 1668 -- proto: ReagentContainerFlour - entities: - - uid: 4594 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Office 2 + - uid: 9432 components: - type: Transform - pos: -10.626896,-28.3469 + rot: 3.141592653589793 rad + pos: -50.5,-4.5 parent: 1668 - - uid: 4595 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Office 3 + - uid: 9433 components: - type: Transform - pos: -10.376896,-28.50315 + rot: 3.141592653589793 rad + pos: -39.5,-4.5 parent: 1668 -- proto: Recycler - entities: - - uid: 5908 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ERT Ready Room + - uid: 9434 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-31.5 + rot: 1.5707963267948966 rad + pos: -28.5,-5.5 parent: 1668 -- proto: ReinforcedPlasmaWindow - entities: - - uid: 2791 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ERT Armory + - uid: 9471 components: - type: Transform - pos: 6.5,30.5 + pos: -0.5,-49.5 parent: 1668 - - uid: 2812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Thunderdome Command + - uid: 9477 components: - type: Transform - pos: 12.5,30.5 + pos: -34.5,3.5 parent: 1668 - - uid: 2813 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Head Administration + - uid: 9478 components: - type: Transform - pos: 5.5,30.5 + pos: -34.5,9.5 parent: 1668 - - uid: 2877 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Head Administration Office +- proto: SurveillanceCameraEngineering + entities: + - uid: 9403 components: - type: Transform - pos: 13.5,30.5 + rot: -1.5707963267948966 rad + pos: -27.5,24.5 parent: 1668 - - uid: 3990 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos + - uid: 9404 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,21.5 + pos: -15.5,23.5 parent: 1668 - - uid: 4179 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Bar + - uid: 9405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,24.5 + rot: 3.141592653589793 rad + pos: -8.5,22.5 parent: 1668 - - uid: 4180 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineering Desk + - uid: 9406 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,24.5 + rot: 3.141592653589793 rad + pos: -7.5,12.5 parent: 1668 - - uid: 4251 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineering Lobby + - uid: 9407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,27.5 + pos: -10.5,24.5 parent: 1668 - - uid: 4361 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Station Anchor + - uid: 9408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,27.5 + pos: -4.5,24.5 parent: 1668 - - uid: 5108 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Grav Gen + - uid: 9435 components: - type: Transform - pos: 28.5,-25.5 + pos: -10.5,-10.5 parent: 1668 - - uid: 5109 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Telecomms +- proto: SurveillanceCameraGeneral + entities: + - uid: 9390 components: - type: Transform - pos: 28.5,-24.5 + rot: 3.141592653589793 rad + pos: -1.5,-29.5 parent: 1668 - - uid: 5110 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Thunderdome Viewer Door + - uid: 9391 components: - type: Transform - pos: 28.5,-23.5 + rot: 1.5707963267948966 rad + pos: 10.5,-32.5 parent: 1668 - - uid: 5111 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Thunderdome Bar + - uid: 9392 components: - type: Transform - pos: 28.5,-22.5 + rot: 3.141592653589793 rad + pos: 16.5,-25.5 parent: 1668 - - uid: 5112 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Afterhours Southwest Entrance + - uid: 9393 components: - type: Transform - pos: 28.5,-21.5 + rot: -1.5707963267948966 rad + pos: -11.5,-32.5 parent: 1668 - - uid: 5167 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Thunderdome Entrance + - uid: 9416 components: - type: Transform - pos: 31.5,-19.5 + rot: 1.5707963267948966 rad + pos: 19.5,32.5 parent: 1668 - - uid: 5168 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Throngler Cam + - uid: 9417 components: - type: Transform - pos: 33.5,-19.5 + rot: 3.141592653589793 rad + pos: 27.5,22.5 parent: 1668 -- proto: ReinforcedWindow - entities: - - uid: 50 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Court + - uid: 9418 components: - type: Transform - pos: 1.5,-3.5 + pos: 28.5,10.5 parent: 1668 - - uid: 51 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Law Office + - uid: 9422 components: - type: Transform - pos: 2.5,-3.5 + rot: 3.141592653589793 rad + pos: 12.5,16.5 parent: 1668 - - uid: 52 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Hall Security + - uid: 9423 components: - type: Transform - pos: 3.5,-2.5 + rot: -1.5707963267948966 rad + pos: -2.5,10.5 parent: 1668 - - uid: 53 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Hall North + - uid: 9424 components: - type: Transform - pos: 3.5,-1.5 + rot: 3.141592653589793 rad + pos: 11.5,1.5 parent: 1668 - - uid: 54 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Hall East + - uid: 9425 components: - type: Transform - pos: 3.5,-0.5 + rot: 3.141592653589793 rad + pos: -18.5,1.5 parent: 1668 - - uid: 55 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Hall West + - uid: 9426 components: - type: Transform - pos: 3.5,1.5 + rot: -1.5707963267948966 rad + pos: -2.5,-11.5 parent: 1668 - - uid: 56 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Hall South + - uid: 9427 components: - type: Transform - pos: 3.5,2.5 + rot: -1.5707963267948966 rad + pos: -2.5,-18.5 parent: 1668 - - uid: 57 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Hall South South + - uid: 9428 components: - type: Transform - pos: 2.5,2.5 + rot: 3.141592653589793 rad + pos: -32.5,1.5 parent: 1668 - - uid: 58 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Hall West West + - uid: 9429 components: - type: Transform - pos: 0.5,2.5 + rot: 3.141592653589793 rad + pos: -46.5,1.5 parent: 1668 - - uid: 59 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Hall West West West + - uid: 9437 components: - type: Transform - pos: -1.5,2.5 + rot: 3.141592653589793 rad + pos: -10.5,-12.5 parent: 1668 - - uid: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Administration Hall + - uid: 9438 components: - type: Transform - pos: -0.5,2.5 + rot: 3.141592653589793 rad + pos: -22.5,-10.5 parent: 1668 - - uid: 61 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Retirement Home Front Porch + - uid: 9439 components: - type: Transform - pos: -3.5,2.5 + pos: -20.5,-8.5 parent: 1668 - - uid: 62 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Retirement Home Interior + - uid: 9440 components: - type: Transform - pos: -4.5,2.5 + rot: 3.141592653589793 rad + pos: -32.5,-12.5 parent: 1668 - - uid: 63 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Administration Hall West + - uid: 9448 components: - type: Transform - pos: -4.5,1.5 + rot: 3.141592653589793 rad + pos: 23.5,-15.5 parent: 1668 - - uid: 64 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Afterhours Lounge North + - uid: 9449 components: - type: Transform - pos: -4.5,-0.5 + pos: 29.5,-27.5 parent: 1668 - - uid: 65 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Afterhours Lounge South + - uid: 9454 components: - type: Transform - pos: -4.5,-1.5 + rot: 1.5707963267948966 rad + pos: 32.5,0.5 parent: 1668 - - uid: 66 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Docking Bay East + - uid: 9455 components: - type: Transform - pos: -4.5,-2.5 + rot: -1.5707963267948966 rad + pos: 34.5,-1.5 parent: 1668 - - uid: 67 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Docking Bay Docks + - uid: 9456 components: - type: Transform - pos: -3.5,-3.5 + rot: -1.5707963267948966 rad + pos: 19.5,-3.5 parent: 1668 - - uid: 68 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Docking Bay West + - uid: 9458 components: - type: Transform - pos: -2.5,-3.5 + rot: 3.141592653589793 rad + pos: 8.5,-25.5 parent: 1668 - - uid: 69 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Thunderdome North East + - uid: 9459 components: - type: Transform - pos: -0.5,-3.5 + rot: 3.141592653589793 rad + pos: -15.5,-25.5 parent: 1668 - - uid: 77 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Thunderdome North West + - uid: 9460 components: - type: Transform - pos: 6.5,-4.5 + rot: 3.141592653589793 rad + pos: -31.5,-25.5 parent: 1668 - - uid: 92 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Pod Dock Hall + - uid: 9461 components: - type: Transform - pos: 2.5,5.5 + rot: 3.141592653589793 rad + pos: -12.5,-38.5 parent: 1668 - - uid: 93 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Red Team Ready Room + - uid: 9462 components: - type: Transform - pos: 4.5,7.5 + rot: 3.141592653589793 rad + pos: 11.5,-38.5 parent: 1668 - - uid: 94 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Green Team Ready Room + - uid: 9463 components: - type: Transform - pos: 3.5,6.5 + rot: 1.5707963267948966 rad + pos: 17.5,-39.5 parent: 1668 - - uid: 95 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Green Team Hall + - uid: 9464 components: - type: Transform - pos: 4.5,5.5 + rot: -1.5707963267948966 rad + pos: -18.5,-39.5 parent: 1668 - - uid: 103 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Read Team Hall + - uid: 9465 components: - type: Transform - pos: 8.5,5.5 + rot: 3.141592653589793 rad + pos: -17.5,-29.5 parent: 1668 - - uid: 104 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Red Team Lockerroom + - uid: 9466 components: - type: Transform - pos: 7.5,4.5 + rot: 3.141592653589793 rad + pos: 16.5,-29.5 parent: 1668 - - uid: 109 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Green Team Lockerroom + - uid: 9467 components: - type: Transform - pos: 18.5,-0.5 + rot: 1.5707963267948966 rad + pos: 13.5,-32.5 parent: 1668 - - uid: 110 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Green Team Cooridor + - uid: 9468 components: - type: Transform - pos: 16.5,-0.5 + rot: -1.5707963267948966 rad + pos: -14.5,-32.5 parent: 1668 - - uid: 111 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Red Team Cooridor + - uid: 9469 components: - type: Transform - pos: 8.5,-0.5 + rot: -1.5707963267948966 rad + pos: -16.5,-47.5 parent: 1668 - - uid: 112 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Thunderdome Command West + - uid: 9470 components: - type: Transform - pos: 6.5,-0.5 + rot: 1.5707963267948966 rad + pos: 15.5,-47.5 parent: 1668 - - uid: 124 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Thunderdome Command East + - uid: 9472 components: - type: Transform - pos: 8.5,20.5 + rot: 3.141592653589793 rad + pos: -0.5,-37.5 parent: 1668 - - uid: 134 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Thunderdome + - uid: 9475 components: - type: Transform - pos: 6.5,-5.5 + rot: -1.5707963267948966 rad + pos: 19.5,-24.5 parent: 1668 - - uid: 135 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Afterhours Stage + - uid: 9476 components: - type: Transform - pos: 8.5,-4.5 + rot: 3.141592653589793 rad + pos: -12.5,1.5 parent: 1668 - - uid: 136 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: CentComm Waiting Area +- proto: SurveillanceCameraMedical + entities: + - uid: 9441 components: - type: Transform - pos: 8.5,-5.5 + pos: 8.5,-12.5 parent: 1668 - - uid: 150 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemistry + - uid: 9442 components: - type: Transform - pos: -1.5,-24.5 + rot: 3.141592653589793 rad + pos: 11.5,-4.5 parent: 1668 - - uid: 151 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical Front + - uid: 9443 components: - type: Transform - pos: 2.5,-6.5 + pos: 22.5,-13.5 parent: 1668 - - uid: 152 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Cloning +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 8789 components: - type: Transform - pos: 3.5,-7.5 + pos: -14.5,-6.5 parent: 1668 - - uid: 153 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 8788 components: - type: Transform - pos: 5.5,-7.5 + pos: -14.5,-10.5 parent: 1668 - - uid: 161 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 8792 components: - type: Transform - pos: 9.5,-8.5 + pos: -9.5,-7.5 parent: 1668 - - uid: 162 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 8793 components: - type: Transform - pos: 10.5,-8.5 + pos: -11.5,-8.5 parent: 1668 - - uid: 163 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 8794 components: - type: Transform - pos: 11.5,-8.5 + pos: -11.5,-10.5 parent: 1668 - - uid: 164 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 8795 components: - type: Transform - pos: 13.5,-8.5 + pos: -14.5,-8.5 parent: 1668 - - uid: 165 +- proto: SurveillanceCameraRouterService + entities: + - uid: 8791 components: - type: Transform - pos: 15.5,-8.5 + pos: -9.5,-10.5 parent: 1668 - - uid: 166 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 8790 components: - type: Transform - pos: 14.5,-8.5 + pos: -11.5,-6.5 parent: 1668 - - uid: 167 +- proto: SurveillanceCameraScience + entities: + - uid: 9457 components: - type: Transform - pos: 12.5,-9.5 + rot: -1.5707963267948966 rad + pos: 19.5,-30.5 parent: 1668 - - uid: 168 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Afterhours Science Lounge +- proto: SurveillanceCameraSecurity + entities: + - uid: 9413 components: - type: Transform - pos: 11.5,-10.5 + pos: 14.5,18.5 parent: 1668 - - uid: 169 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security Armory + - uid: 9414 components: - type: Transform - pos: 10.5,-10.5 + rot: -1.5707963267948966 rad + pos: 10.5,25.5 parent: 1668 - - uid: 170 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Lethal Armory + - uid: 9415 components: - type: Transform - pos: 9.5,-10.5 + rot: -1.5707963267948966 rad + pos: 10.5,31.5 parent: 1668 - - uid: 171 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: DS Armory + - uid: 9419 components: - type: Transform - pos: 13.5,-10.5 + rot: 3.141592653589793 rad + pos: 5.5,12.5 parent: 1668 - - uid: 172 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell 1 + - uid: 9420 components: - type: Transform - pos: 14.5,-10.5 + rot: 3.141592653589793 rad + pos: 21.5,12.5 parent: 1668 - - uid: 173 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell 2 + - uid: 9421 components: - type: Transform - pos: 15.5,-10.5 + rot: -1.5707963267948966 rad + pos: 12.5,6.5 parent: 1668 - - uid: 183 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security + - uid: 9453 components: - type: Transform - pos: 16.5,-9.5 + rot: 1.5707963267948966 rad + pos: 34.5,-10.5 parent: 1668 - - uid: 190 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Afterhours North Entrance +- proto: SurveillanceCameraService + entities: + - uid: 9436 components: - type: Transform - pos: 17.5,-5.5 + rot: -1.5707963267948966 rad + pos: -7.5,-10.5 parent: 1668 - - uid: 214 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Jani Office + - uid: 9444 components: - type: Transform - pos: 2.5,-10.5 + rot: 3.141592653589793 rad + pos: 5.5,-14.5 parent: 1668 - - uid: 215 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Hydroponics North + - uid: 9445 components: - type: Transform - pos: 2.5,-13.5 + pos: 8.5,-23.5 parent: 1668 - - uid: 220 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Hydroponics South + - uid: 9446 components: - type: Transform - pos: 11.5,2.5 + pos: 14.5,-23.5 parent: 1668 - - uid: 221 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Freezer + - uid: 9447 components: - type: Transform - pos: 13.5,2.5 + pos: 13.5,-19.5 parent: 1668 - - uid: 222 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Kitchen + - uid: 9450 components: - type: Transform - pos: 15.5,2.5 + rot: -1.5707963267948966 rad + pos: 32.5,-21.5 parent: 1668 - - uid: 226 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Afterhours Lounge Backroom + - uid: 9451 components: - type: Transform - pos: 7.5,-14.5 + rot: 1.5707963267948966 rad + pos: 30.5,-20.5 parent: 1668 - - uid: 227 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Afterhours Lounge Bar +- proto: SurveillanceCameraSupply + entities: + - uid: 9409 components: - type: Transform - pos: 6.5,-13.5 + rot: -1.5707963267948966 rad + pos: 6.5,21.5 parent: 1668 - - uid: 228 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Supply Room + - uid: 9410 components: - type: Transform - pos: 7.5,-12.5 + rot: 3.141592653589793 rad + pos: 1.5,21.5 parent: 1668 - - uid: 243 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Supply Lobby + - uid: 9411 components: - type: Transform - pos: 17.5,4.5 + rot: -1.5707963267948966 rad + pos: -1.5,28.5 parent: 1668 - - uid: 244 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Supply Drive-Thru + - uid: 9412 components: - type: Transform - pos: 17.5,6.5 + rot: -1.5707963267948966 rad + pos: 4.5,34.5 parent: 1668 - - uid: 247 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Supply Dock +- proto: SurveillanceWirelessCameraAnchoredEntertainment + entities: + - uid: 4639 components: - type: Transform - pos: 16.5,3.5 + pos: -0.5,-40.5 parent: 1668 - - uid: 259 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: Thunderdome + - uid: 6042 components: - type: Transform - pos: 9.5,7.5 + rot: -1.5707963267948966 rad + pos: -19.5,-17.5 parent: 1668 - - uid: 260 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: youtube.com/liltenhead +- proto: SyndicateMicrowave + entities: + - uid: 1172 components: - type: Transform - pos: 10.5,7.5 + pos: 13.5,-15.5 parent: 1668 - - uid: 261 +- proto: SyringeBluespace + entities: + - uid: 906 components: - type: Transform - pos: 11.5,7.5 + pos: 11.599115,-11.392432 parent: 1668 - - uid: 262 + - uid: 907 components: - type: Transform - pos: 13.5,7.5 + pos: 11.61474,-11.158057 parent: 1668 - - uid: 263 +- proto: SyringeCryostasis + entities: + - uid: 4430 components: - type: Transform - pos: 14.5,7.5 + pos: 3.69003,-10.48921 parent: 1668 - - uid: 264 + - uid: 4646 components: - type: Transform - pos: 11.5,9.5 + pos: 3.47128,-10.45796 parent: 1668 - - uid: 265 +- proto: Table + entities: + - uid: 800 components: - type: Transform - pos: 10.5,9.5 + pos: 16.5,-2.5 parent: 1668 - - uid: 266 + - uid: 803 components: - type: Transform - pos: 9.5,9.5 + pos: 16.5,1.5 parent: 1668 - - uid: 267 + - uid: 1186 components: - type: Transform - pos: 3.5,8.5 + pos: 17.5,-23.5 parent: 1668 - - uid: 268 + - uid: 1310 components: - type: Transform - pos: 14.5,9.5 + pos: 23.5,-27.5 parent: 1668 - - uid: 269 + - uid: 1313 components: - type: Transform - pos: 7.5,9.5 + pos: 29.5,-27.5 parent: 1668 - - uid: 270 + - uid: 1326 components: - type: Transform - pos: 6.5,9.5 + rot: -1.5707963267948966 rad + pos: 26.5,-15.5 parent: 1668 - - uid: 271 + - uid: 1332 components: - type: Transform - pos: 8.5,8.5 + rot: -1.5707963267948966 rad + pos: 21.5,-15.5 parent: 1668 - - uid: 272 + - uid: 1333 components: - type: Transform - pos: 12.5,8.5 + rot: -1.5707963267948966 rad + pos: 21.5,-16.5 parent: 1668 - - uid: 275 + - uid: 1342 components: - type: Transform - pos: 13.5,9.5 + pos: 32.5,-17.5 parent: 1668 - - uid: 301 + - uid: 1360 components: - type: Transform - pos: 11.5,-3.5 + pos: 34.5,-26.5 parent: 1668 - - uid: 302 + - uid: 1366 components: - type: Transform - pos: 13.5,-3.5 + pos: 8.5,5.5 parent: 1668 - - uid: 303 + - uid: 1369 components: - type: Transform - pos: 15.5,-3.5 + pos: 8.5,3.5 parent: 1668 - - uid: 307 + - uid: 1625 components: - type: Transform - pos: 0.5,-6.5 + pos: 7.5,11.5 parent: 1668 - - uid: 308 + - uid: 1628 components: - type: Transform - pos: -1.5,-6.5 + pos: 19.5,11.5 parent: 1668 - - uid: 309 + - uid: 2111 components: - type: Transform - pos: -1.5,-8.5 + pos: 33.5,14.5 parent: 1668 - - uid: 310 + - uid: 2724 components: - type: Transform - pos: 0.5,-8.5 + rot: 3.141592653589793 rad + pos: 18.5,25.5 parent: 1668 - - uid: 336 + - uid: 3018 components: - type: Transform - pos: -7.5,-5.5 + pos: 4.5,18.5 parent: 1668 - - uid: 337 + - uid: 3160 components: - type: Transform - pos: -7.5,-4.5 + pos: -4.5,7.5 parent: 1668 - - uid: 338 + - uid: 3993 components: - type: Transform - pos: -3.5,-6.5 + pos: -4.5,29.5 parent: 1668 - - uid: 339 + - uid: 4025 components: - type: Transform - pos: -4.5,-7.5 + pos: -2.5,29.5 parent: 1668 - - uid: 340 + - uid: 4042 components: - type: Transform - pos: -6.5,-7.5 + pos: -16.5,18.5 parent: 1668 - - uid: 348 + - uid: 4043 components: - type: Transform - pos: 21.5,6.5 + pos: -17.5,18.5 parent: 1668 - - uid: 355 + - uid: 4044 components: - type: Transform - pos: 31.5,6.5 + pos: -18.5,18.5 parent: 1668 - - uid: 360 + - uid: 4231 components: - type: Transform - pos: 24.5,7.5 + rot: 3.141592653589793 rad + pos: -24.5,-2.5 parent: 1668 - - uid: 361 + - uid: 4261 components: - type: Transform - pos: 28.5,7.5 + pos: 3.5,-33.5 parent: 1668 - - uid: 393 + - uid: 4262 components: - type: Transform - pos: 31.5,-7.5 + pos: 3.5,-35.5 parent: 1668 - - uid: 396 + - uid: 4263 components: - type: Transform - pos: 23.5,-8.5 + pos: -4.5,-35.5 parent: 1668 - - uid: 401 + - uid: 4264 components: - type: Transform - pos: 29.5,-8.5 + pos: -4.5,-33.5 parent: 1668 - - uid: 408 + - uid: 4268 components: - type: Transform - pos: 21.5,-7.5 + pos: -46.5,-2.5 parent: 1668 - - uid: 442 + - uid: 4327 components: - type: Transform - pos: 35.5,1.5 + rot: 1.5707963267948966 rad + pos: -2.5,10.5 parent: 1668 - - uid: 443 + - uid: 4647 components: - type: Transform - pos: 35.5,3.5 + rot: 3.141592653589793 rad + pos: -29.5,-2.5 parent: 1668 - - uid: 444 + - uid: 4835 components: - type: Transform - pos: 35.5,5.5 + pos: 17.5,-29.5 parent: 1668 - - uid: 445 + - uid: 4836 components: - type: Transform - pos: 35.5,-2.5 + pos: -18.5,-29.5 parent: 1668 - - uid: 446 + - uid: 6575 components: - type: Transform - pos: 35.5,-4.5 + rot: 3.141592653589793 rad + pos: -30.5,-4.5 parent: 1668 - - uid: 447 + - uid: 6576 components: - type: Transform - pos: 35.5,-6.5 + rot: 3.141592653589793 rad + pos: -31.5,-4.5 parent: 1668 - - uid: 462 + - uid: 6577 components: - type: Transform - pos: 33.5,5.5 + rot: 3.141592653589793 rad + pos: -31.5,-6.5 parent: 1668 - - uid: 463 + - uid: 6578 components: - type: Transform - pos: 33.5,3.5 + rot: 3.141592653589793 rad + pos: -31.5,-7.5 parent: 1668 - - uid: 464 + - uid: 6681 components: - type: Transform - pos: 33.5,1.5 + rot: 3.141592653589793 rad + pos: -31.5,-8.5 parent: 1668 - - uid: 465 + - uid: 6682 components: - type: Transform - pos: 33.5,-2.5 + rot: 3.141592653589793 rad + pos: -30.5,-6.5 parent: 1668 - - uid: 466 + - uid: 6683 components: - type: Transform - pos: 33.5,-4.5 + rot: 3.141592653589793 rad + pos: -30.5,-7.5 parent: 1668 - - uid: 467 + - uid: 6684 components: - type: Transform - pos: 33.5,-6.5 + rot: 3.141592653589793 rad + pos: -30.5,-8.5 parent: 1668 - - uid: 471 + - uid: 6685 components: - type: Transform - pos: 34.5,-1.5 + rot: 3.141592653589793 rad + pos: -30.5,-10.5 parent: 1668 - - uid: 472 + - uid: 6686 components: - type: Transform - pos: 34.5,0.5 + rot: 3.141592653589793 rad + pos: -31.5,-10.5 parent: 1668 - - uid: 670 + - uid: 8817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 + pos: -13.5,-6.5 parent: 1668 - - uid: 671 + - uid: 8818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 + pos: -10.5,-6.5 parent: 1668 - - uid: 676 + - uid: 9091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,4.5 + pos: -46.5,1.5 parent: 1668 - - uid: 677 + - uid: 9099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 + pos: -29.5,1.5 parent: 1668 - - uid: 682 + - uid: 9106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,7.5 + pos: -9.5,1.5 parent: 1668 - - uid: 683 + - uid: 9215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,7.5 + pos: -40.5,1.5 parent: 1668 - - uid: 684 + - uid: 9282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,5.5 + pos: -15.5,1.5 parent: 1668 - - uid: 685 + - uid: 9286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,5.5 + pos: -9.5,-2.5 parent: 1668 - - uid: 700 + - uid: 9287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,6.5 + pos: -15.5,-2.5 parent: 1668 - - uid: 701 +- proto: TableCarpet + entities: + - uid: 2037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,6.5 + pos: 33.5,25.5 parent: 1668 - - uid: 705 + - uid: 2038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,8.5 + pos: 33.5,26.5 parent: 1668 - - uid: 741 + - uid: 2039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-10.5 + pos: 33.5,27.5 parent: 1668 - - uid: 744 + - uid: 2077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-13.5 + pos: 31.5,11.5 parent: 1668 - - uid: 758 + - uid: 2093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-14.5 + pos: 31.5,12.5 parent: 1668 - - uid: 759 + - uid: 2109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-13.5 + pos: 32.5,11.5 parent: 1668 - - uid: 760 + - uid: 2840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-12.5 + pos: -23.5,12.5 parent: 1668 - - uid: 761 + - uid: 2891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-10.5 + pos: -23.5,13.5 parent: 1668 - - uid: 762 + - uid: 2892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-9.5 + pos: -22.5,13.5 parent: 1668 - - uid: 778 + - uid: 2893 components: - type: Transform - pos: -2.5,-14.5 + pos: -23.5,9.5 parent: 1668 - - uid: 779 + - uid: 2894 components: - type: Transform - pos: -1.5,-14.5 + pos: -23.5,10.5 parent: 1668 - - uid: 780 + - uid: 4665 components: - type: Transform - pos: 0.5,-14.5 + pos: -22.5,-17.5 parent: 1668 - - uid: 781 + - uid: 4666 components: - type: Transform - pos: 1.5,-14.5 + pos: -23.5,-17.5 parent: 1668 - - uid: 819 + - uid: 6182 components: - type: Transform - pos: -10.5,32.5 + pos: -19.5,-8.5 parent: 1668 - - uid: 828 + - uid: 9070 components: - type: Transform - pos: 9.5,-17.5 + pos: -6.5,-9.5 parent: 1668 - - uid: 829 + - uid: 9071 components: - type: Transform - pos: 11.5,-16.5 + pos: -7.5,-9.5 parent: 1668 - - uid: 830 +- proto: TableFancyGreen + entities: + - uid: 6066 components: - type: Transform - pos: 8.5,-16.5 + pos: -10.5,-17.5 parent: 1668 - - uid: 831 + - uid: 6067 components: - type: Transform - pos: 10.5,-17.5 + pos: -11.5,-17.5 parent: 1668 - - uid: 1193 + - uid: 6124 components: - type: Transform - pos: -8.5,32.5 + pos: -29.5,-17.5 parent: 1668 - - uid: 1417 + - uid: 6125 components: - type: Transform - pos: -4.5,11.5 + pos: -28.5,-17.5 parent: 1668 - - uid: 1418 + - uid: 6173 components: - type: Transform - pos: -3.5,17.5 + rot: 1.5707963267948966 rad + pos: -24.5,-7.5 parent: 1668 - - uid: 1419 + - uid: 6671 components: - type: Transform - pos: 2.5,17.5 + pos: -31.5,-17.5 parent: 1668 - - uid: 1420 + - uid: 6672 components: - type: Transform - pos: 3.5,16.5 + pos: -32.5,-17.5 parent: 1668 - - uid: 1421 + - uid: 6673 components: - type: Transform - pos: 3.5,14.5 + pos: -34.5,-17.5 parent: 1668 - - uid: 1422 + - uid: 6674 components: - type: Transform - pos: 3.5,12.5 + pos: -35.5,-17.5 parent: 1668 - - uid: 1423 + - uid: 6675 components: - type: Transform - pos: 3.5,10.5 + pos: -37.5,-17.5 parent: 1668 - - uid: 1429 + - uid: 6676 components: - type: Transform - pos: 6.5,-8.5 + pos: -38.5,-17.5 parent: 1668 - - uid: 1466 +- proto: TableFancyPurple + entities: + - uid: 6070 components: - type: Transform - pos: 16.5,-4.5 + rot: 1.5707963267948966 rad + pos: -17.5,-17.5 parent: 1668 - - uid: 1518 + - uid: 6071 components: - type: Transform - pos: -16.5,17.5 + rot: 1.5707963267948966 rad + pos: -16.5,-17.5 parent: 1668 - - uid: 1519 + - uid: 9145 components: - type: Transform - pos: -16.5,18.5 + rot: 1.5707963267948966 rad + pos: 20.5,-32.5 parent: 1668 - - uid: 1520 + - uid: 9146 components: - type: Transform - pos: -15.5,18.5 + rot: 1.5707963267948966 rad + pos: 20.5,-31.5 parent: 1668 - - uid: 1521 + - uid: 9147 components: - type: Transform - pos: -13.5,18.5 + rot: 1.5707963267948966 rad + pos: 21.5,-32.5 parent: 1668 - - uid: 1522 + - uid: 9148 components: - type: Transform - pos: -12.5,18.5 + rot: 1.5707963267948966 rad + pos: 21.5,-31.5 parent: 1668 - - uid: 1539 + - uid: 9153 components: - type: Transform - pos: -14.5,20.5 + rot: 1.5707963267948966 rad + pos: 21.5,-33.5 parent: 1668 - - uid: 1540 + - uid: 9154 components: - type: Transform - pos: -14.5,21.5 + rot: 1.5707963267948966 rad + pos: 20.5,-33.5 parent: 1668 - - uid: 1541 +- proto: TableFancyRed + entities: + - uid: 6068 components: - type: Transform - pos: -14.5,22.5 + rot: -1.5707963267948966 rad + pos: -14.5,-17.5 parent: 1668 - - uid: 1542 + - uid: 6069 components: - type: Transform - pos: -14.5,23.5 + rot: -1.5707963267948966 rad + pos: -13.5,-17.5 parent: 1668 - - uid: 1543 + - uid: 7273 components: - type: Transform - pos: -15.5,23.5 + pos: -49.5,5.5 parent: 1668 - - uid: 1544 + - uid: 7281 components: - type: Transform - pos: -16.5,23.5 + pos: -48.5,5.5 parent: 1668 - - uid: 1545 + - uid: 7303 components: - type: Transform - pos: -14.5,29.5 + pos: -50.5,5.5 parent: 1668 - - uid: 1546 +- proto: TableFancyWhite + entities: + - uid: 6061 components: - type: Transform - pos: -15.5,29.5 + rot: 3.141592653589793 rad + pos: -7.5,-17.5 parent: 1668 - - uid: 1547 + - uid: 6065 components: - type: Transform - pos: -16.5,29.5 + rot: 3.141592653589793 rad + pos: -8.5,-17.5 parent: 1668 - - uid: 1548 +- proto: TableGlass + entities: + - uid: 4667 components: - type: Transform - pos: -14.5,30.5 + pos: -26.5,-17.5 parent: 1668 - - uid: 1549 + - uid: 4678 components: - type: Transform - pos: -14.5,26.5 + pos: -25.5,-17.5 parent: 1668 - - uid: 1550 +- proto: TablePlasmaGlass + entities: + - uid: 7318 components: - type: Transform - pos: -15.5,26.5 + pos: -49.5,-6.5 parent: 1668 - - uid: 1551 + - uid: 7320 components: - type: Transform - pos: -16.5,26.5 + pos: -50.5,-6.5 parent: 1668 - - uid: 1566 + - uid: 7322 components: - type: Transform - pos: -12.5,32.5 + pos: -48.5,-6.5 parent: 1668 - - uid: 1572 +- proto: TableReinforced + entities: + - uid: 13 components: - type: Transform - pos: -6.5,32.5 + pos: -1.5,1.5 parent: 1668 - - uid: 1999 + - uid: 15 components: - type: Transform - pos: 5.5,10.5 + pos: -2.5,-2.5 parent: 1668 - - uid: 2000 + - uid: 137 components: - type: Transform - pos: 5.5,12.5 + pos: -3.5,-2.5 parent: 1668 - - uid: 2001 + - uid: 149 components: - type: Transform - pos: 5.5,14.5 + pos: 1.5,-2.5 parent: 1668 - - uid: 2242 + - uid: 151 components: - type: Transform - pos: 15.5,10.5 + pos: 13.5,2.5 parent: 1668 - - uid: 2243 + - uid: 156 components: - type: Transform - pos: 15.5,12.5 + pos: 15.5,-3.5 parent: 1668 - - uid: 2244 + - uid: 157 components: - type: Transform - pos: 15.5,14.5 + pos: 13.5,-3.5 parent: 1668 - - uid: 2276 + - uid: 163 components: - type: Transform - pos: 23.5,14.5 + pos: 15.5,2.5 parent: 1668 - - uid: 2277 + - uid: 489 components: - type: Transform - pos: 33.5,14.5 + pos: -0.5,1.5 parent: 1668 - - uid: 2278 + - uid: 492 components: - type: Transform - pos: 31.5,14.5 + pos: -1.5,0.5 parent: 1668 - - uid: 2279 + - uid: 493 components: - type: Transform - pos: 30.5,14.5 + pos: 0.5,1.5 parent: 1668 - - uid: 2280 + - uid: 494 components: - type: Transform - pos: 29.5,14.5 + pos: 0.5,0.5 parent: 1668 - - uid: 2281 + - uid: 508 components: - type: Transform - pos: 27.5,14.5 + pos: -3.5,-1.5 parent: 1668 - - uid: 2282 + - uid: 512 components: - type: Transform - pos: 26.5,14.5 + pos: 3.5,-1.5 parent: 1668 - - uid: 2283 + - uid: 515 components: - type: Transform - pos: 25.5,14.5 + rot: 1.5707963267948966 rad + pos: 8.5,8.5 parent: 1668 - - uid: 2337 + - uid: 575 components: - type: Transform - pos: 24.5,15.5 + pos: 11.5,3.5 parent: 1668 - - uid: 2338 + - uid: 576 components: - type: Transform - pos: 24.5,16.5 + pos: 11.5,4.5 parent: 1668 - - uid: 2339 + - uid: 581 components: - type: Transform - pos: 24.5,17.5 + rot: 3.141592653589793 rad + pos: 11.5,5.5 parent: 1668 - - uid: 2341 + - uid: 597 components: - type: Transform - pos: 24.5,19.5 + pos: 15.5,4.5 parent: 1668 - - uid: 2505 + - uid: 599 components: - type: Transform - pos: 10.5,16.5 + pos: 13.5,4.5 parent: 1668 - - uid: 2506 + - uid: 640 components: - type: Transform - pos: 10.5,17.5 + rot: 1.5707963267948966 rad + pos: 9.5,-13.5 parent: 1668 - - uid: 2507 + - uid: 649 components: - type: Transform - pos: 10.5,18.5 + pos: 11.5,-11.5 parent: 1668 - - uid: 2509 + - uid: 650 components: - type: Transform - pos: 8.5,16.5 + pos: 11.5,-10.5 parent: 1668 - - uid: 2777 + - uid: 651 components: - type: Transform - pos: 10.5,26.5 + pos: 11.5,-9.5 parent: 1668 - - uid: 2778 + - uid: 652 components: - type: Transform - pos: 11.5,26.5 + pos: 2.5,-11.5 parent: 1668 - - uid: 2779 + - uid: 653 components: - type: Transform - pos: 11.5,27.5 + pos: 2.5,-10.5 parent: 1668 - - uid: 2780 + - uid: 654 components: - type: Transform - pos: 8.5,26.5 + pos: 2.5,-9.5 parent: 1668 - - uid: 2781 + - uid: 655 components: - type: Transform - pos: 7.5,26.5 + pos: 3.5,-10.5 parent: 1668 - - uid: 2782 + - uid: 656 components: - type: Transform - pos: 7.5,27.5 + pos: 4.5,-10.5 parent: 1668 - - uid: 2786 + - uid: 657 components: - type: Transform - pos: 7.5,29.5 + pos: 6.5,-8.5 parent: 1668 - - uid: 2787 + - uid: 658 components: - type: Transform - pos: 11.5,29.5 + pos: 7.5,-8.5 parent: 1668 - - uid: 2906 + - uid: 659 components: - type: Transform - pos: 10.5,-15.5 + pos: 6.5,-12.5 parent: 1668 - - uid: 3122 + - uid: 660 components: - type: Transform - pos: 7.5,-8.5 + pos: 7.5,-12.5 parent: 1668 - - uid: 3126 + - uid: 721 components: - type: Transform - pos: 7.5,7.5 + pos: 19.5,-8.5 parent: 1668 - - uid: 3127 + - uid: 722 components: - type: Transform - pos: 6.5,7.5 + pos: 20.5,-8.5 parent: 1668 - - uid: 3128 + - uid: 723 components: - type: Transform - pos: 9.5,-15.5 + pos: 22.5,-8.5 parent: 1668 - - uid: 3248 + - uid: 724 components: - type: Transform - pos: 17.5,-32.5 + pos: 23.5,-8.5 parent: 1668 - - uid: 3249 + - uid: 735 components: - type: Transform - pos: 16.5,-32.5 + pos: 12.5,-13.5 parent: 1668 - - uid: 3250 + - uid: 736 components: - type: Transform - pos: 15.5,-32.5 + pos: 13.5,-13.5 parent: 1668 - - uid: 3287 + - uid: 737 components: - type: Transform - pos: -10.5,1.5 + pos: 14.5,-13.5 parent: 1668 - - uid: 3288 + - uid: 738 components: - type: Transform - pos: -11.5,1.5 + pos: 15.5,-13.5 parent: 1668 - - uid: 3289 + - uid: 739 components: - type: Transform - pos: -12.5,1.5 + pos: 16.5,-13.5 parent: 1668 - - uid: 3290 + - uid: 740 components: - type: Transform - pos: -14.5,1.5 + pos: 17.5,-13.5 parent: 1668 - - uid: 3291 + - uid: 741 components: - type: Transform - pos: -15.5,1.5 + pos: 18.5,-13.5 parent: 1668 - - uid: 3292 + - uid: 785 components: - type: Transform - pos: -16.5,1.5 + pos: 10.5,-8.5 parent: 1668 - - uid: 3293 + - uid: 813 components: - type: Transform - pos: -13.5,2.5 + pos: 8.5,-6.5 parent: 1668 - - uid: 3327 + - uid: 814 components: - type: Transform - pos: -27.5,8.5 + pos: 10.5,-6.5 parent: 1668 - - uid: 3328 + - uid: 815 components: - type: Transform - pos: -27.5,9.5 + pos: 11.5,-6.5 parent: 1668 - - uid: 3329 + - uid: 829 components: - type: Transform - pos: -27.5,12.5 + pos: 14.5,-4.5 parent: 1668 - - uid: 3330 + - uid: 830 components: - type: Transform - pos: -27.5,11.5 + pos: 16.5,-4.5 parent: 1668 - - uid: 3385 + - uid: 905 components: - type: Transform - pos: -28.5,-0.5 + rot: 1.5707963267948966 rad + pos: 11.5,9.5 parent: 1668 - - uid: 3386 + - uid: 936 components: - type: Transform - pos: -26.5,-0.5 + pos: -3.5,-0.5 parent: 1668 - - uid: 3933 + - uid: 946 components: - type: Transform - pos: -33.5,7.5 + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 parent: 1668 - - uid: 3934 + - uid: 947 components: - type: Transform - pos: -32.5,7.5 + rot: 1.5707963267948966 rad + pos: 2.5,-19.5 parent: 1668 - - uid: 3935 + - uid: 955 components: - type: Transform - pos: -30.5,7.5 + rot: 1.5707963267948966 rad + pos: 2.5,-18.5 parent: 1668 - - uid: 3939 + - uid: 974 components: - type: Transform - pos: -34.5,3.5 + pos: 11.5,-19.5 parent: 1668 - - uid: 3940 + - uid: 975 components: - type: Transform - pos: -34.5,4.5 + pos: 11.5,-18.5 parent: 1668 - - uid: 3941 + - uid: 976 components: - type: Transform - pos: -34.5,5.5 + pos: 11.5,-17.5 parent: 1668 - - uid: 3942 + - uid: 999 components: - type: Transform - pos: -34.5,6.5 + rot: 3.141592653589793 rad + pos: 7.5,-17.5 parent: 1668 - - uid: 3972 + - uid: 1000 components: - type: Transform - pos: -34.5,-2.5 + pos: 5.5,-21.5 parent: 1668 - - uid: 3973 + - uid: 1001 components: - type: Transform - pos: -34.5,-0.5 + rot: 3.141592653589793 rad + pos: 6.5,-19.5 parent: 1668 - - uid: 3974 + - uid: 1002 components: - type: Transform - pos: -34.5,1.5 + pos: 7.5,-21.5 parent: 1668 - - uid: 3975 + - uid: 1003 components: - type: Transform - pos: -32.5,1.5 + pos: 8.5,-21.5 parent: 1668 - - uid: 3976 + - uid: 1004 components: - type: Transform - pos: -32.5,-2.5 + pos: 6.5,-21.5 parent: 1668 - - uid: 3977 + - uid: 1009 components: - type: Transform - pos: -32.5,-0.5 + rot: 3.141592653589793 rad + pos: 10.5,-23.5 parent: 1668 - - uid: 3978 + - uid: 1010 components: - type: Transform - pos: -33.5,-0.5 + rot: 3.141592653589793 rad + pos: 9.5,-23.5 parent: 1668 - - uid: 4222 + - uid: 1011 components: - type: Transform - pos: -11.5,-17.5 + rot: 3.141592653589793 rad + pos: 8.5,-23.5 parent: 1668 - - uid: 4223 + - uid: 1071 components: - type: Transform - pos: -10.5,-17.5 + pos: 14.5,-15.5 parent: 1668 - - uid: 4224 + - uid: 1072 components: - type: Transform - pos: -9.5,-16.5 + pos: 18.5,-18.5 parent: 1668 - - uid: 4225 + - uid: 1099 components: - type: Transform - pos: -12.5,-16.5 + pos: 18.5,-17.5 parent: 1668 - - uid: 4265 + - uid: 1108 components: - type: Transform - pos: 0.5,-20.5 + pos: 18.5,-19.5 parent: 1668 - - uid: 4305 + - uid: 1109 components: - type: Transform - pos: -4.5,-21.5 + pos: 12.5,-15.5 parent: 1668 - - uid: 4306 + - uid: 1110 components: - type: Transform - pos: -4.5,-22.5 + pos: 13.5,-15.5 parent: 1668 - - uid: 4307 + - uid: 1122 components: - type: Transform - pos: -4.5,-23.5 + pos: 32.5,-12.5 parent: 1668 - - uid: 4308 + - uid: 1123 components: - type: Transform - pos: -2.5,-23.5 + pos: 32.5,-11.5 parent: 1668 - - uid: 4309 + - uid: 1124 components: - type: Transform - pos: -2.5,-22.5 + pos: 32.5,-10.5 parent: 1668 - - uid: 4310 + - uid: 1125 components: - type: Transform - pos: -2.5,-21.5 + pos: 32.5,-9.5 parent: 1668 - - uid: 4311 + - uid: 1152 components: - type: Transform - pos: 1.5,-21.5 + pos: 33.5,-8.5 parent: 1668 - - uid: 4312 + - uid: 1165 components: - type: Transform - pos: 1.5,-22.5 + pos: 16.5,-19.5 parent: 1668 - - uid: 4313 + - uid: 1167 components: - type: Transform - pos: 1.5,-23.5 + pos: 15.5,-17.5 parent: 1668 - - uid: 4314 + - uid: 1170 components: - type: Transform - pos: 3.5,-23.5 + pos: 14.5,-17.5 parent: 1668 - - uid: 4315 + - uid: 1171 components: - type: Transform - pos: 3.5,-22.5 + pos: 16.5,-17.5 parent: 1668 - - uid: 4316 + - uid: 1173 components: - type: Transform - pos: 3.5,-21.5 + pos: 17.5,-19.5 parent: 1668 - - uid: 4354 + - uid: 1210 components: - type: Transform - pos: -5.5,-30.5 + pos: 27.5,-21.5 parent: 1668 - - uid: 4355 + - uid: 1211 components: - type: Transform - pos: -7.5,-30.5 + pos: 26.5,-19.5 parent: 1668 - - uid: 4365 + - uid: 1213 components: - type: Transform - pos: 4.5,-30.5 + pos: 25.5,-19.5 parent: 1668 - - uid: 4367 + - uid: 1214 components: - type: Transform - pos: 6.5,-30.5 + pos: 26.5,-23.5 parent: 1668 - - uid: 4651 + - uid: 1215 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-30.5 + pos: 30.5,-22.5 parent: 1668 - - uid: 4652 + - uid: 1220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-30.5 + pos: 28.5,-21.5 parent: 1668 - - uid: 4653 + - uid: 1225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-30.5 + pos: 30.5,-24.5 parent: 1668 - - uid: 4663 + - uid: 1226 components: - type: Transform - pos: -1.5,-34.5 + pos: 25.5,-23.5 parent: 1668 - - uid: 4664 + - uid: 1227 components: - type: Transform - pos: -0.5,-34.5 + pos: 27.5,-23.5 parent: 1668 - - uid: 4665 + - uid: 1228 components: - type: Transform - pos: 0.5,-34.5 + pos: 27.5,-24.5 parent: 1668 - - uid: 4752 + - uid: 1230 components: - type: Transform - pos: 17.5,-22.5 + pos: 29.5,-24.5 parent: 1668 - - uid: 4753 + - uid: 1231 components: - type: Transform - pos: 15.5,-22.5 + pos: 28.5,-18.5 parent: 1668 - - uid: 5321 + - uid: 1232 components: - type: Transform - pos: 30.5,6.5 + pos: 29.5,-18.5 parent: 1668 - - uid: 5333 + - uid: 1233 components: - type: Transform - pos: 21.5,-23.5 + pos: 28.5,-24.5 parent: 1668 - - uid: 5334 + - uid: 1234 components: - type: Transform - pos: 20.5,-23.5 + pos: 24.5,-22.5 parent: 1668 - - uid: 5335 + - uid: 1235 components: - type: Transform - pos: 19.5,-23.5 + pos: 27.5,-18.5 parent: 1668 - - uid: 5386 + - uid: 1236 components: - type: Transform - pos: 22.5,6.5 + pos: 27.5,-19.5 parent: 1668 - - uid: 5391 + - uid: 1237 components: - type: Transform - pos: 20.5,6.5 + pos: 25.5,-22.5 parent: 1668 - - uid: 5397 + - uid: 1238 components: - type: Transform - pos: 32.5,6.5 + pos: 24.5,-20.5 parent: 1668 - - uid: 5880 + - uid: 1239 components: - type: Transform - pos: -0.5,-40.5 + pos: 24.5,-21.5 parent: 1668 - - uid: 5910 + - uid: 1241 components: - type: Transform - pos: -17.5,-34.5 + pos: 30.5,-18.5 parent: 1668 - - uid: 5911 + - uid: 1242 components: - type: Transform - pos: -18.5,-34.5 + pos: 25.5,-20.5 parent: 1668 - - uid: 5912 + - uid: 1248 components: - type: Transform - pos: -19.5,-34.5 + pos: 30.5,-20.5 parent: 1668 - - uid: 5914 + - uid: 1251 components: - type: Transform - pos: -20.5,-31.5 + rot: 1.5707963267948966 rad + pos: 34.5,-12.5 parent: 1668 - - uid: 5915 + - uid: 1579 components: - type: Transform - pos: -20.5,-32.5 + pos: 18.5,12.5 parent: 1668 - - uid: 5916 + - uid: 1580 components: - type: Transform - pos: -20.5,-33.5 + pos: 8.5,12.5 parent: 1668 - - uid: 5947 + - uid: 1591 components: - type: Transform - pos: -15.5,-25.5 + pos: 14.5,5.5 parent: 1668 - - uid: 5948 + - uid: 1592 components: - type: Transform - pos: -17.5,-25.5 + pos: 14.5,6.5 parent: 1668 - - uid: 5976 + - uid: 1598 components: - type: Transform - pos: -23.5,-27.5 + pos: 15.5,7.5 parent: 1668 - - uid: 5977 + - uid: 1599 components: - type: Transform - pos: -21.5,-27.5 + pos: 14.5,7.5 parent: 1668 - - uid: 5978 + - uid: 1600 components: - type: Transform - pos: -21.5,-23.5 + pos: 13.5,7.5 parent: 1668 - - uid: 5979 + - uid: 1603 components: - type: Transform - pos: -23.5,-23.5 + pos: 14.5,13.5 parent: 1668 - - uid: 5980 + - uid: 1606 components: - type: Transform - pos: -23.5,-25.5 + pos: 13.5,13.5 parent: 1668 - - uid: 5981 + - uid: 1607 components: - type: Transform - pos: -22.5,-25.5 + pos: 12.5,13.5 parent: 1668 - - uid: 5982 + - uid: 1619 components: - type: Transform - pos: -21.5,-25.5 + pos: 12.5,12.5 parent: 1668 - - uid: 5990 + - uid: 2103 components: - type: Transform - pos: -20.5,-21.5 + rot: 1.5707963267948966 rad + pos: 11.5,7.5 parent: 1668 - - uid: 5991 + - uid: 2148 components: - type: Transform - pos: -19.5,-21.5 + rot: 3.141592653589793 rad + pos: 16.5,22.5 parent: 1668 - - uid: 5992 + - uid: 2152 components: - type: Transform - pos: -18.5,-21.5 + rot: 3.141592653589793 rad + pos: 15.5,22.5 parent: 1668 - - uid: 6024 + - uid: 2157 components: - type: Transform - pos: -2.5,-33.5 + pos: 10.5,20.5 parent: 1668 - - uid: 6025 + - uid: 2168 components: - type: Transform - pos: -2.5,-32.5 + pos: 16.5,20.5 parent: 1668 - - uid: 6156 + - uid: 2244 components: - type: Transform - pos: -2.5,-31.5 + pos: 11.5,18.5 parent: 1668 - - uid: 6157 + - uid: 2258 components: - type: Transform - pos: 1.5,-33.5 + rot: 3.141592653589793 rad + pos: 16.5,24.5 parent: 1668 - - uid: 6158 + - uid: 2260 components: - type: Transform - pos: 1.5,-32.5 + rot: 3.141592653589793 rad + pos: 11.5,22.5 parent: 1668 - - uid: 6159 + - uid: 2261 components: - type: Transform - pos: 1.5,-31.5 + rot: 3.141592653589793 rad + pos: 10.5,22.5 parent: 1668 - - uid: 6275 + - uid: 2262 components: - type: Transform - pos: -0.5,-38.5 + rot: 3.141592653589793 rad + pos: 15.5,24.5 parent: 1668 - - uid: 6288 + - uid: 2265 components: - type: Transform - pos: -0.5,-46.5 + rot: 3.141592653589793 rad + pos: 11.5,24.5 parent: 1668 - - uid: 6289 + - uid: 2266 components: - type: Transform - pos: -0.5,-45.5 + rot: 3.141592653589793 rad + pos: 10.5,24.5 parent: 1668 - - uid: 6290 + - uid: 2268 components: - type: Transform - pos: -0.5,-44.5 + rot: 3.141592653589793 rad + pos: 11.5,26.5 parent: 1668 - - uid: 6291 + - uid: 2269 components: - type: Transform - pos: -2.5,-46.5 + rot: 3.141592653589793 rad + pos: 10.5,26.5 parent: 1668 - - uid: 6295 + - uid: 2270 components: - type: Transform - pos: -2.5,-44.5 + rot: 3.141592653589793 rad + pos: 12.5,28.5 parent: 1668 - - uid: 6296 + - uid: 2271 components: - type: Transform - pos: 1.5,-46.5 + rot: 3.141592653589793 rad + pos: 11.5,28.5 parent: 1668 - - uid: 6300 + - uid: 2272 components: - type: Transform - pos: 1.5,-44.5 + rot: 3.141592653589793 rad + pos: 10.5,28.5 parent: 1668 - - uid: 6707 + - uid: 2273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-32.5 + rot: 3.141592653589793 rad + pos: 14.5,28.5 parent: 1668 - - uid: 6770 + - uid: 2274 components: - type: Transform - pos: -1.5,-20.5 + rot: 3.141592653589793 rad + pos: 15.5,28.5 parent: 1668 - - uid: 6771 + - uid: 2275 components: - type: Transform - pos: 0.5,-24.5 + rot: 3.141592653589793 rad + pos: 16.5,28.5 parent: 1668 - - uid: 6783 + - uid: 2276 components: - type: Transform - pos: 5.5,6.5 + rot: 3.141592653589793 rad + pos: 16.5,26.5 parent: 1668 - - uid: 6847 + - uid: 2277 components: - type: Transform - pos: 15.5,8.5 + rot: 3.141592653589793 rad + pos: 15.5,26.5 parent: 1668 -- proto: RubberStampApproved - entities: - - uid: 6489 + - uid: 2316 components: - type: Transform - pos: 25.503832,-7.398362 + pos: 7.5,-34.5 parent: 1668 -- proto: RubberStampCentcom - entities: - - uid: 2917 + - uid: 2317 components: - type: Transform - pos: 0.630217,1.1330963 + pos: 7.5,-33.5 parent: 1668 - - uid: 3749 + - uid: 2318 components: - type: Transform - pos: -20.5068,11.16328 + pos: -8.5,-35.5 parent: 1668 -- proto: RubberStampDenied - entities: - - uid: 590 + - uid: 2319 components: - type: Transform - pos: 25.691332,-7.585862 + pos: -8.5,-34.5 parent: 1668 -- proto: RubberStampQm - entities: - - uid: 2234 + - uid: 2320 components: - type: Transform - pos: -12.516554,9.632545 + pos: -8.5,-33.5 parent: 1668 -- proto: RubberStampTrader - entities: - - uid: 2233 + - uid: 2423 components: - type: Transform - pos: -12.532179,11.55442 + pos: 15.5,34.5 parent: 1668 -- proto: Screen - entities: - - uid: 4479 + - uid: 2424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-0.5 + pos: 16.5,34.5 parent: 1668 - - uid: 4480 + - uid: 2425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-25.5 + pos: 11.5,34.5 parent: 1668 - - uid: 5311 + - uid: 2426 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-30.5 + pos: 10.5,34.5 parent: 1668 - - uid: 6988 + - uid: 2529 components: - type: Transform - pos: 33.5,3.5 + pos: 14.5,9.5 parent: 1668 - - uid: 6989 + - uid: 2530 components: - type: Transform - pos: 33.5,-4.5 + pos: 14.5,8.5 parent: 1668 - - uid: 6996 + - uid: 2584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,26.5 + pos: 16.5,30.5 parent: 1668 - - uid: 6997 + - uid: 2585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-15.5 + pos: 15.5,30.5 parent: 1668 - - uid: 6998 + - uid: 2586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-15.5 + pos: 14.5,30.5 parent: 1668 - - uid: 6999 + - uid: 2587 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-44.5 + pos: 12.5,30.5 parent: 1668 - - uid: 7000 + - uid: 2588 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-30.5 + pos: 11.5,30.5 parent: 1668 - - uid: 7001 + - uid: 2589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-9.5 + pos: 10.5,30.5 parent: 1668 - - uid: 7002 + - uid: 2907 components: - type: Transform - pos: -11.5,13.5 + pos: -9.5,7.5 parent: 1668 -- proto: SecurityTechFab - entities: - - uid: 2874 + - uid: 2908 components: - type: Transform - pos: 9.5,32.5 + pos: -10.5,7.5 parent: 1668 -- proto: SeismicCharge - entities: - - uid: 1079 + - uid: 2909 components: - type: Transform - pos: -12.4071865,-3.4493918 + pos: -11.5,7.5 parent: 1668 - - uid: 3129 + - uid: 2910 components: - type: Transform - pos: -12.5634365,-3.3712668 + pos: -9.5,5.5 parent: 1668 -- proto: ShowcaseRobotAntique - entities: - - uid: 6931 + - uid: 2912 components: - type: Transform - pos: -6.5,8.5 + pos: -11.5,5.5 parent: 1668 -- proto: ShuttersRadiationOpen - entities: - - uid: 6879 + - uid: 2934 components: - type: Transform - pos: 21.5,-23.5 + pos: -18.5,7.5 parent: 1668 - - uid: 6880 + - uid: 2935 components: - type: Transform - pos: 20.5,-23.5 + pos: -18.5,6.5 parent: 1668 - - uid: 6881 + - uid: 2936 components: - type: Transform - pos: 19.5,-23.5 + pos: -18.5,5.5 parent: 1668 -- proto: ShuttersWindowCentralCommand - entities: - - uid: 5058 + - uid: 2937 components: - type: Transform - pos: 5.5,30.5 + pos: -18.5,4.5 parent: 1668 - - uid: 6314 + - uid: 2938 components: - type: Transform - pos: 6.5,30.5 + pos: -17.5,4.5 parent: 1668 - - uid: 6397 + - uid: 3021 components: - type: Transform - pos: 12.5,30.5 + pos: -4.5,17.5 parent: 1668 - - uid: 6492 + - uid: 3022 components: - type: Transform - pos: 13.5,30.5 + pos: -5.5,17.5 parent: 1668 -- proto: SignalButton - entities: - - uid: 789 + - uid: 3230 components: - type: Transform - pos: -4.5,-8.5 + pos: -3.5,19.5 parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 786: - - Pressed: Toggle - 787: - - Pressed: Toggle - 788: - - Pressed: Toggle - - uid: 1611 + - uid: 3231 components: - type: Transform - pos: -14.5,23.5 + pos: -3.5,20.5 parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 1607: - - Pressed: Toggle - 1610: - - Pressed: Toggle - - uid: 1612 + - uid: 3237 components: - type: Transform - pos: -14.5,29.5 + pos: 3.5,22.5 parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 1608: - - Pressed: Toggle - 1609: - - Pressed: Toggle - - uid: 1804 + - uid: 3238 components: - type: Transform - pos: -2.5,19.5 + pos: 2.5,22.5 parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 1552: - - Pressed: Toggle - - uid: 2712 + - uid: 3267 components: - type: Transform - pos: 7.5,17.5 + pos: -3.5,18.5 parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 2150: - - Pressed: Toggle - 2149: - - Pressed: Toggle - 2148: - - Pressed: Toggle - 2147: - - Pressed: Toggle - 2146: - - Pressed: Toggle - - uid: 5242 + - uid: 3269 components: - type: Transform - pos: 28.5,-20.5 + pos: -3.5,21.5 parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 5238: - - Pressed: Toggle - 5237: - - Pressed: Toggle - 5236: - - Pressed: Toggle - 5235: - - Pressed: Toggle - 5234: - - Pressed: Toggle - 5239: - - Pressed: Toggle - 5241: - - Pressed: Toggle - 5240: - - Pressed: Toggle - - uid: 6442 + - uid: 3270 components: - type: Transform - pos: 1.5,-40.5 + pos: -3.5,22.5 parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 6521: - - Pressed: Toggle - 6525: - - Pressed: Toggle - 6524: - - Pressed: Toggle - 6523: - - Pressed: Toggle - 6522: - - Pressed: Toggle -- proto: SignalButtonExt1 - entities: - - uid: 715 + - uid: 3520 components: - - type: MetaData - name: East Checkpoint Doors - type: Transform - pos: 16.5,4.5 + rot: 1.5707963267948966 rad + pos: 8.5,7.5 parent: 1668 -- proto: SignalButtonExt2 - entities: - - uid: 721 + - uid: 3671 components: - - type: MetaData - name: West Checkpoint Doors - type: Transform - pos: 8.5,4.5 + rot: 1.5707963267948966 rad + pos: 11.5,8.5 parent: 1668 -- proto: SignAtmos - entities: - - uid: 6888 + - uid: 3884 components: - type: Transform - pos: 14.5,-29.5 + pos: -3.5,31.5 parent: 1668 -- proto: SignCargo - entities: - - uid: 2207 + - uid: 4040 components: - type: Transform - pos: -4.5,13.5 + rot: 1.5707963267948966 rad + pos: -19.5,27.5 parent: 1668 -- proto: SignChem - entities: - - uid: 4478 + - uid: 4049 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-6.5 + pos: -19.5,26.5 parent: 1668 - - uid: 6764 + - uid: 4053 components: - type: Transform - pos: 8.5,-10.5 + pos: 7.5,-35.5 parent: 1668 -- proto: SignCloning - entities: - - uid: 6763 + - uid: 4085 components: - type: Transform - pos: 13.5,-17.5 + pos: -17.5,26.5 parent: 1668 -- proto: SignDirectionalEng - entities: - - uid: 2882 + - uid: 4086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-17.5 + pos: -18.5,26.5 parent: 1668 - - uid: 6593 + - uid: 4225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-34.5 + pos: 0.5,-46.5 parent: 1668 -- proto: SignDoors - entities: - - uid: 545 + - uid: 4429 components: - type: Transform - pos: 18.5,-0.5 + pos: 3.5,-46.5 parent: 1668 - - uid: 546 + - uid: 4431 components: - type: Transform - pos: 16.5,-0.5 + pos: -1.5,-46.5 parent: 1668 - - uid: 547 + - uid: 4432 components: - type: Transform - pos: 8.5,-0.5 + pos: -4.5,-46.5 parent: 1668 - - uid: 548 + - uid: 4433 components: - type: Transform - pos: 6.5,-0.5 + pos: -1.5,-49.5 parent: 1668 - - uid: 795 + - uid: 4434 components: - type: Transform - pos: -1.5,-8.5 + pos: -0.5,-49.5 parent: 1668 - - uid: 796 + - uid: 4435 components: - type: Transform - pos: 0.5,-6.5 + pos: 0.5,-49.5 parent: 1668 - - uid: 2269 + - uid: 5474 components: - type: Transform - pos: 5.5,12.5 + pos: -10.5,-36.5 parent: 1668 - - uid: 2270 + - uid: 5475 components: - type: Transform - pos: 3.5,12.5 + pos: -11.5,-36.5 parent: 1668 - - uid: 2271 + - uid: 5476 components: - type: Transform - pos: 15.5,12.5 + pos: -11.5,-35.5 parent: 1668 - - uid: 2272 + - uid: 5477 components: - type: Transform - pos: -1.5,5.5 + pos: -11.5,-34.5 parent: 1668 - - uid: 2273 + - uid: 5478 components: - type: Transform - pos: 0.5,7.5 + pos: -11.5,-33.5 parent: 1668 - - uid: 3607 + - uid: 5479 components: - type: Transform - pos: -7.5,-0.5 + pos: -11.5,-32.5 parent: 1668 - - uid: 3608 + - uid: 5480 components: - type: Transform - pos: -9.5,-0.5 + pos: -11.5,-31.5 parent: 1668 - - uid: 3609 + - uid: 5963 components: - type: Transform - pos: -26.5,-0.5 + pos: -12.5,7.5 parent: 1668 - - uid: 3610 + - uid: 6591 components: - type: Transform - pos: -28.5,-0.5 + rot: 3.141592653589793 rad + pos: -37.5,-7.5 parent: 1668 -- proto: SignElectricalMed - entities: - - uid: 1533 + - uid: 6592 components: - type: Transform - pos: -1.5,17.5 + rot: 3.141592653589793 rad + pos: -37.5,-8.5 parent: 1668 - - uid: 5351 + - uid: 6593 components: - type: Transform - pos: 18.5,-13.5 + pos: -38.5,-6.5 parent: 1668 -- proto: SignEngineering - entities: - - uid: 4970 + - uid: 6594 components: - type: Transform - pos: 18.5,-24.5 + rot: 3.141592653589793 rad + pos: -37.5,-6.5 parent: 1668 -- proto: SignGravity - entities: - - uid: 5215 + - uid: 6595 components: - type: Transform - pos: 31.5,-14.5 + rot: 3.141592653589793 rad + pos: -40.5,-8.5 parent: 1668 -- proto: SignInterrogation - entities: - - uid: 2830 + - uid: 6596 components: - type: Transform - pos: 6.5,23.5 + rot: 3.141592653589793 rad + pos: -39.5,-8.5 parent: 1668 -- proto: SignKiddiePlaque - entities: - - uid: 4384 + - uid: 6597 components: - type: Transform - pos: -3.5,-20.5 + rot: 3.141592653589793 rad + pos: -40.5,-7.5 parent: 1668 - - uid: 4385 + - uid: 6691 components: - type: Transform - pos: -13.5,12.5 + rot: 3.141592653589793 rad + pos: -40.5,-6.5 parent: 1668 - - uid: 4386 + - uid: 6692 components: - type: Transform - pos: 21.5,16.5 + rot: 3.141592653589793 rad + pos: -39.5,-6.5 parent: 1668 - - uid: 4387 + - uid: 6693 components: - type: Transform - pos: 1.5,2.5 + pos: -38.5,-8.5 parent: 1668 -- proto: SignMedical - entities: - - uid: 6762 + - uid: 6694 components: - type: Transform - pos: 16.5,-3.5 + rot: 3.141592653589793 rad + pos: -42.5,-8.5 parent: 1668 -- proto: SignPlaque - entities: - - uid: 3770 + - uid: 6695 components: - type: Transform - pos: -18.5,13.5 + rot: 3.141592653589793 rad + pos: -42.5,-7.5 parent: 1668 - - uid: 4381 + - uid: 6696 components: - type: Transform - pos: -3.5,-24.5 + rot: 3.141592653589793 rad + pos: -42.5,-6.5 parent: 1668 - - uid: 4382 +- proto: TableWood + entities: + - uid: 1283 components: - type: Transform - pos: 2.5,-20.5 + pos: 34.5,-22.5 parent: 1668 - - uid: 6645 + - uid: 1284 components: - type: Transform - pos: -1.5,-3.5 + pos: 34.5,-21.5 parent: 1668 -- proto: SignRadiationMed - entities: - - uid: 5348 + - uid: 1285 components: - type: Transform - pos: 33.5,-14.5 + pos: 34.5,-20.5 parent: 1668 - - uid: 5349 + - uid: 1841 components: - type: Transform - pos: 34.5,-19.5 + pos: 27.5,24.5 parent: 1668 - - uid: 5350 + - uid: 1842 components: - type: Transform - pos: 30.5,-19.5 + pos: 26.5,23.5 parent: 1668 -- proto: SignSecureMed - entities: - - uid: 776 + - uid: 1843 components: - type: Transform - pos: -6.5,-6.5 + pos: 25.5,23.5 parent: 1668 - - uid: 3451 + - uid: 1844 components: - type: Transform - pos: -20.5,1.5 + pos: 27.5,23.5 parent: 1668 - - uid: 3713 + - uid: 1845 components: - type: Transform - pos: -17.5,6.5 + pos: 25.5,24.5 parent: 1668 - - uid: 3714 + - uid: 1846 components: - type: Transform - pos: -13.5,4.5 + pos: 28.5,23.5 parent: 1668 - - uid: 3871 + - uid: 1847 components: - type: Transform - pos: -16.5,-8.5 + pos: 24.5,23.5 parent: 1668 - - uid: 3872 + - uid: 1872 components: - type: Transform - pos: -9.5,-4.5 + pos: 28.5,21.5 parent: 1668 - - uid: 3873 + - uid: 1874 components: - type: Transform - pos: -9.5,-8.5 + pos: 24.5,21.5 parent: 1668 - - uid: 4151 + - uid: 1875 components: - type: Transform - pos: -28.5,-2.5 + rot: 3.141592653589793 rad + pos: 27.5,21.5 parent: 1668 - - uid: 6443 + - uid: 1878 components: - type: Transform - pos: -3.5,-46.5 + rot: 3.141592653589793 rad + pos: 25.5,21.5 parent: 1668 - - uid: 6444 + - uid: 1914 components: - type: Transform - pos: 2.5,-46.5 + rot: 3.141592653589793 rad + pos: 32.5,20.5 parent: 1668 - - uid: 6445 + - uid: 1915 components: - type: Transform - pos: -2.5,-38.5 + rot: 3.141592653589793 rad + pos: 32.5,21.5 parent: 1668 -- proto: SignSecureMedRed - entities: - - uid: 3988 + - uid: 1916 components: - type: Transform - pos: 7.5,32.5 + rot: 3.141592653589793 rad + pos: 32.5,22.5 parent: 1668 - - uid: 6615 + - uid: 1945 components: - type: Transform - pos: 11.5,32.5 + pos: 20.5,20.5 parent: 1668 -- proto: SignSecureSmall - entities: - - uid: 3868 + - uid: 1946 components: - type: Transform - pos: -23.5,-2.5 + pos: 20.5,21.5 parent: 1668 - - uid: 3869 + - uid: 1947 components: - type: Transform - pos: -19.5,-2.5 + pos: 20.5,22.5 parent: 1668 -- proto: SignSpace - entities: - - uid: 1792 + - uid: 1996 components: - type: Transform - pos: -15.5,23.5 + pos: 28.5,27.5 parent: 1668 - - uid: 1793 + - uid: 1997 components: - type: Transform - pos: -15.5,29.5 + pos: 27.5,27.5 parent: 1668 - - uid: 2741 + - uid: 1998 components: - type: Transform - pos: 0.5,22.5 + pos: 24.5,27.5 parent: 1668 - - uid: 5956 + - uid: 1999 components: - type: Transform - pos: -15.5,-25.5 + pos: 25.5,27.5 parent: 1668 - - uid: 5957 + - uid: 2072 components: - type: Transform - pos: -17.5,-25.5 + pos: 27.5,12.5 parent: 1668 -- proto: Sink - entities: - - uid: 3425 + - uid: 2073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,14.5 + pos: 27.5,11.5 parent: 1668 -- proto: SinkWide - entities: - - uid: 6619 + - uid: 2731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-27.5 + pos: -15.5,9.5 parent: 1668 - - uid: 6620 + - uid: 2806 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-22.5 + pos: -17.5,13.5 parent: 1668 - - uid: 6877 + - uid: 2807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-24.5 + pos: -17.5,12.5 parent: 1668 - - uid: 6878 + - uid: 2808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-24.5 + pos: -17.5,11.5 parent: 1668 -- proto: SMESAdvanced - entities: - - uid: 4703 + - uid: 2809 components: - type: Transform - pos: 27.5,-30.5 + pos: -16.5,11.5 parent: 1668 - - uid: 4715 + - uid: 2813 components: - type: Transform - pos: 22.5,-17.5 + pos: -11.5,13.5 parent: 1668 - - uid: 4977 + - uid: 2815 components: - type: Transform - pos: 22.5,-15.5 + pos: -12.5,13.5 parent: 1668 - - uid: 4992 + - uid: 2816 components: - type: Transform - pos: 22.5,-16.5 + pos: -13.5,13.5 parent: 1668 -- proto: SmokingPipeFilledTobacco - entities: - - uid: 3753 + - uid: 2825 components: - type: Transform - pos: -18.510391,8.646521 + pos: -13.5,9.5 parent: 1668 -- proto: SoapDeluxe - entities: - - uid: 3424 + - uid: 2843 components: - type: Transform - pos: -20.47715,15.560694 + pos: -20.5,11.5 parent: 1668 -- proto: SodaDispenser - entities: - - uid: 4427 + - uid: 2844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-25.5 + pos: -20.5,12.5 parent: 1668 - - uid: 4429 + - uid: 4205 components: - type: Transform - pos: 7.5,-21.5 + pos: 2.5,-31.5 parent: 1668 -- proto: SS13Memorial - entities: - - uid: 486 + - uid: 4206 components: - type: Transform - pos: 26.5,7.5 + pos: 2.5,-30.5 parent: 1668 -- proto: StasisBed - entities: - - uid: 609 + - uid: 4207 components: - type: Transform - pos: 11.5,-7.5 + pos: 2.5,-29.5 parent: 1668 -- proto: StatueVenusBlue - entities: - - uid: 3463 + - uid: 4208 components: - type: Transform - pos: 31.5,7.5 + pos: -3.5,-31.5 parent: 1668 -- proto: StatueVenusRed - entities: - - uid: 5078 + - uid: 4209 components: - type: Transform - pos: 21.5,7.5 + pos: -3.5,-30.5 parent: 1668 -- proto: Stool - entities: - - uid: 2913 + - uid: 4210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-17.5 + pos: -3.5,-29.5 parent: 1668 -- proto: StoolBar - entities: - - uid: 4412 + - uid: 4277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-25.5 + rot: 3.141592653589793 rad + pos: 8.5,-36.5 parent: 1668 - - uid: 4413 + - uid: 4278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-26.5 + rot: 3.141592653589793 rad + pos: 9.5,-36.5 parent: 1668 - - uid: 4414 + - uid: 4279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-27.5 + rot: 3.141592653589793 rad + pos: 10.5,-36.5 parent: 1668 -- proto: StorageCanister - entities: - - uid: 3661 + - uid: 4282 components: - type: Transform - pos: -14.5,6.5 + rot: 3.141592653589793 rad + pos: 10.5,-33.5 parent: 1668 -- proto: Stunbaton - entities: - - uid: 2746 + - uid: 4283 components: - type: Transform - pos: 4.4667654,19.499214 + rot: 3.141592653589793 rad + pos: 10.5,-32.5 parent: 1668 -- proto: SubstationBasic - entities: - - uid: 1130 + - uid: 4284 components: - type: Transform - pos: 15.5,-13.5 + rot: 3.141592653589793 rad + pos: 8.5,-29.5 parent: 1668 - - uid: 1802 + - uid: 4285 components: - type: Transform - pos: -3.5,20.5 + rot: 3.141592653589793 rad + pos: 7.5,-29.5 parent: 1668 - - uid: 1803 + - uid: 4286 components: - type: Transform - pos: 2.5,20.5 + rot: 3.141592653589793 rad + pos: 6.5,-29.5 parent: 1668 - - uid: 2199 + - uid: 4290 components: - type: Transform - pos: 27.5,-31.5 + pos: 10.5,-35.5 parent: 1668 - - uid: 2521 + - uid: 4437 components: - type: Transform - pos: 15.5,19.5 + pos: 3.5,-49.5 parent: 1668 - - uid: 3432 + - uid: 4438 components: - type: Transform - pos: -15.5,6.5 + pos: 4.5,-49.5 parent: 1668 - - uid: 3949 + - uid: 4439 components: - type: Transform - pos: -27.5,6.5 + pos: 5.5,-49.5 parent: 1668 - - uid: 4815 + - uid: 4440 components: - type: Transform - pos: 17.5,-17.5 + pos: 6.5,-46.5 parent: 1668 - - uid: 4816 + - uid: 4441 components: - type: Transform - pos: 15.5,-17.5 + pos: -3.5,-49.5 parent: 1668 - - uid: 5958 + - uid: 4442 components: - type: Transform - pos: -16.5,-29.5 + pos: -4.5,-49.5 parent: 1668 -- proto: SuitStorageCaptain - entities: - - uid: 3768 + - uid: 4443 components: - type: Transform - pos: -11.5,4.5 + pos: -5.5,-49.5 parent: 1668 - - uid: 5146 + - uid: 4445 components: - type: Transform - pos: -10.5,-6.5 + pos: -7.5,-46.5 parent: 1668 -- proto: SuitStorageCE - entities: - - uid: 6490 + - uid: 6719 components: - type: Transform - pos: -15.5,-3.5 + pos: -42.5,-4.5 parent: 1668 -- proto: SuitStorageCMO - entities: - - uid: 6497 + - uid: 6720 components: - type: Transform - pos: -15.5,-9.5 + pos: -44.5,-4.5 parent: 1668 -- proto: SuitStorageHOS - entities: - - uid: 6496 + - uid: 6721 components: - type: Transform - pos: -10.5,-9.5 + pos: -45.5,-4.5 parent: 1668 -- proto: SuitStorageRD - entities: - - uid: 6493 + - uid: 6722 components: - type: Transform - pos: -10.5,-3.5 + pos: -45.5,-5.5 parent: 1668 -- proto: SuitStorageSec - entities: - - uid: 3465 + - uid: 6723 components: - type: Transform - pos: -6.5,-9.5 + pos: -44.5,-10.5 parent: 1668 -- proto: SurveillanceCameraCommand - entities: - - uid: 6817 + - uid: 6724 components: - type: Transform - pos: -1.5,-2.5 + pos: -45.5,-10.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Operator Room - - uid: 6818 + - uid: 6749 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,-3.5 + pos: -35.5,-10.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Conference Room - - uid: 6819 + - uid: 6750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-6.5 + rot: 3.141592653589793 rad + pos: -35.5,-4.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HighSec Storage Room - - uid: 6820 + - uid: 7104 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,6.5 + pos: -45.5,-9.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Command Reception - - uid: 6821 + - uid: 7274 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,12.5 + rot: 1.5707963267948966 rad + pos: -44.5,5.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Command Conference Room - - uid: 6822 + - uid: 7275 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,9.5 + pos: -43.5,5.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Command Bedroom - - uid: 6825 + - uid: 7276 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-41.5 + pos: -42.5,5.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: ERT West Room - - uid: 6826 +- proto: TargetClown + entities: + - uid: 3100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-41.5 + rot: 1.5707963267948966 rad + pos: 5.5,8.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: ERT East Room - - uid: 6827 +- proto: TargetDarts + entities: + - uid: 9132 components: - type: Transform - pos: -0.5,-43.5 + pos: 21.5,-29.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: ERT Central Room -- proto: SurveillanceCameraEngineering +- proto: TargetSyndicate entities: - - uid: 5407 + - uid: 3666 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-31.5 + pos: 4.5,7.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics - - uid: 6790 +- proto: TearGasGrenade + entities: + - uid: 3169 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-20.5 + pos: 14.906606,30.419909 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Eng Lobby - - uid: 6791 + - uid: 3170 components: - type: Transform - pos: 23.5,-18.5 + pos: 14.906606,30.419909 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Power Supply - - uid: 6792 + - uid: 3171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-23.5 + pos: 14.906606,30.419909 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Power Generation - - uid: 6793 + - uid: 3172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-12.5 + pos: 14.906606,30.419909 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Grav Generation - - uid: 6810 +- proto: TelecomServerFilledCargo + entities: + - uid: 8786 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,21.5 + pos: -12.5,-6.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North Substation - - uid: 6823 +- proto: TelecomServerFilledCommand + entities: + - uid: 8785 components: - type: Transform - pos: -15.5,4.5 + pos: -15.5,-6.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Command Substation - - uid: 6824 +- proto: TelecomServerFilledCommon + entities: + - uid: 8784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,4.5 + pos: -9.5,-6.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: West Substation - - uid: 6828 +- proto: TelecomServerFilledEngineering + entities: + - uid: 8783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-15.5 + pos: -15.5,-10.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Medbay Substation - - uid: 6829 +- proto: TelecomServerFilledMedical + entities: + - uid: 6390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-18.5 + pos: -12.5,-8.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Eng Substation -- proto: SurveillanceCameraGeneral +- proto: TelecomServerFilledScience entities: - - uid: 6830 + - uid: 6391 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,0.5 + pos: -12.5,-10.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals East - - uid: 6831 +- proto: TelecomServerFilledSecurity + entities: + - uid: 6389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-0.5 + pos: -15.5,-8.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals West - - uid: 6832 +- proto: TelecomServerFilledService + entities: + - uid: 8787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-17.5 + pos: -9.5,-9.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway North - - uid: 6833 +- proto: Telecrystal5 + entities: + - uid: 2919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-25.5 + pos: -9.54139,7.5595765 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway West - - uid: 6834 +- proto: Throngler + entities: + - uid: 2547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-25.5 + pos: 19.5,32.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Docking SouthWest - - uid: 6835 +- proto: TintedWindow + entities: + - uid: 1129 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-31.5 + pos: 29.5,-7.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway SouthWest - - uid: 6836 + - uid: 1146 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-31.5 + pos: 31.5,-7.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway SouthEast - - uid: 6837 + - uid: 1147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-25.5 + pos: 31.5,-14.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway East - - uid: 6838 + - uid: 1148 components: - type: Transform - pos: 8.5,-19.5 + pos: 29.5,-14.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service Hallway NorthEast - - uid: 6839 + - uid: 2114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-0.5 + pos: 30.5,13.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Docking West - - uid: 6840 +- proto: ToiletGoldenEmpty + entities: + - uid: 2788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,5.5 + pos: -18.5,16.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Waiting Room West - - uid: 6841 +- proto: ToolboxElectricalFilled + entities: + - uid: 3186 components: - type: Transform - pos: -17.5,-1.5 + pos: -7.504042,12.840626 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: West Hallway -- proto: SurveillanceCameraMedical +- proto: ToolboxEmergencyFilled entities: - - uid: 6794 + - uid: 3187 components: - type: Transform - pos: 11.5,-14.5 + pos: -7.504042,12.646182 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cloning - - uid: 6795 +- proto: ToolboxMechanicalFilled + entities: + - uid: 3188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 + pos: -7.504042,12.47257 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - - uid: 6796 + - uid: 7100 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-4.5 + pos: -30.5,-8.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medical -- proto: SurveillanceCameraRouterCommand +- proto: TowelColorCentcom entities: - - uid: 6864 + - uid: 2850 components: - type: Transform - pos: 29.5,-29.5 + pos: -17.44774,15.377905 parent: 1668 -- proto: SurveillanceCameraRouterEngineering +- proto: TowelColorNT entities: - - uid: 6871 + - uid: 9338 components: - type: Transform - pos: 32.5,-29.5 + pos: -9.5,1.5 parent: 1668 -- proto: SurveillanceCameraRouterGeneral +- proto: ToyAmongPequeno entities: - - uid: 6869 + - uid: 6117 components: - type: Transform - pos: 29.5,-30.5 + pos: -13.455584,-17.395884 parent: 1668 -- proto: SurveillanceCameraRouterMedical +- proto: ToyFigurineMime entities: - - uid: 6870 + - uid: 6116 components: - type: Transform - pos: 33.5,-29.5 + pos: -14.511139,-17.375051 parent: 1668 -- proto: SurveillanceCameraRouterScience +- proto: ToyHammer entities: - - uid: 6873 + - uid: 6187 components: + - type: MetaData + desc: Delivering justice one squeak at a time. + name: the ban hammer - type: Transform - pos: 30.5,-29.5 + pos: -19.5,-8.5 parent: 1668 -- proto: SurveillanceCameraRouterSecurity +- proto: ToyRubberDuck entities: - - uid: 6867 + - uid: 2793 components: - type: Transform - pos: 31.5,-30.5 + pos: -17.501116,16.328264 parent: 1668 -- proto: SurveillanceCameraRouterService +- proto: trayScanner entities: - - uid: 6872 + - uid: 6778 components: - type: Transform - pos: 31.5,-29.5 - parent: 1668 -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 6868 + parent: 6770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6795 components: - type: Transform - pos: 30.5,-30.5 - parent: 1668 -- proto: SurveillanceCameraSecurity + parent: 6790 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TreasureDatadiskEncrypted entities: - - uid: 6765 + - uid: 9399 components: - type: Transform - pos: -3.5,-12.5 + pos: -23.480354,-17.162823 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Service checkpoint - - uid: 6801 +- proto: TritiumCanister + entities: + - uid: 4123 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,19.5 + pos: -20.5,30.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Court room north - - uid: 6802 +- proto: TurboItemRecharger + entities: + - uid: 209 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,13.5 + pos: 14.5,5.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Court room south - - uid: 6803 +- proto: TwoWayLever + entities: + - uid: 3648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,20.5 + pos: 6.5,31.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Judge room - - uid: 6804 + - type: DeviceLinkSource + linkedPorts: + 3644: + - Left: Forward + - Right: Reverse + - Middle: Off + 3645: + - Left: Forward + - Right: Reverse + - Middle: Off + 3663: + - Left: Forward + - Right: Reverse + - Middle: Off + 3651: + - Left: Forward + - Right: Reverse + - Middle: Off + 3646: + - Left: Forward + - Right: Reverse + - Middle: Off + 3649: + - Left: Forward + - Right: Reverse + - Middle: Off + 3638: + - Left: Forward + - Right: Reverse + - Middle: Off + 3654: + - Left: Forward + - Right: Reverse + - Middle: Off + 3662: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 3652 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,15.5 + pos: 0.5,31.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig lobby - - uid: 6805 + - type: DeviceLinkSource + linkedPorts: + 3655: + - Left: Forward + - Right: Reverse + - Middle: Off + 3653: + - Left: Forward + - Right: Reverse + - Middle: Off + 3656: + - Left: Forward + - Right: Reverse + - Middle: Off + 3647: + - Left: Forward + - Right: Reverse + - Middle: Off + 3650: + - Left: Forward + - Right: Reverse + - Middle: Off + 3657: + - Left: Forward + - Right: Reverse + - Middle: Off + 3658: + - Left: Forward + - Right: Reverse + - Middle: Off + 3659: + - Left: Forward + - Right: Reverse + - Middle: Off + 3264: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 9083 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,19.5 + pos: -5.5,-10.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden room - - uid: 6806 + - type: DeviceLinkSource + linkedPorts: + 8745: + - Left: Reverse + - Right: Forward + - Middle: Off +- proto: UnstableMutagenChemistryBottle + entities: + - uid: 1035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,22.5 + pos: 7.383148,-17.230762 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Interrogation room - - uid: 6807 + - uid: 1036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,26.5 + pos: 7.6053705,-17.223818 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig west - - uid: 6808 + - uid: 1037 components: - type: Transform - pos: 9.5,27.5 + pos: 7.5012035,-17.411318 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - - uid: 6809 + - uid: 1038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,26.5 + pos: 7.7303705,-17.411318 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig east - - uid: 6815 +- proto: VendingBarDrobe + entities: + - uid: 1286 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,1.5 + pos: 34.5,-19.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Medbay checkpoint - - uid: 6816 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 4032 components: - type: Transform - pos: 26.5,-11.5 + pos: -15.5,27.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Arrivals checkpoint -- proto: SurveillanceCameraService +- proto: VendingMachineBooze entities: - - uid: 6797 + - uid: 1229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-24.5 + pos: 30.5,-21.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar - - uid: 6798 + - uid: 2839 components: - type: Transform - pos: -0.5,-29.5 + pos: -17.5,9.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Canteen - - uid: 6799 + - uid: 4289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-24.5 + pos: 10.5,-34.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - - uid: 6800 +- proto: VendingMachineBoozeSyndicate + entities: + - uid: 1282 components: - type: Transform - pos: -16.5,-33.5 + pos: 34.5,-23.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Jani closet -- proto: SurveillanceCameraSupply +- proto: VendingMachineCargoDrobe entities: - - uid: 6811 + - uid: 3904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,11.5 + pos: 8.5,27.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo lobby - - uid: 6812 +- proto: VendingMachineCart + entities: + - uid: 97 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,17.5 + pos: 2.5,-2.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo command room - - uid: 6813 + - uid: 7338 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,31.5 + pos: -45.5,-6.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo bay north - - uid: 6814 +- proto: VendingMachineCentDrobe + entities: + - uid: 497 components: - type: Transform - pos: -7.5,19.5 + pos: 2.5,1.5 parent: 1668 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo bay south -- proto: SurveillanceCameraWirelessRouterConstructed - entities: - - uid: 6866 + - uid: 2822 components: - type: Transform - pos: 32.5,-30.5 + pos: -11.5,11.5 parent: 1668 -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 6865 + - uid: 4444 components: - type: Transform - pos: 33.5,-30.5 + pos: -6.5,-49.5 parent: 1668 -- proto: Table +- proto: VendingMachineChang entities: - - uid: 528 + - uid: 1754 components: - type: Transform - pos: 21.5,5.5 + pos: -7.5,5.5 parent: 1668 - - uid: 529 +- proto: VendingMachineChefDrobe + entities: + - uid: 1164 components: - type: Transform - pos: 31.5,5.5 + pos: 16.5,-15.5 parent: 1668 - - uid: 530 +- proto: VendingMachineChefvend + entities: + - uid: 1111 components: - type: Transform - pos: 21.5,-6.5 + pos: 15.5,-15.5 parent: 1668 - - uid: 631 + - uid: 5450 components: - type: Transform - pos: 9.5,1.5 + pos: -9.5,-29.5 parent: 1668 - - uid: 632 +- proto: VendingMachineChemDrobe + entities: + - uid: 757 components: - type: Transform - pos: 15.5,1.5 + pos: 10.5,-12.5 parent: 1668 - - uid: 633 +- proto: VendingMachineChemicals + entities: + - uid: 663 components: - type: Transform - pos: 15.5,-2.5 + pos: 5.5,-12.5 parent: 1668 - - uid: 807 +- proto: VendingMachineCigs + entities: + - uid: 2027 components: - type: Transform - pos: -2.5,-9.5 + pos: 34.5,-15.5 parent: 1668 - - uid: 808 + - uid: 2112 components: - type: Transform - pos: 1.5,-9.5 + pos: 31.5,14.5 parent: 1668 - - uid: 1180 + - uid: 4287 components: - type: Transform - pos: 17.5,-15.5 + pos: 9.5,-29.5 parent: 1668 - - uid: 1181 + - uid: 9097 components: - type: Transform - pos: 16.5,-15.5 + pos: -30.5,1.5 parent: 1668 - - uid: 2043 +- proto: VendingMachineClothing + entities: + - uid: 9109 components: - type: Transform - pos: -1.5,19.5 + pos: -38.5,1.5 parent: 1668 - - uid: 2163 +- proto: VendingMachineCoffee + entities: + - uid: 1520 components: - type: Transform - pos: -0.5,12.5 + pos: -7.5,4.5 parent: 1668 - - uid: 2164 + - uid: 2108 components: - type: Transform - pos: -3.5,12.5 + pos: 34.5,14.5 parent: 1668 - - uid: 2165 + - uid: 3607 components: - type: Transform - pos: 2.5,8.5 + pos: 13.5,8.5 parent: 1668 - - uid: 2166 + - uid: 9096 components: - type: Transform - pos: 2.5,16.5 + pos: -23.5,1.5 parent: 1668 - - uid: 2210 +- proto: VendingMachineDinnerware + entities: + - uid: 1180 components: - type: Transform - pos: -6.5,31.5 + pos: 17.5,-15.5 parent: 1668 - - uid: 2211 + - uid: 5508 components: - type: Transform - pos: -7.5,31.5 + pos: -9.5,-36.5 parent: 1668 - - uid: 2212 +- proto: VendingMachineEngiDrobe + entities: + - uid: 3157 components: - type: Transform - pos: -5.5,24.5 + pos: -4.5,12.5 parent: 1668 - - uid: 2213 +- proto: VendingMachineEngivend + entities: + - uid: 3158 components: - type: Transform - pos: -5.5,25.5 + pos: -4.5,11.5 parent: 1668 - - uid: 2214 +- proto: VendingMachineGames + entities: + - uid: 9107 components: - type: Transform - pos: -5.5,26.5 + pos: -2.5,-23.5 parent: 1668 - - uid: 2215 +- proto: VendingMachineHydrobe + entities: + - uid: 1014 components: - type: Transform - pos: -11.5,31.5 + pos: 5.5,-23.5 parent: 1668 - - uid: 2216 +- proto: VendingMachineJaniDrobe + entities: + - uid: 8744 components: - type: Transform - pos: -10.5,31.5 + pos: -4.5,-8.5 parent: 1668 - - uid: 2826 +- proto: VendingMachineLawDrobe + entities: + - uid: 2071 components: - type: Transform - pos: 5.5,21.5 + pos: 25.5,12.5 parent: 1668 - - uid: 3142 +- proto: VendingMachineMedical + entities: + - uid: 810 components: - type: Transform - pos: 10.5,25.5 + pos: 8.5,-4.5 parent: 1668 - - uid: 3143 + - uid: 811 components: - type: Transform - pos: 9.5,25.5 + pos: 23.5,-13.5 parent: 1668 - - uid: 3182 +- proto: VendingMachineNutri + entities: + - uid: 997 components: - type: Transform - pos: 10.5,15.5 + pos: 7.5,-18.5 parent: 1668 - - uid: 3183 +- proto: VendingMachinePride + entities: + - uid: 9108 components: - type: Transform - pos: 10.5,10.5 + pos: -39.5,1.5 parent: 1668 - - uid: 3260 +- proto: VendingMachineSciDrobe + entities: + - uid: 9158 components: - type: Transform - pos: 8.5,23.5 + pos: 19.5,-29.5 parent: 1668 - - uid: 5244 +- proto: VendingMachineSec + entities: + - uid: 82 components: - type: Transform - pos: 27.5,-23.5 + pos: 13.5,5.5 parent: 1668 - - uid: 5245 + - uid: 1138 components: - type: Transform - pos: 27.5,-22.5 + pos: 34.5,-8.5 parent: 1668 - - uid: 5247 +- proto: VendingMachineSecDrobe + entities: + - uid: 1593 components: - type: Transform - pos: 26.5,-22.5 + pos: 13.5,6.5 parent: 1668 - - uid: 5248 +- proto: VendingMachineSeeds + entities: + - uid: 995 components: - type: Transform - pos: 26.5,-23.5 + pos: 6.5,-18.5 parent: 1668 - - uid: 5329 +- proto: VendingMachineShamblersJuice + entities: + - uid: 9290 components: - type: Transform - pos: 34.5,-17.5 + pos: -16.5,1.5 parent: 1668 - - uid: 5330 +- proto: VendingMachineSmite + entities: + - uid: 9218 components: - type: Transform - pos: 34.5,-16.5 + pos: -17.5,1.5 parent: 1668 - - uid: 5339 +- proto: VendingMachineSnack + entities: + - uid: 2113 components: - type: Transform - pos: 21.5,-15.5 + pos: 32.5,14.5 parent: 1668 - - uid: 5421 +- proto: VendingMachineSustenance + entities: + - uid: 9199 components: - type: Transform - pos: 16.5,-29.5 + pos: -41.5,1.5 parent: 1668 - - uid: 6151 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 9195 components: - type: Transform - pos: -19.5,-22.5 + pos: -45.5,-8.5 parent: 1668 - - uid: 6270 +- proto: VendingMachineTheater + entities: + - uid: 9216 components: - type: Transform - pos: 14.5,-27.5 + pos: -36.5,1.5 parent: 1668 - - uid: 6571 +- proto: VendingMachineWinter + entities: + - uid: 9212 components: - type: Transform - pos: -12.5,-33.5 + pos: -37.5,1.5 parent: 1668 - - uid: 6572 +- proto: VendingMachineYouTool + entities: + - uid: 3159 components: - type: Transform - pos: -8.5,-33.5 + pos: -4.5,10.5 parent: 1668 - - uid: 6581 +- proto: WallmountTelescreen + entities: + - uid: 2972 components: - type: Transform - pos: -10.5,-30.5 + pos: -15.5,8.5 parent: 1668 - - uid: 6582 + - uid: 4233 components: - type: Transform - pos: 9.5,-30.5 + pos: 3.5,-33.5 parent: 1668 - - uid: 6583 + - uid: 4332 components: - type: Transform - pos: 11.5,-33.5 + pos: 3.5,-35.5 parent: 1668 - - uid: 6584 + - uid: 4335 components: - type: Transform - pos: 7.5,-33.5 + pos: -4.5,-35.5 parent: 1668 - - uid: 6624 + - uid: 4336 components: - type: Transform - pos: 1.5,-25.5 + pos: -4.5,-33.5 parent: 1668 - - uid: 6625 + - uid: 4338 components: - type: Transform - pos: 0.5,-25.5 + pos: -1.5,-46.5 parent: 1668 -- proto: TableCarpet - entities: - - uid: 699 + - uid: 4339 components: - type: Transform - pos: 18.5,14.5 + pos: 3.5,-46.5 parent: 1668 - - uid: 6595 + - uid: 4340 components: - type: Transform - pos: 18.5,12.5 + pos: -4.5,-46.5 parent: 1668 - - uid: 6606 + - uid: 9473 components: - type: Transform - pos: 18.5,13.5 + pos: 0.5,-46.5 parent: 1668 -- proto: TableReinforced +- proto: WallPlastitaniumDiagonalIndestructible entities: - - uid: 98 + - uid: 375 components: - type: Transform - pos: 3.5,-9.5 + rot: 1.5707963267948966 rad + pos: 20.5,33.5 parent: 1668 - - uid: 99 + - uid: 2133 components: - type: Transform - pos: 3.5,-10.5 + rot: -1.5707963267948966 rad + pos: 18.5,31.5 parent: 1668 - - uid: 126 + - uid: 2184 components: - type: Transform - pos: 9.5,16.5 + pos: 20.5,31.5 parent: 1668 - - uid: 206 + - uid: 2185 components: - type: Transform - pos: 0.5,0.5 + rot: 3.141592653589793 rad + pos: 18.5,33.5 parent: 1668 - - uid: 216 +- proto: WallPlastitaniumIndestructible + entities: + - uid: 373 components: - type: Transform - pos: 2.5,-12.5 + pos: 19.5,30.5 parent: 1668 - - uid: 217 + - uid: 377 components: - type: Transform - pos: 2.5,-11.5 + pos: 21.5,32.5 parent: 1668 - - uid: 218 + - uid: 1740 components: - type: Transform - pos: 12.5,2.5 + pos: 21.5,31.5 parent: 1668 - - uid: 219 + - uid: 2134 components: - type: Transform - pos: 14.5,2.5 + pos: 20.5,30.5 parent: 1668 - - uid: 489 + - uid: 2135 components: - type: Transform - pos: 27.5,-7.5 + pos: 21.5,30.5 parent: 1668 - - uid: 491 + - uid: 2173 components: - type: Transform - pos: 25.5,-7.5 + pos: 12.5,35.5 parent: 1668 - - uid: 494 + - uid: 2177 components: - type: Transform - pos: 26.5,-7.5 + pos: 13.5,35.5 parent: 1668 - - uid: 500 + - uid: 2178 components: - type: Transform - pos: 24.5,-9.5 + pos: 14.5,35.5 parent: 1668 - - uid: 501 + - uid: 2181 components: - type: Transform - pos: 24.5,-8.5 + pos: 17.5,35.5 parent: 1668 - - uid: 503 + - uid: 2187 components: - type: Transform - pos: 28.5,-11.5 + pos: 15.5,35.5 parent: 1668 - - uid: 504 + - uid: 2188 components: - type: Transform - pos: 27.5,-11.5 + pos: 16.5,35.5 parent: 1668 - - uid: 505 + - uid: 2190 components: - type: Transform - pos: 26.5,-11.5 + pos: 17.5,29.5 parent: 1668 - - uid: 513 + - uid: 2191 components: - type: Transform - pos: 20.5,-10.5 + pos: 17.5,30.5 parent: 1668 - - uid: 514 + - uid: 2192 components: - type: Transform - pos: 21.5,-10.5 + pos: 17.5,31.5 parent: 1668 - - uid: 596 + - uid: 2193 components: - type: Transform - pos: 10.5,3.5 + pos: 17.5,32.5 parent: 1668 - - uid: 597 + - uid: 2194 components: - type: Transform - pos: 10.5,4.5 + pos: 9.5,29.5 parent: 1668 - - uid: 598 + - uid: 2195 components: - type: Transform - pos: 12.5,6.5 + pos: 17.5,33.5 parent: 1668 - - uid: 599 + - uid: 2196 components: - type: Transform - pos: 13.5,6.5 + pos: 9.5,31.5 parent: 1668 - - uid: 600 + - uid: 2197 components: - type: Transform - pos: 14.5,6.5 + pos: 9.5,30.5 parent: 1668 - - uid: 601 + - uid: 2198 components: - type: Transform - pos: 15.5,6.5 + pos: 9.5,33.5 parent: 1668 - - uid: 613 + - uid: 2199 components: - type: Transform - pos: 14.5,-7.5 + pos: 9.5,32.5 parent: 1668 - - uid: 614 + - uid: 2203 components: - type: Transform - pos: 15.5,-7.5 + pos: 17.5,34.5 parent: 1668 - - uid: 615 + - uid: 2237 components: - type: Transform - pos: 10.5,-7.5 + pos: 11.5,35.5 parent: 1668 - - uid: 618 + - uid: 2238 components: - type: Transform - pos: 9.5,-4.5 + pos: 10.5,35.5 parent: 1668 - - uid: 641 + - uid: 2239 components: - type: Transform - pos: -1.5,0.5 + pos: 9.5,35.5 parent: 1668 - - uid: 642 + - uid: 2240 components: - type: Transform - pos: -0.5,1.5 + pos: 9.5,34.5 parent: 1668 - - uid: 643 + - uid: 2528 components: - type: Transform - pos: 0.5,1.5 + pos: 21.5,33.5 parent: 1668 - - uid: 645 + - uid: 2534 components: - type: Transform - pos: 2.5,-2.5 + pos: 18.5,30.5 parent: 1668 - - uid: 646 + - uid: 2559 components: - type: Transform - pos: 1.5,-2.5 + pos: 20.5,34.5 parent: 1668 - - uid: 647 + - uid: 2560 components: - type: Transform - pos: -2.5,-2.5 + pos: 18.5,34.5 parent: 1668 - - uid: 648 + - uid: 2562 components: - type: Transform - pos: -3.5,-2.5 + pos: 21.5,34.5 parent: 1668 - - uid: 738 + - uid: 2570 components: - type: Transform - pos: 5.5,-9.5 + pos: 19.5,34.5 parent: 1668 - - uid: 770 +- proto: WallRiveted + entities: + - uid: 4 components: - type: Transform - pos: -3.5,-12.5 + pos: 8.5,2.5 parent: 1668 - - uid: 771 + - uid: 6 components: - type: Transform - pos: -3.5,-11.5 + pos: -8.5,-5.5 parent: 1668 - - uid: 794 + - uid: 7 components: - type: Transform - pos: 3.5,-17.5 + pos: -8.5,6.5 parent: 1668 - - uid: 805 + - uid: 8 components: - type: Transform - pos: 4.5,-17.5 + pos: 18.5,5.5 parent: 1668 - - uid: 809 + - uid: 9 components: - type: Transform - pos: -6.5,-13.5 + pos: 11.5,2.5 parent: 1668 - - uid: 810 + - uid: 11 components: - type: Transform - pos: -6.5,-12.5 + pos: 8.5,-3.5 parent: 1668 - - uid: 811 + - uid: 17 components: - type: Transform - pos: -4.5,-10.5 + pos: -4.5,6.5 parent: 1668 - - uid: 812 + - uid: 19 components: - type: Transform - pos: -4.5,-9.5 + pos: 7.5,5.5 parent: 1668 - - uid: 1194 + - uid: 23 components: - type: Transform - pos: 13.5,-12.5 + pos: 7.5,-7.5 parent: 1668 - - uid: 1427 + - uid: 24 components: - type: Transform - pos: 6.5,-9.5 + pos: 18.5,-6.5 parent: 1668 - - uid: 1433 + - uid: 26 components: - type: Transform - pos: -1.5,1.5 + pos: -8.5,-7.5 parent: 1668 - - uid: 1617 + - uid: 28 components: - type: Transform - pos: -4.5,9.5 + pos: -8.5,2.5 parent: 1668 - - uid: 1618 + - uid: 48 components: - type: Transform - pos: -4.5,10.5 + pos: 33.5,-1.5 parent: 1668 - - uid: 1636 + - uid: 53 components: - type: Transform - pos: -9.5,8.5 + pos: 33.5,-0.5 parent: 1668 - - uid: 1637 + - uid: 70 components: - type: Transform - pos: -8.5,8.5 + pos: 3.5,-3.5 parent: 1668 - - uid: 1638 + - uid: 71 components: - type: Transform - pos: -7.5,8.5 + pos: -4.5,-3.5 parent: 1668 - - uid: 1639 + - uid: 74 components: - type: Transform - pos: -12.5,9.5 + pos: 1.5,2.5 parent: 1668 - - uid: 1640 + - uid: 75 components: - type: Transform - pos: -12.5,10.5 + pos: -2.5,2.5 parent: 1668 - - uid: 1641 + - uid: 77 components: - type: Transform - pos: -12.5,11.5 + pos: 7.5,6.5 parent: 1668 - - uid: 1642 + - uid: 80 components: - type: Transform - pos: -8.5,12.5 + pos: -1.5,-3.5 parent: 1668 - - uid: 1643 + - uid: 83 components: - type: Transform - pos: -9.5,12.5 + pos: 6.5,-7.5 parent: 1668 - - uid: 1654 + - uid: 84 components: - type: Transform - pos: -15.5,14.5 + pos: -3.5,6.5 parent: 1668 - - uid: 1655 + - uid: 85 components: - type: Transform - pos: -14.5,14.5 + pos: -6.5,-7.5 parent: 1668 - - uid: 1656 + - uid: 87 components: - type: Transform - pos: -15.5,17.5 + pos: 11.5,-3.5 parent: 1668 - - uid: 1657 + - uid: 88 components: - type: Transform - pos: -14.5,17.5 + pos: 24.5,8.5 parent: 1668 - - uid: 2423 + - uid: 91 components: - type: Transform - pos: 23.5,15.5 + pos: 3.5,6.5 parent: 1668 - - uid: 2424 + - uid: 95 components: - type: Transform - pos: 23.5,16.5 + pos: -8.5,-3.5 parent: 1668 - - uid: 2720 + - uid: 99 components: - type: Transform - pos: 4.5,18.5 + pos: 2.5,6.5 parent: 1668 - - uid: 2721 + - uid: 101 components: - type: Transform - pos: 4.5,19.5 + pos: 3.5,-7.5 parent: 1668 - - uid: 2822 + - uid: 102 components: - type: Transform - pos: 10.5,27.5 + pos: 4.5,-7.5 parent: 1668 - - uid: 2875 + - uid: 103 components: - type: Transform - pos: 8.5,29.5 + pos: -5.5,-7.5 parent: 1668 - - uid: 2878 + - uid: 107 components: - type: Transform - pos: 8.5,32.5 + pos: 7.5,-3.5 parent: 1668 - - uid: 2879 + - uid: 109 components: - type: Transform - pos: 10.5,32.5 + pos: -3.5,-7.5 parent: 1668 - - uid: 2891 + - uid: 110 components: - type: Transform - pos: 2.5,30.5 + pos: -4.5,-7.5 parent: 1668 - - uid: 2892 + - uid: 111 components: - type: Transform - pos: 2.5,31.5 + pos: -8.5,-6.5 parent: 1668 - - uid: 2893 + - uid: 112 components: - type: Transform - pos: 2.5,32.5 + pos: -7.5,-7.5 parent: 1668 - - uid: 2894 + - uid: 113 components: - type: Transform - pos: 16.5,30.5 + pos: -3.5,32.5 parent: 1668 - - uid: 2895 + - uid: 115 components: - type: Transform - pos: 16.5,31.5 + pos: 17.5,2.5 parent: 1668 - - uid: 2896 + - uid: 116 components: - type: Transform - pos: 16.5,32.5 + pos: 18.5,2.5 parent: 1668 - - uid: 3079 + - uid: 117 components: - type: Transform - pos: 8.5,17.5 + pos: -7.5,6.5 parent: 1668 - - uid: 3255 + - uid: 118 components: - type: Transform - pos: 16.5,19.5 + pos: -8.5,5.5 parent: 1668 - - uid: 3412 + - uid: 119 components: - type: Transform - pos: -18.5,4.5 + pos: 18.5,-3.5 parent: 1668 - - uid: 3413 + - uid: 120 components: - type: Transform - pos: -19.5,4.5 + pos: 17.5,-3.5 parent: 1668 - - uid: 3414 + - uid: 121 components: - type: Transform - pos: -20.5,4.5 + pos: 2.5,-7.5 parent: 1668 - - uid: 3415 + - uid: 124 components: - type: Transform - pos: -20.5,5.5 + pos: -8.5,4.5 parent: 1668 - - uid: 3416 + - uid: 125 components: - type: Transform - pos: -20.5,6.5 + rot: 3.141592653589793 rad + pos: 5.5,21.5 parent: 1668 - - uid: 3632 + - uid: 127 components: - type: Transform - pos: -12.5,4.5 + rot: 1.5707963267948966 rad + pos: 21.5,13.5 parent: 1668 - - uid: 3634 + - uid: 129 components: - type: Transform - pos: -10.5,4.5 + pos: 33.5,0.5 parent: 1668 - - uid: 3635 + - uid: 168 components: - type: Transform - pos: -10.5,6.5 + pos: 0.5,-3.5 parent: 1668 - - uid: 3636 + - uid: 172 components: - type: Transform - pos: -11.5,6.5 + pos: 7.5,3.5 parent: 1668 - - uid: 3637 + - uid: 184 components: - type: Transform - pos: -12.5,6.5 + pos: 18.5,-7.5 parent: 1668 - - uid: 3697 + - uid: 187 components: - type: Transform - pos: -16.5,6.5 + pos: 18.5,-4.5 parent: 1668 - - uid: 3798 + - uid: 193 components: - type: Transform - pos: -13.5,-9.5 + pos: 28.5,8.5 parent: 1668 - - uid: 3799 + - uid: 201 components: - type: Transform - pos: -12.5,-9.5 + pos: 2.5,-8.5 parent: 1668 - - uid: 3800 + - uid: 249 components: - type: Transform - pos: -12.5,-3.5 + pos: 18.5,3.5 parent: 1668 - - uid: 3801 + - uid: 251 components: - type: Transform - pos: -13.5,-3.5 + pos: 18.5,6.5 parent: 1668 - - uid: 3802 + - uid: 252 components: - type: Transform - pos: -13.5,-7.5 + pos: 18.5,7.5 parent: 1668 - - uid: 3803 + - uid: 253 components: - type: Transform - pos: -13.5,-6.5 + pos: 18.5,8.5 parent: 1668 - - uid: 3804 + - uid: 346 components: - type: Transform - pos: -13.5,-5.5 + pos: 19.5,6.5 parent: 1668 - - uid: 3805 + - uid: 350 components: - type: Transform - pos: -12.5,-7.5 + pos: 23.5,6.5 parent: 1668 - - uid: 3806 + - uid: 351 components: - type: Transform - pos: -12.5,-6.5 + pos: 24.5,6.5 parent: 1668 - - uid: 3807 + - uid: 352 components: - type: Transform - pos: -12.5,-5.5 + pos: 28.5,6.5 parent: 1668 - - uid: 3808 + - uid: 353 components: - type: Transform - pos: -19.5,-7.5 + pos: 29.5,6.5 parent: 1668 - - uid: 3809 + - uid: 357 components: - type: Transform - pos: -19.5,-6.5 + pos: 33.5,6.5 parent: 1668 - - uid: 3810 + - uid: 358 components: - type: Transform - pos: -19.5,-5.5 + pos: 34.5,6.5 parent: 1668 - - uid: 3811 + - uid: 359 components: - type: Transform - pos: -20.5,-5.5 + pos: 35.5,6.5 parent: 1668 - - uid: 3812 + - uid: 362 components: - type: Transform - pos: -21.5,-5.5 + pos: 18.5,9.5 parent: 1668 - - uid: 3813 + - uid: 364 components: - type: Transform - pos: -22.5,-5.5 + pos: 32.5,-14.5 parent: 1668 - - uid: 3814 + - uid: 368 components: - type: Transform - pos: -22.5,-6.5 + pos: 24.5,9.5 parent: 1668 - - uid: 3815 + - uid: 369 components: - type: Transform - pos: -24.5,-7.5 + pos: 25.5,9.5 parent: 1668 - - uid: 3816 + - uid: 370 components: - type: Transform - pos: -24.5,-6.5 + pos: 26.5,9.5 parent: 1668 - - uid: 3817 + - uid: 371 components: - type: Transform - pos: -22.5,-7.5 + pos: 27.5,9.5 parent: 1668 - - uid: 3819 + - uid: 372 components: - type: Transform - pos: -21.5,-7.5 + pos: 28.5,9.5 parent: 1668 - - uid: 3820 + - uid: 378 components: - type: Transform - pos: -20.5,-7.5 + pos: 34.5,9.5 parent: 1668 - - uid: 3822 + - uid: 379 components: - type: Transform - pos: -24.5,-5.5 + pos: 35.5,9.5 parent: 1668 - - uid: 4256 + - uid: 380 components: - type: Transform - pos: 2.5,-15.5 + rot: 3.141592653589793 rad + pos: 5.5,18.5 parent: 1668 - - uid: 4263 + - uid: 382 components: - type: Transform - pos: 2.5,-16.5 + pos: 34.5,8.5 parent: 1668 - - uid: 4344 + - uid: 383 components: - type: Transform - pos: 6.5,-24.5 + pos: 34.5,7.5 parent: 1668 - - uid: 4347 + - uid: 386 components: - type: Transform - pos: -8.5,-25.5 + pos: 35.5,-7.5 parent: 1668 - - uid: 4348 + - uid: 391 components: - type: Transform - pos: -8.5,-26.5 + pos: 34.5,-7.5 parent: 1668 - - uid: 4349 + - uid: 392 components: - type: Transform - pos: -8.5,-27.5 + pos: 33.5,-7.5 parent: 1668 - - uid: 4350 + - uid: 395 components: - type: Transform - pos: 7.5,-27.5 + rot: 1.5707963267948966 rad + pos: 12.5,-14.5 parent: 1668 - - uid: 4351 + - uid: 400 components: - type: Transform - pos: 7.5,-26.5 + pos: 28.5,-7.5 parent: 1668 - - uid: 4352 + - uid: 406 components: - type: Transform - pos: 7.5,-25.5 + pos: 19.5,-7.5 parent: 1668 - - uid: 4430 + - uid: 409 components: - type: Transform - pos: 3.5,-25.5 + rot: 1.5707963267948966 rad + pos: 24.5,11.5 parent: 1668 - - uid: 4431 + - uid: 410 components: - type: Transform - pos: 3.5,-26.5 + pos: 23.5,-7.5 parent: 1668 - - uid: 4432 + - uid: 411 components: - type: Transform - pos: -4.5,-25.5 + pos: 24.5,-7.5 parent: 1668 - - uid: 4433 + - uid: 472 components: - type: Transform - pos: -4.5,-26.5 + pos: 7.5,2.5 parent: 1668 - - uid: 4452 + - uid: 501 components: - type: Transform - pos: 2.5,-29.5 + rot: 1.5707963267948966 rad + pos: 24.5,10.5 parent: 1668 - - uid: 4459 + - uid: 502 components: - type: Transform - pos: -3.5,-29.5 + rot: 1.5707963267948966 rad + pos: 18.5,13.5 parent: 1668 - - uid: 4466 + - uid: 503 components: - type: Transform - pos: -3.5,-28.5 + rot: 1.5707963267948966 rad + pos: 19.5,13.5 parent: 1668 - - uid: 4467 + - uid: 516 components: - type: Transform - pos: 2.5,-28.5 + pos: 32.5,-7.5 parent: 1668 - - uid: 4582 + - uid: 579 components: - type: Transform - pos: -10.5,-28.5 + rot: 3.141592653589793 rad + pos: 8.5,6.5 parent: 1668 - - uid: 4583 + - uid: 580 components: - type: Transform - pos: -9.5,-28.5 + rot: 3.141592653589793 rad + pos: 11.5,6.5 parent: 1668 - - uid: 4584 + - uid: 601 components: - type: Transform - pos: -11.5,-28.5 + rot: 1.5707963267948966 rad + pos: 13.5,-14.5 parent: 1668 - - uid: 4586 + - uid: 606 components: - type: Transform - pos: -11.5,-26.5 + rot: 1.5707963267948966 rad + pos: 11.5,-14.5 parent: 1668 - - uid: 4587 + - uid: 633 components: - type: Transform - pos: -11.5,-25.5 + pos: 2.5,-12.5 parent: 1668 - - uid: 4588 + - uid: 634 components: - type: Transform - pos: -11.5,-24.5 + pos: 2.5,-13.5 parent: 1668 - - uid: 4749 + - uid: 635 components: - type: Transform - pos: 16.5,-22.5 + pos: 3.5,-13.5 parent: 1668 - - uid: 5312 + - uid: 636 components: - type: Transform - pos: 25.5,-26.5 + pos: 4.5,-13.5 parent: 1668 - - uid: 5313 + - uid: 637 components: - type: Transform - pos: 26.5,-26.5 + pos: 5.5,-13.5 parent: 1668 - - uid: 5315 + - uid: 638 components: - type: Transform - pos: 20.5,-22.5 + pos: 7.5,-13.5 parent: 1668 - - uid: 5316 + - uid: 639 components: - type: Transform - pos: 21.5,-22.5 + pos: 6.5,-13.5 parent: 1668 - - uid: 5317 + - uid: 641 components: - type: Transform - pos: 21.5,-21.5 + pos: 8.5,-13.5 parent: 1668 - - uid: 6453 + - uid: 642 components: - type: Transform - pos: -6.5,-43.5 + pos: 10.5,-13.5 parent: 1668 - - uid: 6454 + - uid: 643 components: - type: Transform - pos: -6.5,-41.5 + pos: 8.5,-7.5 parent: 1668 - - uid: 6455 + - uid: 644 components: - type: Transform - pos: -6.5,-39.5 + pos: 10.5,-7.5 parent: 1668 - - uid: 6456 + - uid: 645 components: - type: Transform - pos: -5.5,-39.5 + pos: 11.5,-7.5 parent: 1668 - - uid: 6457 + - uid: 647 components: - type: Transform - pos: -4.5,-39.5 + pos: 11.5,-13.5 parent: 1668 - - uid: 6458 + - uid: 648 components: - type: Transform - pos: 4.5,-39.5 + pos: 11.5,-12.5 parent: 1668 - - uid: 6459 + - uid: 701 components: - type: Transform - pos: 5.5,-39.5 + rot: 1.5707963267948966 rad + pos: 14.5,-14.5 parent: 1668 - - uid: 6460 + - uid: 702 components: - type: Transform - pos: 3.5,-39.5 + rot: 1.5707963267948966 rad + pos: 15.5,-14.5 parent: 1668 - - uid: 6461 + - uid: 703 components: - type: Transform - pos: 5.5,-41.5 + rot: 1.5707963267948966 rad + pos: 16.5,-14.5 parent: 1668 - - uid: 6462 + - uid: 704 components: - type: Transform - pos: 5.5,-43.5 + rot: 1.5707963267948966 rad + pos: 17.5,-14.5 parent: 1668 - - uid: 6767 + - uid: 705 components: - type: Transform - pos: 2.5,-17.5 + rot: 1.5707963267948966 rad + pos: 18.5,-14.5 parent: 1668 -- proto: TableWood - entities: - - uid: 2352 + - uid: 706 components: - type: Transform - pos: 32.5,15.5 + rot: 1.5707963267948966 rad + pos: 19.5,-14.5 parent: 1668 - - uid: 2353 + - uid: 707 components: - type: Transform - pos: 32.5,16.5 + rot: 1.5707963267948966 rad + pos: 20.5,-14.5 parent: 1668 - - uid: 2354 + - uid: 708 components: - type: Transform - pos: 32.5,17.5 + rot: 1.5707963267948966 rad + pos: 21.5,-14.5 parent: 1668 - - uid: 2355 + - uid: 709 components: - type: Transform - pos: 32.5,18.5 + rot: 1.5707963267948966 rad + pos: 22.5,-14.5 parent: 1668 - - uid: 2356 + - uid: 710 components: - type: Transform - pos: 32.5,19.5 + rot: 1.5707963267948966 rad + pos: 23.5,-14.5 parent: 1668 - - uid: 2357 + - uid: 711 components: - type: Transform - pos: 27.5,20.5 + rot: 1.5707963267948966 rad + pos: 24.5,-14.5 parent: 1668 - - uid: 2358 + - uid: 713 components: - type: Transform - pos: 28.5,20.5 + pos: 28.5,-14.5 parent: 1668 - - uid: 2359 + - uid: 714 components: - type: Transform - pos: 29.5,20.5 + pos: 24.5,-8.5 parent: 1668 - - uid: 2360 + - uid: 716 components: - type: Transform - pos: 29.5,21.5 + pos: 28.5,-13.5 parent: 1668 - - uid: 2361 + - uid: 717 components: - type: Transform - pos: 27.5,21.5 + pos: 28.5,-8.5 parent: 1668 - - uid: 2362 + - uid: 718 components: - type: Transform - pos: 30.5,20.5 + pos: 24.5,-13.5 parent: 1668 - - uid: 2363 + - uid: 758 components: - type: Transform - pos: 26.5,20.5 + rot: 1.5707963267948966 rad + pos: 2.5,-24.5 parent: 1668 - - uid: 2364 + - uid: 940 components: - type: Transform - pos: 22.5,23.5 + rot: 1.5707963267948966 rad + pos: 4.5,-24.5 parent: 1668 - - uid: 2365 + - uid: 942 components: - type: Transform - pos: 34.5,23.5 + rot: 1.5707963267948966 rad + pos: 10.5,-24.5 parent: 1668 - - uid: 2366 + - uid: 943 components: - type: Transform - pos: 30.5,23.5 + rot: 1.5707963267948966 rad + pos: 3.5,-24.5 parent: 1668 - - uid: 2367 + - uid: 944 components: - type: Transform - pos: 29.5,23.5 + rot: 1.5707963267948966 rad + pos: 9.5,-24.5 parent: 1668 - - uid: 2368 + - uid: 945 components: - type: Transform - pos: 27.5,23.5 + rot: 1.5707963267948966 rad + pos: 11.5,-24.5 parent: 1668 - - uid: 2369 + - uid: 948 components: - type: Transform - pos: 26.5,23.5 + rot: 1.5707963267948966 rad + pos: 8.5,-24.5 parent: 1668 - - uid: 2411 + - uid: 952 components: - type: Transform - pos: 27.5,17.5 + rot: 1.5707963267948966 rad + pos: 7.5,-24.5 parent: 1668 - - uid: 2412 + - uid: 953 components: - type: Transform - pos: 26.5,17.5 + rot: 1.5707963267948966 rad + pos: 6.5,-24.5 parent: 1668 - - uid: 2413 + - uid: 954 components: - type: Transform - pos: 30.5,17.5 + rot: 1.5707963267948966 rad + pos: 5.5,-24.5 parent: 1668 - - uid: 2414 + - uid: 972 components: - type: Transform - pos: 29.5,17.5 + rot: 1.5707963267948966 rad + pos: 11.5,-15.5 parent: 1668 - - uid: 2435 + - uid: 973 components: - type: Transform - pos: 28.5,10.5 + rot: 1.5707963267948966 rad + pos: 11.5,-16.5 parent: 1668 - - uid: 2436 + - uid: 977 components: - type: Transform - pos: 34.5,11.5 + rot: 1.5707963267948966 rad + pos: 11.5,-20.5 parent: 1668 - - uid: 2437 + - uid: 978 components: - type: Transform - pos: 34.5,12.5 + rot: 1.5707963267948966 rad + pos: 11.5,-21.5 parent: 1668 - - uid: 2486 + - uid: 979 components: - type: Transform - pos: 20.5,20.5 + rot: 1.5707963267948966 rad + pos: 11.5,-22.5 parent: 1668 - - uid: 2487 + - uid: 980 components: - type: Transform - pos: 19.5,20.5 + rot: 1.5707963267948966 rad + pos: 11.5,-23.5 parent: 1668 - - uid: 2488 + - uid: 1051 components: - type: Transform - pos: 19.5,21.5 + pos: 12.5,-24.5 parent: 1668 - - uid: 3394 + - uid: 1052 components: - type: Transform - pos: -25.5,8.5 + pos: 13.5,-24.5 parent: 1668 - - uid: 3395 + - uid: 1053 components: - type: Transform - pos: -26.5,8.5 + pos: 14.5,-24.5 parent: 1668 - - uid: 3396 + - uid: 1055 components: - type: Transform - pos: -26.5,9.5 + pos: 16.5,-24.5 parent: 1668 - - uid: 3397 + - uid: 1056 components: - type: Transform - pos: -26.5,11.5 + pos: 18.5,-24.5 parent: 1668 - - uid: 3398 + - uid: 1057 components: - type: Transform - pos: -26.5,12.5 + pos: 17.5,-24.5 parent: 1668 - - uid: 3399 + - uid: 1058 components: - type: Transform - pos: -25.5,12.5 + pos: 18.5,-23.5 parent: 1668 - - uid: 3400 + - uid: 1059 components: - type: Transform - pos: -15.5,12.5 + pos: 18.5,-21.5 parent: 1668 - - uid: 3401 + - uid: 1060 components: - type: Transform - pos: -14.5,12.5 + pos: 18.5,-20.5 parent: 1668 - - uid: 3402 + - uid: 1061 components: - type: Transform - pos: -16.5,12.5 + pos: 17.5,-20.5 parent: 1668 - - uid: 3403 + - uid: 1062 components: - type: Transform - pos: -16.5,8.5 + pos: 16.5,-20.5 parent: 1668 - - uid: 3404 + - uid: 1063 components: - type: Transform - pos: -19.5,10.5 + pos: 15.5,-20.5 parent: 1668 - - uid: 3405 + - uid: 1065 components: - type: Transform - pos: -20.5,10.5 + pos: 13.5,-20.5 parent: 1668 - - uid: 3406 + - uid: 1066 components: - type: Transform - pos: -20.5,11.5 + pos: 12.5,-20.5 parent: 1668 - - uid: 3407 + - uid: 1067 components: - type: Transform - pos: -20.5,12.5 + pos: 18.5,-22.5 parent: 1668 - - uid: 3409 + - uid: 1070 components: - type: Transform - pos: -18.5,8.5 + pos: 18.5,-16.5 parent: 1668 - - uid: 3410 + - uid: 1100 components: - type: Transform - pos: -24.5,4.5 + pos: 18.5,-15.5 parent: 1668 - - uid: 3411 + - uid: 1103 components: - type: Transform - pos: -23.5,4.5 + pos: 35.5,-19.5 parent: 1668 - - uid: 3417 + - uid: 1104 components: - type: Transform - pos: -23.5,2.5 + pos: 35.5,-18.5 parent: 1668 - - uid: 3418 + - uid: 1105 components: - type: Transform - pos: -18.5,2.5 + pos: 35.5,-17.5 parent: 1668 - - uid: 3445 + - uid: 1107 components: - type: Transform - pos: -23.5,10.5 + pos: 35.5,-15.5 parent: 1668 - - uid: 3446 + - uid: 1112 components: - type: Transform - pos: -23.5,11.5 + pos: 35.5,-14.5 parent: 1668 - - uid: 3829 + - uid: 1113 components: - type: Transform - pos: -26.5,-9.5 + pos: 35.5,-13.5 parent: 1668 - - uid: 3830 + - uid: 1114 components: - type: Transform - pos: -27.5,-9.5 + pos: 35.5,-12.5 parent: 1668 - - uid: 3831 + - uid: 1115 components: - type: Transform - pos: -27.5,-4.5 + pos: 35.5,-11.5 parent: 1668 - - uid: 3832 + - uid: 1116 components: - type: Transform - pos: -27.5,-3.5 + pos: 35.5,-10.5 parent: 1668 - - uid: 3833 + - uid: 1117 components: - type: Transform - pos: -26.5,-3.5 + pos: 35.5,-9.5 parent: 1668 - - uid: 3834 + - uid: 1118 components: - type: Transform - pos: -24.5,-3.5 + pos: 35.5,-8.5 parent: 1668 - - uid: 3835 + - uid: 1119 components: - type: Transform - pos: -17.5,-9.5 + pos: 32.5,-13.5 parent: 1668 - - uid: 3836 + - uid: 1120 components: - type: Transform - pos: -17.5,-3.5 + pos: 32.5,-8.5 parent: 1668 - - uid: 4184 + - uid: 1154 components: - type: Transform - pos: -27.5,-8.5 + pos: 34.5,-14.5 parent: 1668 - - uid: 4369 + - uid: 1159 components: - type: Transform - pos: -3.5,-23.5 + pos: 35.5,-23.5 parent: 1668 - - uid: 4370 + - uid: 1160 components: - type: Transform - pos: -3.5,-22.5 + pos: 35.5,-24.5 parent: 1668 - - uid: 4371 + - uid: 1161 components: - type: Transform - pos: -3.5,-21.5 + pos: 35.5,-25.5 parent: 1668 - - uid: 4372 + - uid: 1163 components: - type: Transform - pos: 2.5,-23.5 + pos: 35.5,-27.5 parent: 1668 - - uid: 4373 + - uid: 1192 components: - type: Transform - pos: 2.5,-22.5 + rot: 3.141592653589793 rad + pos: 18.5,-28.5 parent: 1668 - - uid: 4374 + - uid: 1196 components: - type: Transform - pos: 2.5,-21.5 + rot: 3.141592653589793 rad + pos: 23.5,-28.5 parent: 1668 - - uid: 4418 + - uid: 1197 components: - type: Transform - pos: 10.5,-27.5 + rot: 3.141592653589793 rad + pos: 24.5,-28.5 parent: 1668 - - uid: 4419 + - uid: 1200 components: - type: Transform - pos: 8.5,-21.5 + rot: 3.141592653589793 rad + pos: 29.5,-28.5 parent: 1668 - - uid: 4420 + - uid: 1201 components: - type: Transform - pos: 7.5,-21.5 + rot: 3.141592653589793 rad + pos: 28.5,-28.5 parent: 1668 - - uid: 4421 + - uid: 1203 components: - type: Transform - pos: 6.5,-21.5 + rot: 3.141592653589793 rad + pos: 22.5,-28.5 parent: 1668 - - uid: 4422 + - uid: 1206 components: - type: Transform - pos: 10.5,-21.5 + rot: 3.141592653589793 rad + pos: 34.5,-28.5 parent: 1668 - - uid: 4423 + - uid: 1207 components: - type: Transform - pos: 10.5,-25.5 + rot: 3.141592653589793 rad + pos: 35.5,-28.5 parent: 1668 - - uid: 4424 + - uid: 1208 components: - type: Transform - pos: 10.5,-24.5 + pos: 30.5,-28.5 parent: 1668 - - uid: 6728 + - uid: 1216 components: - type: Transform - pos: 18.5,10.5 + pos: 32.5,-24.5 parent: 1668 -- proto: TelecomServerFilled - entities: - - uid: 3121 + - uid: 1218 components: - type: Transform - pos: 4.5,-15.5 + pos: 31.5,-18.5 parent: 1668 -- proto: Telecrystal5 - entities: - - uid: 3772 + - uid: 1219 components: - type: Transform - pos: -10.611931,6.5603595 + pos: 31.5,-24.5 parent: 1668 -- proto: TintedWindow - entities: - - uid: 2752 + - uid: 1221 components: - type: Transform - pos: 7.5,22.5 + pos: 34.5,-18.5 parent: 1668 - - uid: 2760 + - uid: 1222 components: - type: Transform - pos: 7.5,21.5 + pos: 34.5,-24.5 parent: 1668 -- proto: ToiletGoldenEmpty - entities: - - uid: 5257 + - uid: 1223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,15.5 + pos: 33.5,-18.5 parent: 1668 -- proto: ToolboxMechanicalFilled - entities: - - uid: 3900 + - uid: 1224 components: - type: Transform - pos: -12.610057,-7.2428913 + pos: 32.5,-18.5 parent: 1668 -- proto: ToyFigurineAtmosTech - entities: - - uid: 6889 + - uid: 1244 components: - type: Transform - pos: 16.377594,-29.299969 + pos: 31.5,-22.5 parent: 1668 -- proto: ToyFigurineBartender - entities: - - uid: 6898 + - uid: 1276 components: - type: Transform - pos: 6.5385118,-24.247501 + pos: 31.5,-21.5 parent: 1668 -- proto: ToyFigurineBoxer - entities: - - uid: 793 + - uid: 1277 components: - type: Transform - pos: 2.494053,-15.45146 + pos: 31.5,-20.5 parent: 1668 -- proto: ToyFigurineCaptain - entities: - - uid: 1189 + - uid: 1278 components: - type: Transform - pos: -12.035681,6.6117244 + pos: 31.5,-23.5 parent: 1668 - - uid: 6985 + - uid: 1522 components: - type: Transform - pos: -19.5,-6.5 + pos: 7.5,13.5 parent: 1668 -- proto: ToyFigurineCargoTech - entities: - - uid: 6897 + - uid: 1523 components: - type: Transform - pos: -5.366757,26.262602 + pos: 3.5,13.5 parent: 1668 -- proto: ToyFigurineChaplain - entities: - - uid: 1186 + - uid: 1532 components: - type: Transform - pos: 2.6200008,16.762861 + pos: 5.5,13.5 parent: 1668 -- proto: ToyFigurineChef - entities: - - uid: 6899 + - uid: 1533 components: - type: Transform - pos: -10.860091,-28.497501 + pos: 8.5,13.5 parent: 1668 -- proto: ToyFigurineChemist - entities: - - uid: 6901 + - uid: 1540 components: - type: Transform - pos: 3.7089076,-9.834605 + pos: 8.5,9.5 parent: 1668 -- proto: ToyFigurineChiefEngineer - entities: - - uid: 6892 + - uid: 1541 components: - type: Transform - pos: 27.221512,-23.216656 + pos: 2.5,9.5 parent: 1668 - - uid: 6982 + - uid: 1546 components: - type: Transform - pos: -21.5,-7.5 + rot: 1.5707963267948966 rad + pos: 23.5,13.5 parent: 1668 -- proto: ToyFigurineChiefMedicalOfficer - entities: - - uid: 6900 + - uid: 1547 components: - type: Transform - pos: 13.343676,-12.106804 + rot: 1.5707963267948966 rad + pos: 24.5,13.5 parent: 1668 - - uid: 6980 + - uid: 1548 components: - type: Transform - pos: -20.5,-7.5 + pos: 2.5,13.5 parent: 1668 -- proto: ToyFigurineClown - entities: - - uid: 6907 + - uid: 1563 components: - type: Transform - pos: -8.574588,-33.40033 + rot: 1.5707963267948966 rad + pos: 24.5,12.5 parent: 1668 -- proto: ToyFigurineDetective - entities: - - uid: 6508 + - uid: 1752 components: - type: Transform - pos: 4.5357866,22.481915 + rot: 3.141592653589793 rad + pos: 17.5,27.5 parent: 1668 -- proto: ToyFigurineEngineer - entities: - - uid: 6891 + - uid: 1757 components: - type: Transform - pos: 26.955887,-23.01353 + pos: 9.5,18.5 parent: 1668 -- proto: ToyFigurineFootsoldier - entities: - - uid: 6510 + - uid: 1759 components: - type: Transform - pos: 3.5129395,25.168112 + pos: 9.5,17.5 parent: 1668 -- proto: ToyFigurineGreytider - entities: - - uid: 2142 + - uid: 1762 components: - type: Transform - pos: -1.5147417,19.684673 + pos: 17.5,17.5 parent: 1668 - - uid: 6509 + - uid: 1763 components: - type: Transform - pos: 16.351696,22.083393 + rot: 3.141592653589793 rad + pos: 17.5,26.5 parent: 1668 -- proto: ToyFigurineHamlet - entities: - - uid: 6503 + - uid: 1764 components: - type: Transform - pos: -9.969621,-28.458797 + rot: 3.141592653589793 rad + pos: 17.5,25.5 parent: 1668 -- proto: ToyFigurineHeadOfPersonnel - entities: - - uid: 6500 + - uid: 1765 components: - type: Transform - pos: 2.714695,-2.0789247 + rot: 3.141592653589793 rad + pos: 17.5,23.5 parent: 1668 - - uid: 6981 + - uid: 1772 components: - type: Transform - pos: -19.5,-5.5 + pos: 35.5,13.5 parent: 1668 -- proto: ToyFigurineHeadOfSecurity - entities: - - uid: 592 + - uid: 1773 components: - type: Transform - pos: 8.675076,17.818161 + pos: 35.5,14.5 parent: 1668 - - uid: 6983 + - uid: 1774 components: - type: Transform - pos: -19.5,-7.5 + pos: 35.5,15.5 parent: 1668 -- proto: ToyFigurineJanitor - entities: - - uid: 6905 + - uid: 1775 components: - type: Transform - pos: -18.176952,-31.706894 + pos: 35.5,16.5 parent: 1668 -- proto: ToyFigurineLawyer - entities: - - uid: 6904 + - uid: 1776 components: - type: Transform - pos: 19.429096,21.772528 + pos: 35.5,18.5 parent: 1668 -- proto: ToyFigurineLibrarian - entities: - - uid: 6903 + - uid: 1777 components: - type: Transform - pos: 18.65788,12.674046 + pos: 35.5,19.5 parent: 1668 -- proto: ToyFigurineMedicalDoctor - entities: - - uid: 6902 + - uid: 1778 components: - type: Transform - pos: 9.723116,-4.147105 + pos: 35.5,20.5 parent: 1668 -- proto: ToyFigurineMime - entities: - - uid: 6908 + - uid: 1779 components: - type: Transform - pos: 9.395194,-30.337831 + pos: 35.5,17.5 parent: 1668 -- proto: ToyFigurineMusician - entities: - - uid: 6499 + - uid: 1867 components: - type: Transform - pos: 0.78786826,-28.113647 + pos: 6.5,17.5 parent: 1668 -- proto: ToyFigurineNukie - entities: - - uid: 6512 + - uid: 1868 components: - type: Transform - pos: 3.1101613,28.112556 + pos: 17.5,28.5 parent: 1668 -- proto: ToyFigurineNukieCommander - entities: - - uid: 6511 + - uid: 1876 components: - type: Transform - pos: 2.8740501,28.668112 + pos: -22.5,18.5 parent: 1668 -- proto: ToyFigurineNukieElite - entities: - - uid: 6507 + - uid: 1877 components: - type: Transform - pos: 2.3733406,28.503387 + pos: -20.5,18.5 parent: 1668 -- proto: ToyFigurineParamedic - entities: - - uid: 3427 + - uid: 1880 components: - type: Transform - pos: 10.656263,-7.212401 + rot: 3.141592653589793 rad + pos: 17.5,24.5 parent: 1668 -- proto: ToyFigurinePassenger - entities: - - uid: 3428 + - uid: 1881 components: - type: Transform - pos: 21.387323,5.715851 + rot: 3.141592653589793 rad + pos: 17.5,22.5 parent: 1668 -- proto: ToyFigurineQuartermaster - entities: - - uid: 6896 + - uid: 1882 components: - type: Transform - pos: -15.016072,14.885906 + rot: 3.141592653589793 rad + pos: 17.5,21.5 parent: 1668 - - uid: 6979 + - uid: 1883 components: - type: Transform - pos: -20.5,-5.5 + rot: 3.141592653589793 rad + pos: 17.5,20.5 parent: 1668 -- proto: ToyFigurineRatKing - entities: - - uid: 6906 + - uid: 1884 components: - type: Transform - pos: 18.512383,13.407988 + rot: 3.141592653589793 rad + pos: 17.5,19.5 parent: 1668 -- proto: ToyFigurineResearchDirector - entities: - - uid: 3429 + - uid: 1885 components: - type: Transform - pos: -32.494865,6.5819006 + rot: 3.141592653589793 rad + pos: 17.5,18.5 parent: 1668 - - uid: 6984 + - uid: 1886 components: - type: Transform - pos: -21.5,-5.5 + rot: 3.141592653589793 rad + pos: 35.5,21.5 parent: 1668 -- proto: ToyFigurineSalvage - entities: - - uid: 6895 + - uid: 1887 components: - type: Transform - pos: -5.514065,26.593782 + rot: 3.141592653589793 rad + pos: 35.5,22.5 parent: 1668 -- proto: ToyFigurineSecurity - entities: - - uid: 6488 + - uid: 1888 components: - type: Transform - pos: 10.024659,25.7943 + rot: 3.141592653589793 rad + pos: 35.5,23.5 parent: 1668 - - uid: 6893 + - uid: 1889 components: - type: Transform - pos: 27.445951,-11.38564 + rot: 3.141592653589793 rad + pos: 35.5,24.5 parent: 1668 -- proto: ToyFigurineThief - entities: - - uid: 6513 + - uid: 1890 components: - type: Transform - pos: 15.358348,28.515333 + rot: 3.141592653589793 rad + pos: 35.5,25.5 parent: 1668 -- proto: ToyFigurineWarden - entities: - - uid: 6894 + - uid: 1891 components: - type: Transform - pos: 4.3459373,19.764877 + rot: 3.141592653589793 rad + pos: 35.5,26.5 parent: 1668 -- proto: ToyFigurineWizard - entities: - - uid: 6514 + - uid: 1892 components: - type: Transform - pos: 16.312458,25.32646 + pos: 27.5,28.5 parent: 1668 -- proto: ToyOwlman - entities: - - uid: 3464 + - uid: 1893 components: - type: Transform - pos: -24.5,-6.5 + pos: 26.5,28.5 parent: 1668 -- proto: ToyRubberDuck - entities: - - uid: 3423 + - uid: 1894 components: - type: Transform - pos: -20.47715,15.513819 + pos: 31.5,28.5 parent: 1668 -- proto: TwoWayLever - entities: - - uid: 1588 + - uid: 1895 components: - type: Transform - pos: -12.5,23.5 + pos: 24.5,28.5 parent: 1668 - - type: TwoWayLever - nextSignalLeft: True - - type: DeviceLinkSource - linkedPorts: - 1576: - - Left: Forward - - Right: Reverse - - Middle: Off - 1577: - - Left: Forward - - Right: Reverse - - Middle: Off - 1578: - - Left: Forward - - Right: Reverse - - Middle: Off - 1579: - - Left: Forward - - Right: Reverse - - Middle: Off - 1580: - - Left: Forward - - Right: Reverse - - Middle: Off - 1581: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 1589 + - uid: 1896 components: - type: Transform - pos: -12.5,29.5 + pos: 25.5,28.5 parent: 1668 - - type: TwoWayLever - nextSignalLeft: True - - type: DeviceLinkSource - linkedPorts: - 1582: - - Left: Forward - - Right: Reverse - - Middle: Off - 1583: - - Left: Forward - - Right: Reverse - - Middle: Off - 1584: - - Left: Forward - - Right: Reverse - - Middle: Off - 1585: - - Left: Forward - - Right: Reverse - - Middle: Off - 1586: - - Left: Forward - - Right: Reverse - - Middle: Off - 1587: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 5906 + - uid: 1897 components: - type: Transform - pos: -18.5,-32.5 + pos: 22.5,28.5 parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 5902: - - Left: Forward - - Right: Reverse - - Middle: Off - 5903: - - Left: Forward - - Right: Reverse - - Middle: Off - 5904: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 5907 + - uid: 1898 components: - type: Transform - pos: -18.5,-31.5 + pos: 23.5,28.5 parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 5908: - - Left: Forward - - Right: Reverse - - Middle: Off -- proto: VendingMachineAmmo - entities: - - uid: 2821 + - uid: 1899 components: - type: Transform - pos: 8.5,27.5 + pos: 20.5,28.5 parent: 1668 -- proto: VendingMachineBooze - entities: - - uid: 3408 + - uid: 1900 components: - type: Transform - pos: -20.5,8.5 + pos: 21.5,28.5 parent: 1668 - - uid: 4415 + - uid: 1902 components: - type: Transform - pos: 10.5,-26.5 + pos: 29.5,28.5 parent: 1668 - - uid: 4416 + - uid: 1903 components: - type: Transform - pos: 9.5,-21.5 + pos: 34.5,28.5 parent: 1668 -- proto: VendingMachineCargoDrobe - entities: - - uid: 2209 + - uid: 1904 components: - type: Transform - pos: -5.5,31.5 + pos: 35.5,28.5 parent: 1668 -- proto: VendingMachineCart - entities: - - uid: 764 + - uid: 1905 components: - type: Transform - pos: -25.5,-9.5 + pos: 33.5,28.5 parent: 1668 -- proto: VendingMachineCentDrobe - entities: - - uid: 649 + - uid: 1906 components: - type: Transform - pos: 2.5,1.5 + pos: 30.5,28.5 parent: 1668 - - uid: 2444 + - uid: 1907 components: - type: Transform - pos: -14.5,10.5 + pos: 32.5,28.5 parent: 1668 -- proto: VendingMachineChang - entities: - - uid: 1406 + - uid: 1908 components: - type: Transform - pos: -2.5,1.5 + rot: 3.141592653589793 rad + pos: 35.5,27.5 parent: 1668 - - uid: 2445 + - uid: 1909 components: - type: Transform - pos: 1.5,-15.5 + pos: 28.5,28.5 parent: 1668 - - uid: 6573 + - uid: 1910 components: - type: Transform - pos: -10.5,-33.5 + pos: 32.5,17.5 parent: 1668 -- proto: VendingMachineChefvend - entities: - - uid: 4262 + - uid: 1926 components: - type: Transform - pos: -10.5,-21.5 + pos: 32.5,18.5 parent: 1668 -- proto: VendingMachineChemicals - entities: - - uid: 644 + - uid: 1942 components: - type: Transform - pos: 7.5,-9.5 + pos: 20.5,23.5 parent: 1668 -- proto: VendingMachineCigs - entities: - - uid: 2439 + - uid: 1943 components: - type: Transform - pos: 29.5,10.5 + pos: 9.5,22.5 parent: 1668 - - uid: 6574 + - uid: 1948 components: - type: Transform - pos: -5.5,-37.5 + pos: 20.5,17.5 parent: 1668 -- proto: VendingMachineClothing - entities: - - uid: 2738 + - uid: 1949 components: - type: Transform - pos: -5.5,-17.5 + pos: 20.5,18.5 parent: 1668 - - uid: 6150 + - uid: 1951 components: - type: Transform - pos: -20.5,-29.5 + pos: 9.5,21.5 parent: 1668 -- proto: VendingMachineCoffee - entities: - - uid: 2438 + - uid: 1952 components: - type: Transform - pos: 27.5,10.5 + pos: 20.5,19.5 parent: 1668 - - uid: 5463 + - uid: 1954 components: - type: Transform - pos: 15.5,-31.5 + pos: 18.5,17.5 parent: 1668 - - uid: 6591 + - uid: 2033 components: - type: Transform - pos: 9.5,-33.5 + pos: 20.5,27.5 parent: 1668 -- proto: VendingMachineCola - entities: - - uid: 2192 + - uid: 2034 components: - type: Transform - pos: -0.5,13.5 + pos: 20.5,24.5 parent: 1668 - - uid: 4403 + - uid: 2058 components: - type: Transform - pos: 6.5,-15.5 + pos: 34.5,13.5 parent: 1668 -- proto: VendingMachineColaBlack - entities: - - uid: 6729 + - uid: 2059 components: - type: Transform - pos: 1.5,-13.5 + pos: 33.5,13.5 parent: 1668 -- proto: VendingMachineCondiments - entities: - - uid: 6626 + - uid: 2060 components: - type: Transform - pos: 1.5,-25.5 + pos: 32.5,13.5 parent: 1668 -- proto: VendingMachineDinnerware - entities: - - uid: 4578 + - uid: 2061 components: - type: Transform - pos: -11.5,-21.5 + pos: 31.5,13.5 parent: 1668 -- proto: VendingMachineDiscount - entities: - - uid: 3185 + - uid: 2063 components: - type: Transform - pos: 9.5,10.5 + pos: 28.5,13.5 parent: 1668 - - uid: 6651 + - uid: 2064 components: - type: Transform - pos: -7.5,-15.5 + pos: 27.5,13.5 parent: 1668 -- proto: VendingMachineDonut - entities: - - uid: 3186 + - uid: 2065 components: - type: Transform - pos: 11.5,10.5 + pos: 26.5,13.5 parent: 1668 -- proto: VendingMachineEngivend - entities: - - uid: 5250 + - uid: 2066 components: - type: Transform - pos: 23.5,-20.5 + pos: 25.5,13.5 parent: 1668 -- proto: VendingMachineGames - entities: - - uid: 6608 + - uid: 2123 components: - type: Transform - pos: 16.5,10.5 + pos: 9.5,20.5 parent: 1668 -- proto: VendingMachineLawDrobe - entities: - - uid: 2489 + - uid: 2126 components: - type: Transform - pos: 18.5,23.5 + pos: 9.5,24.5 parent: 1668 -- proto: VendingMachineMedical - entities: - - uid: 617 + - uid: 2127 components: - type: Transform - pos: 15.5,-5.5 + pos: 9.5,25.5 parent: 1668 - - uid: 6601 + - uid: 2128 components: - type: Transform - pos: 9.5,-12.5 + pos: 9.5,23.5 parent: 1668 -- proto: VendingMachinePwrGame - entities: - - uid: 6634 + - uid: 2129 components: - type: Transform - pos: -2.5,-15.5 + pos: 9.5,26.5 parent: 1668 -- proto: VendingMachineSalvage - entities: - - uid: 6938 + - uid: 2132 components: - type: Transform - pos: -8.5,31.5 + pos: 9.5,36.5 parent: 1668 -- proto: VendingMachineSec - entities: - - uid: 2820 + - uid: 2142 components: - type: Transform - pos: 9.5,27.5 + pos: 12.5,17.5 parent: 1668 - - uid: 3259 + - uid: 2150 components: - type: Transform - pos: 8.5,21.5 + pos: 12.5,21.5 parent: 1668 - - uid: 5457 + - uid: 2155 components: - type: Transform - pos: 28.5,-10.5 + pos: 14.5,21.5 parent: 1668 -- proto: VendingMachineSnack - entities: - - uid: 4166 + - uid: 2167 components: - type: Transform - pos: -29.5,3.5 + pos: 14.5,17.5 parent: 1668 - - uid: 4401 + - uid: 2170 components: - type: Transform - pos: 7.5,-15.5 + pos: 9.5,28.5 parent: 1668 -- proto: VendingMachineSnackOrange - entities: - - uid: 6726 + - uid: 2171 components: - type: Transform - pos: -2.5,-13.5 + pos: 9.5,27.5 parent: 1668 -- proto: VendingMachineSnackTeal - entities: - - uid: 6727 + - uid: 2174 components: - type: Transform - pos: -0.5,11.5 + pos: 8.5,36.5 parent: 1668 -- proto: VendingMachineSoda - entities: - - uid: 6648 + - uid: 2175 components: - type: Transform - pos: -8.5,-15.5 + pos: 10.5,36.5 parent: 1668 -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 6556 + - uid: 2176 components: - type: Transform - pos: -2.5,-45.5 + pos: 18.5,29.5 parent: 1668 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 2045 + - uid: 2180 components: - type: Transform - pos: -3.5,23.5 + pos: 17.5,36.5 parent: 1668 - - uid: 4286 + - uid: 2182 components: - type: Transform - pos: 10.5,29.5 + pos: 16.5,36.5 parent: 1668 - - uid: 6555 + - uid: 2186 components: - type: Transform - pos: 1.5,-45.5 + pos: 18.5,36.5 parent: 1668 -- proto: VendingMachineTheater - entities: - - uid: 2448 + - uid: 2204 components: - type: Transform - pos: -5.5,-15.5 + pos: 8.5,35.5 parent: 1668 -- proto: VendingMachineWinter - entities: - - uid: 2443 + - uid: 2205 components: - type: Transform - pos: -5.5,-16.5 + pos: 8.5,34.5 parent: 1668 -- proto: VendingMachineYouTool - entities: - - uid: 5251 + - uid: 2206 components: - type: Transform - pos: 23.5,-21.5 + pos: 8.5,33.5 parent: 1668 -- proto: WallmountTelescreen - entities: - - uid: 3449 + - uid: 2207 components: - type: Transform - pos: -18.5,7.5 + pos: 8.5,32.5 parent: 1668 -- proto: WallmountTelevision - entities: - - uid: 3452 + - uid: 2208 components: - type: Transform - pos: -23.5,1.5 + pos: 8.5,31.5 parent: 1668 -- proto: WallRiveted - entities: - - uid: 1 + - uid: 2209 components: - type: Transform - pos: 10.5,2.5 + pos: 8.5,30.5 parent: 1668 - - uid: 2 + - uid: 2210 components: - type: Transform - pos: 9.5,2.5 + pos: 8.5,29.5 parent: 1668 - - uid: 3 + - uid: 2211 components: - type: Transform - pos: 8.5,1.5 + pos: 8.5,28.5 parent: 1668 - - uid: 4 + - uid: 2264 components: - type: Transform - pos: 8.5,2.5 + pos: -8.5,-36.5 parent: 1668 - - uid: 5 + - uid: 2279 components: - type: Transform - pos: 7.5,2.5 + pos: 7.5,-36.5 parent: 1668 - - uid: 6 + - uid: 2280 components: - type: Transform - pos: 6.5,2.5 + pos: 7.5,-32.5 parent: 1668 - - uid: 7 + - uid: 2282 components: - type: Transform - pos: 6.5,1.5 + rot: 1.5707963267948966 rad + pos: -9.5,-37.5 parent: 1668 - - uid: 8 + - uid: 2283 components: - type: Transform - pos: 10.5,-3.5 + rot: 1.5707963267948966 rad + pos: 11.5,-37.5 parent: 1668 - - uid: 9 + - uid: 2284 components: - type: Transform - pos: 9.5,-3.5 + rot: 1.5707963267948966 rad + pos: -11.5,-37.5 parent: 1668 - - uid: 10 + - uid: 2285 components: - type: Transform - pos: 8.5,-2.5 + rot: 1.5707963267948966 rad + pos: -10.5,-37.5 parent: 1668 - - uid: 11 + - uid: 2286 components: - type: Transform - pos: 8.5,-3.5 + pos: 11.5,-36.5 parent: 1668 - - uid: 12 + - uid: 2287 components: - type: Transform - pos: 7.5,-3.5 + pos: 11.5,-35.5 parent: 1668 - - uid: 13 + - uid: 2288 components: - type: Transform - pos: 6.5,-3.5 + pos: 11.5,-34.5 parent: 1668 - - uid: 14 + - uid: 2289 components: - type: Transform - pos: 6.5,-2.5 + pos: 11.5,-33.5 parent: 1668 - - uid: 70 + - uid: 2290 components: - type: Transform - pos: 3.5,-3.5 + pos: 11.5,-31.5 parent: 1668 - - uid: 71 + - uid: 2291 components: - type: Transform - pos: -4.5,-3.5 + pos: 11.5,-32.5 parent: 1668 - - uid: 72 + - uid: 2292 components: - type: Transform - pos: -1.5,-3.5 + pos: 11.5,-29.5 parent: 1668 - - uid: 73 + - uid: 2293 components: - type: Transform - pos: 0.5,-3.5 + pos: -12.5,-34.5 parent: 1668 - - uid: 74 + - uid: 2297 components: - type: Transform - pos: 1.5,2.5 + rot: 1.5707963267948966 rad + pos: -12.5,-46.5 parent: 1668 - - uid: 75 + - uid: 2299 components: - type: Transform - pos: -2.5,2.5 + rot: 1.5707963267948966 rad + pos: -9.5,-46.5 parent: 1668 - - uid: 78 + - uid: 2300 components: - type: Transform - pos: 5.5,7.5 + pos: -12.5,-36.5 parent: 1668 - - uid: 86 + - uid: 2301 components: - type: Transform - pos: 3.5,5.5 + pos: -12.5,-35.5 parent: 1668 - - uid: 87 + - uid: 2321 components: - type: Transform - pos: 3.5,7.5 + pos: -8.5,-32.5 parent: 1668 - - uid: 88 + - uid: 2350 components: - type: Transform - pos: 2.5,7.5 + pos: -9.5,-28.5 parent: 1668 - - uid: 89 + - uid: 2378 components: - type: Transform - pos: 1.5,7.5 + pos: -12.5,-33.5 parent: 1668 - - uid: 90 + - uid: 2379 components: - type: Transform - pos: 1.5,6.5 + pos: -12.5,-32.5 parent: 1668 - - uid: 91 + - uid: 2380 components: - type: Transform - pos: 1.5,5.5 + pos: -12.5,-31.5 parent: 1668 - - uid: 96 + - uid: 2382 components: - type: Transform - pos: 5.5,5.5 + pos: -12.5,-29.5 parent: 1668 - - uid: 97 + - uid: 2383 components: - type: Transform - pos: 8.5,6.5 + pos: -12.5,-28.5 parent: 1668 - - uid: 100 + - uid: 2384 components: - type: Transform - pos: 6.5,5.5 + pos: -11.5,-28.5 parent: 1668 - - uid: 101 + - uid: 2385 components: - type: Transform - pos: 6.5,4.5 + pos: -10.5,-28.5 parent: 1668 - - uid: 102 + - uid: 2533 components: - type: Transform - pos: 8.5,4.5 + pos: 21.5,35.5 parent: 1668 - - uid: 113 + - uid: 2542 components: - type: Transform - pos: 16.5,1.5 + pos: 22.5,32.5 parent: 1668 - - uid: 114 + - uid: 2544 components: - type: Transform - pos: 16.5,2.5 + pos: 22.5,34.5 parent: 1668 - - uid: 115 + - uid: 2546 components: - type: Transform - pos: 17.5,2.5 + pos: 14.5,36.5 parent: 1668 - - uid: 116 + - uid: 2549 components: - type: Transform - pos: 18.5,2.5 + pos: 13.5,36.5 parent: 1668 - - uid: 117 + - uid: 2550 components: - type: Transform - pos: 18.5,1.5 + pos: 15.5,36.5 parent: 1668 - - uid: 118 + - uid: 2551 components: - type: Transform - pos: 18.5,-2.5 + pos: 11.5,36.5 parent: 1668 - - uid: 119 + - uid: 2552 components: - type: Transform - pos: 18.5,-3.5 + pos: 12.5,36.5 parent: 1668 - - uid: 120 + - uid: 2561 components: - type: Transform - pos: 17.5,-3.5 + pos: 22.5,33.5 parent: 1668 - - uid: 121 + - uid: 2563 components: - type: Transform - pos: 16.5,-2.5 + pos: 18.5,35.5 parent: 1668 - - uid: 122 + - uid: 2565 components: - type: Transform - pos: 16.5,-3.5 + pos: 19.5,29.5 parent: 1668 - - uid: 137 + - uid: 2568 components: - type: Transform - pos: 8.5,-6.5 + pos: 19.5,35.5 parent: 1668 - - uid: 138 + - uid: 2569 components: - type: Transform - pos: 7.5,-6.5 + pos: 20.5,35.5 parent: 1668 - - uid: 139 + - uid: 2574 components: - type: Transform - pos: 6.5,-6.5 + pos: 22.5,35.5 parent: 1668 - - uid: 140 + - uid: 2575 components: - type: Transform - pos: 5.5,-6.5 + pos: 21.5,29.5 parent: 1668 - - uid: 141 + - uid: 2576 components: - type: Transform - pos: 3.5,-6.5 + pos: 22.5,30.5 parent: 1668 - - uid: 142 + - uid: 2578 components: - type: Transform - pos: 1.5,-6.5 + pos: 20.5,29.5 parent: 1668 - - uid: 143 + - uid: 2579 components: - type: Transform - pos: 1.5,-7.5 + pos: 22.5,31.5 parent: 1668 - - uid: 144 + - uid: 2580 components: - type: Transform - pos: 1.5,-8.5 + pos: 22.5,29.5 parent: 1668 - - uid: 145 + - uid: 2582 components: - type: Transform - pos: 2.5,-8.5 + pos: 3.5,33.5 parent: 1668 - - uid: 146 + - uid: 2626 components: - type: Transform - pos: 3.5,-8.5 + pos: -13.5,-5.5 parent: 1668 - - uid: 147 + - uid: 2627 components: - type: Transform - pos: 5.5,-8.5 + pos: -14.5,-5.5 parent: 1668 - - uid: 174 + - uid: 2628 components: - type: Transform - pos: 8.5,-7.5 + pos: -15.5,-5.5 parent: 1668 - - uid: 175 + - uid: 2635 components: - type: Transform - pos: 8.5,-8.5 + pos: -12.5,-3.5 parent: 1668 - - uid: 176 + - uid: 2636 components: - type: Transform - pos: 8.5,-9.5 + pos: -9.5,-5.5 parent: 1668 - - uid: 177 + - uid: 2637 components: - type: Transform - pos: 8.5,-10.5 + pos: -10.5,-5.5 parent: 1668 - - uid: 178 + - uid: 2638 components: - type: Transform - pos: 12.5,-10.5 + pos: -11.5,-5.5 parent: 1668 - - uid: 179 + - uid: 2639 components: - type: Transform - pos: 12.5,-8.5 + pos: -12.5,-5.5 parent: 1668 - - uid: 180 + - uid: 2656 components: - type: Transform - pos: 16.5,-7.5 + rot: -1.5707963267948966 rad + pos: -12.5,4.5 parent: 1668 - - uid: 181 + - uid: 2657 components: - type: Transform - pos: 16.5,-8.5 + rot: -1.5707963267948966 rad + pos: -11.5,4.5 parent: 1668 - - uid: 182 + - uid: 2658 components: - type: Transform - pos: 16.5,-10.5 + rot: -1.5707963267948966 rad + pos: -10.5,4.5 parent: 1668 - - uid: 184 + - uid: 2659 components: - type: Transform - pos: 18.5,-7.5 + rot: -1.5707963267948966 rad + pos: -9.5,4.5 parent: 1668 - - uid: 185 + - uid: 2680 components: - type: Transform - pos: 16.5,-5.5 + rot: -1.5707963267948966 rad + pos: -12.5,2.5 parent: 1668 - - uid: 187 + - uid: 2681 components: - type: Transform - pos: 18.5,-4.5 + rot: -1.5707963267948966 rad + pos: -16.5,2.5 parent: 1668 - - uid: 188 + - uid: 2695 components: - type: Transform - pos: 18.5,-5.5 + pos: -16.5,4.5 parent: 1668 - - uid: 209 + - uid: 2699 components: - type: Transform - pos: 18.5,-8.5 + pos: -16.5,-5.5 parent: 1668 - - uid: 210 + - uid: 2701 components: - type: Transform - pos: 18.5,-10.5 + pos: -16.5,-3.5 parent: 1668 - - uid: 211 + - uid: 2716 components: - type: Transform - pos: 18.5,-9.5 + pos: -17.5,2.5 parent: 1668 - - uid: 213 + - uid: 2717 components: - type: Transform - pos: 2.5,-9.5 + pos: -18.5,2.5 parent: 1668 - - uid: 229 + - uid: 2718 components: - type: Transform - pos: 8.5,-14.5 + pos: -19.5,2.5 parent: 1668 - - uid: 230 + - uid: 2719 components: - type: Transform - pos: 8.5,-13.5 + pos: -21.5,2.5 parent: 1668 - - uid: 231 + - uid: 2720 components: - type: Transform - pos: 8.5,-12.5 + pos: -22.5,2.5 parent: 1668 - - uid: 232 + - uid: 2721 components: - type: Transform - pos: 6.5,-14.5 + pos: -23.5,2.5 parent: 1668 - - uid: 233 + - uid: 2722 components: - type: Transform - pos: 5.5,-14.5 + pos: -24.5,2.5 parent: 1668 - - uid: 234 + - uid: 2723 components: - type: Transform - pos: 4.5,-14.5 + rot: 3.141592653589793 rad + pos: -29.5,8.5 parent: 1668 - - uid: 235 + - uid: 2726 components: - type: Transform - pos: 3.5,-14.5 + rot: 3.141592653589793 rad + pos: -29.5,2.5 parent: 1668 - - uid: 236 + - uid: 2728 components: - type: Transform - pos: 2.5,-14.5 + pos: -24.5,8.5 parent: 1668 - - uid: 237 + - uid: 2729 components: - type: Transform - pos: 6.5,-12.5 + pos: -23.5,8.5 parent: 1668 - - uid: 248 + - uid: 2732 components: - type: Transform - pos: 16.5,4.5 + pos: -19.5,8.5 parent: 1668 - - uid: 249 + - uid: 2733 components: - type: Transform - pos: 18.5,3.5 + pos: -17.5,8.5 parent: 1668 - - uid: 250 + - uid: 2734 components: - type: Transform - pos: 18.5,4.5 + pos: -18.5,8.5 parent: 1668 - - uid: 251 + - uid: 2735 components: - type: Transform - pos: 18.5,6.5 + pos: -13.5,4.5 parent: 1668 - - uid: 252 + - uid: 2738 components: - type: Transform - pos: 18.5,7.5 + pos: -12.5,8.5 parent: 1668 - - uid: 253 + - uid: 2739 components: - type: Transform - pos: 18.5,8.5 + pos: -8.5,7.5 parent: 1668 - - uid: 256 + - uid: 2740 components: - type: Transform - pos: 16.5,7.5 + pos: -8.5,8.5 parent: 1668 - - uid: 257 + - uid: 2741 components: - type: Transform - pos: 16.5,6.5 + pos: -9.5,8.5 parent: 1668 - - uid: 258 + - uid: 2742 components: - type: Transform - pos: 15.5,7.5 + pos: -10.5,8.5 parent: 1668 - - uid: 273 + - uid: 2743 components: - type: Transform - pos: 8.5,7.5 + pos: -11.5,8.5 parent: 1668 - - uid: 274 + - uid: 2744 components: - type: Transform - pos: 8.5,9.5 + pos: -13.5,8.5 parent: 1668 - - uid: 276 + - uid: 2745 components: - type: Transform - pos: 12.5,9.5 + pos: -14.5,8.5 parent: 1668 - - uid: 277 + - uid: 2746 components: - type: Transform - pos: 12.5,7.5 + pos: -15.5,8.5 parent: 1668 - - uid: 293 + - uid: 2747 components: - type: Transform - pos: 3.5,9.5 + pos: -24.5,11.5 parent: 1668 - - uid: 294 + - uid: 2748 components: - type: Transform - pos: 4.5,9.5 + pos: -24.5,14.5 parent: 1668 - - uid: 295 + - uid: 2749 components: - type: Transform - pos: 5.5,9.5 + pos: -23.5,14.5 parent: 1668 - - uid: 296 + - uid: 2750 components: - type: Transform - pos: 5.5,8.5 + pos: -22.5,14.5 parent: 1668 - - uid: 300 + - uid: 2751 components: - type: Transform - pos: 15.5,9.5 + pos: -21.5,14.5 parent: 1668 - - uid: 315 + - uid: 2752 components: - type: Transform - pos: -2.5,-6.5 + pos: -20.5,14.5 parent: 1668 - - uid: 316 + - uid: 2753 components: - type: Transform - pos: -2.5,-7.5 + pos: -19.5,14.5 parent: 1668 - - uid: 317 + - uid: 2756 components: - type: Transform - pos: -2.5,-8.5 + pos: -19.5,17.5 parent: 1668 - - uid: 318 + - uid: 2757 components: - type: Transform - pos: -3.5,-8.5 + pos: -18.5,17.5 parent: 1668 - - uid: 319 + - uid: 2758 components: - type: Transform - pos: -4.5,-8.5 + pos: -17.5,17.5 parent: 1668 - - uid: 320 + - uid: 2759 components: - type: Transform - pos: -4.5,-6.5 + pos: -16.5,17.5 parent: 1668 - - uid: 321 + - uid: 2760 components: - type: Transform - pos: -6.5,-6.5 + pos: -16.5,16.5 parent: 1668 - - uid: 322 + - uid: 2761 components: - type: Transform - pos: -7.5,-6.5 + pos: -16.5,15.5 parent: 1668 - - uid: 323 + - uid: 2762 components: - type: Transform - pos: -8.5,-6.5 + pos: -16.5,14.5 parent: 1668 - - uid: 324 + - uid: 2763 components: - type: Transform - pos: -6.5,-8.5 + pos: -17.5,14.5 parent: 1668 - - uid: 325 + - uid: 2764 components: - type: Transform - pos: -7.5,-8.5 + pos: -15.5,14.5 parent: 1668 - - uid: 326 + - uid: 2765 components: - type: Transform - pos: -8.5,-8.5 + pos: -14.5,14.5 parent: 1668 - - uid: 328 + - uid: 2766 components: - type: Transform - pos: -7.5,-3.5 + pos: -14.5,13.5 parent: 1668 - - uid: 329 + - uid: 2767 components: - type: Transform - pos: -8.5,-3.5 + pos: -14.5,11.5 parent: 1668 - - uid: 330 + - uid: 2768 components: - type: Transform - pos: -9.5,-3.5 + pos: -14.5,10.5 parent: 1668 - - uid: 331 + - uid: 2769 components: - type: Transform - pos: -9.5,-4.5 + pos: -14.5,9.5 parent: 1668 - - uid: 332 + - uid: 2770 components: - type: Transform - pos: -9.5,-5.5 + pos: -10.5,9.5 parent: 1668 - - uid: 333 + - uid: 2771 components: - type: Transform - pos: -9.5,-6.5 + pos: -10.5,10.5 parent: 1668 - - uid: 334 + - uid: 2772 components: - type: Transform - pos: -9.5,-7.5 + pos: -10.5,11.5 parent: 1668 - - uid: 335 + - uid: 2773 components: - type: Transform - pos: -9.5,-8.5 + pos: -10.5,12.5 parent: 1668 - - uid: 346 + - uid: 2774 components: - type: Transform - pos: 19.5,6.5 + pos: -10.5,13.5 parent: 1668 - - uid: 350 + - uid: 2776 components: - type: Transform - pos: 23.5,6.5 + pos: -11.5,14.5 parent: 1668 - - uid: 351 + - uid: 2777 components: - type: Transform - pos: 24.5,6.5 + pos: -12.5,14.5 parent: 1668 - - uid: 352 + - uid: 2778 components: - type: Transform - pos: 28.5,6.5 + pos: -13.5,14.5 parent: 1668 - - uid: 353 + - uid: 2922 components: - type: Transform - pos: 29.5,6.5 + pos: -14.5,7.5 parent: 1668 - - uid: 357 + - uid: 2931 components: - type: Transform - pos: 33.5,6.5 + pos: -15.5,4.5 parent: 1668 - - uid: 358 + - uid: 2932 components: - type: Transform - pos: 34.5,6.5 + pos: -14.5,4.5 parent: 1668 - - uid: 359 + - uid: 2987 components: - type: Transform - pos: 35.5,6.5 + pos: 8.5,17.5 parent: 1668 - - uid: 362 + - uid: 2995 components: - type: Transform - pos: 18.5,9.5 + pos: 7.5,17.5 parent: 1668 - - uid: 363 + - uid: 2997 components: - type: Transform - pos: 19.5,9.5 + pos: 5.5,17.5 parent: 1668 - - uid: 364 + - uid: 2999 components: - type: Transform - pos: 20.5,9.5 + pos: 3.5,17.5 parent: 1668 - - uid: 365 + - uid: 3001 components: - type: Transform - pos: 21.5,9.5 + pos: 1.5,17.5 parent: 1668 - - uid: 366 + - uid: 3005 components: - type: Transform - pos: 22.5,9.5 + pos: -2.5,17.5 parent: 1668 - - uid: 367 + - uid: 3006 components: - type: Transform - pos: 23.5,9.5 + pos: -3.5,17.5 parent: 1668 - - uid: 368 + - uid: 3008 components: - type: Transform - pos: 24.5,9.5 + pos: -7.5,15.5 parent: 1668 - - uid: 369 + - uid: 3009 components: - type: Transform - pos: 25.5,9.5 + pos: -7.5,13.5 parent: 1668 - - uid: 370 + - uid: 3010 components: - type: Transform - pos: 26.5,9.5 + pos: -3.5,13.5 parent: 1668 - - uid: 371 + - uid: 3011 components: - type: Transform - pos: 27.5,9.5 + pos: -3.5,10.5 parent: 1668 - - uid: 372 + - uid: 3016 components: - type: Transform - pos: 28.5,9.5 + pos: -3.5,7.5 parent: 1668 - - uid: 373 + - uid: 3017 components: - type: Transform - pos: 29.5,9.5 + pos: -7.5,17.5 parent: 1668 - - uid: 374 + - uid: 3024 components: - type: Transform - pos: 30.5,9.5 + pos: -2.5,18.5 parent: 1668 - - uid: 375 + - uid: 3026 components: - type: Transform - pos: 31.5,9.5 + pos: -2.5,20.5 parent: 1668 - - uid: 376 + - uid: 3035 components: - type: Transform - pos: 32.5,9.5 + pos: -7.5,16.5 parent: 1668 - - uid: 377 + - uid: 3036 components: - type: Transform - pos: 33.5,9.5 + pos: -7.5,14.5 parent: 1668 - - uid: 378 + - uid: 3221 components: - type: Transform - pos: 34.5,9.5 + pos: -10.5,14.5 parent: 1668 - - uid: 379 + - uid: 3232 components: - type: Transform - pos: 35.5,9.5 + pos: -3.5,23.5 parent: 1668 - - uid: 380 + - uid: 3240 components: - type: Transform - pos: 35.5,8.5 + pos: 5.5,22.5 parent: 1668 - - uid: 381 + - uid: 3241 components: - type: Transform - pos: 35.5,7.5 + pos: 1.5,22.5 parent: 1668 - - uid: 382 + - uid: 3244 components: - type: Transform - pos: 34.5,8.5 + pos: 18.5,27.5 parent: 1668 - - uid: 383 + - uid: 3245 components: - type: Transform - pos: 34.5,7.5 + pos: -2.5,22.5 parent: 1668 - - uid: 384 + - uid: 3252 components: - type: Transform - pos: 28.5,8.5 + pos: 20.5,26.5 parent: 1668 - - uid: 385 + - uid: 3258 components: - type: Transform - pos: 24.5,8.5 + pos: -2.5,23.5 parent: 1668 - - uid: 386 + - uid: 3259 components: - type: Transform - pos: 35.5,-7.5 + pos: -2.5,24.5 parent: 1668 - - uid: 387 + - uid: 3260 components: - type: Transform - pos: 35.5,-8.5 + pos: -2.5,25.5 parent: 1668 - - uid: 388 + - uid: 3261 components: - type: Transform - pos: 35.5,-9.5 + pos: -2.5,26.5 parent: 1668 - - uid: 389 + - uid: 3262 components: - type: Transform - pos: 34.5,-9.5 + pos: -2.5,27.5 parent: 1668 - - uid: 390 + - uid: 3263 components: - type: Transform - pos: 34.5,-8.5 + pos: -2.5,28.5 parent: 1668 - - uid: 391 + - uid: 3265 components: - type: Transform - pos: 34.5,-7.5 + pos: -1.5,33.5 parent: 1668 - - uid: 392 + - uid: 3268 components: - type: Transform - pos: 33.5,-7.5 + pos: -7.5,23.5 parent: 1668 - - uid: 394 + - uid: 3274 components: - type: Transform - pos: 32.5,-7.5 + pos: -8.5,23.5 parent: 1668 - - uid: 395 + - uid: 3275 components: - type: Transform - pos: 30.5,-7.5 + pos: -8.5,24.5 parent: 1668 - - uid: 397 + - uid: 3276 components: - type: Transform - pos: 32.5,-9.5 + pos: -8.5,25.5 parent: 1668 - - uid: 398 + - uid: 3277 components: - type: Transform - pos: 23.5,-9.5 + pos: -8.5,26.5 parent: 1668 - - uid: 399 + - uid: 3278 components: - type: Transform - pos: 30.5,-9.5 + pos: -8.5,27.5 parent: 1668 - - uid: 400 + - uid: 3279 components: - type: Transform - pos: 28.5,-7.5 + pos: -8.5,28.5 parent: 1668 - - uid: 402 + - uid: 3280 components: - type: Transform - pos: 33.5,-9.5 + pos: -7.5,28.5 parent: 1668 - - uid: 403 + - uid: 3281 components: - type: Transform - pos: 29.5,-9.5 + pos: -6.5,28.5 parent: 1668 - - uid: 404 + - uid: 3282 components: - type: Transform - pos: 31.5,-9.5 + pos: -5.5,28.5 parent: 1668 - - uid: 405 + - uid: 3283 components: - type: Transform - pos: 29.5,-7.5 + pos: -4.5,28.5 parent: 1668 - - uid: 406 + - uid: 3284 components: - type: Transform - pos: 19.5,-7.5 + pos: -3.5,28.5 parent: 1668 - - uid: 407 + - uid: 3287 components: - type: Transform - pos: 20.5,-7.5 + pos: -14.5,27.5 parent: 1668 - - uid: 409 + - uid: 3288 components: - type: Transform - pos: 22.5,-7.5 + pos: -13.5,23.5 parent: 1668 - - uid: 410 + - uid: 3289 components: - type: Transform - pos: 23.5,-7.5 + pos: -14.5,26.5 parent: 1668 - - uid: 411 + - uid: 3290 components: - type: Transform - pos: 24.5,-7.5 + pos: -14.5,24.5 parent: 1668 - - uid: 412 + - uid: 3291 components: - type: Transform - pos: 22.5,-9.5 + pos: -14.5,23.5 parent: 1668 - - uid: 413 + - uid: 3292 components: - type: Transform - pos: 21.5,-9.5 + pos: -14.5,25.5 parent: 1668 - - uid: 414 + - uid: 3296 components: - type: Transform - pos: 20.5,-9.5 + pos: -9.5,23.5 parent: 1668 - - uid: 415 + - uid: 3299 components: - type: Transform - pos: 19.5,-9.5 + pos: -11.5,28.5 parent: 1668 - - uid: 416 + - uid: 3301 components: - type: Transform - pos: 23.5,-10.5 + pos: -13.5,28.5 parent: 1668 - - uid: 417 + - uid: 3302 components: - type: Transform - pos: 29.5,-10.5 + pos: -12.5,28.5 parent: 1668 - - uid: 418 + - uid: 3304 components: - type: Transform - pos: 29.5,-11.5 + pos: -14.5,28.5 parent: 1668 - - uid: 419 + - uid: 3347 components: - type: Transform - pos: 29.5,-12.5 + pos: -9.5,28.5 parent: 1668 - - uid: 420 + - uid: 3348 components: - type: Transform - pos: 28.5,-12.5 + pos: -10.5,28.5 parent: 1668 - - uid: 421 + - uid: 3367 components: - type: Transform - pos: 27.5,-12.5 + pos: -18.5,28.5 parent: 1668 - - uid: 422 + - uid: 3402 components: - type: Transform - pos: 26.5,-12.5 + pos: -14.5,5.5 parent: 1668 - - uid: 423 + - uid: 3405 components: - type: Transform - pos: 25.5,-12.5 + pos: -19.5,28.5 parent: 1668 - - uid: 424 + - uid: 3407 components: - type: Transform - pos: 24.5,-12.5 + pos: -15.5,28.5 parent: 1668 - - uid: 425 + - uid: 3421 components: - type: Transform - pos: 23.5,-12.5 + pos: -17.5,28.5 parent: 1668 - - uid: 426 + - uid: 3422 components: - type: Transform - pos: 22.5,-12.5 + pos: -16.5,28.5 parent: 1668 - - uid: 427 + - uid: 3434 components: - type: Transform - pos: 21.5,-12.5 + pos: -26.5,18.5 parent: 1668 - - uid: 428 + - uid: 3436 components: - type: Transform - pos: 20.5,-12.5 + pos: -29.5,28.5 parent: 1668 - - uid: 429 + - uid: 3437 components: - type: Transform - pos: 19.5,-12.5 + pos: -31.5,28.5 parent: 1668 - - uid: 430 + - uid: 3441 components: - type: Transform - pos: 18.5,-12.5 + pos: -32.5,18.5 parent: 1668 - - uid: 431 + - uid: 3442 components: - type: Transform - pos: 35.5,-1.5 + pos: -32.5,21.5 parent: 1668 - - uid: 432 + - uid: 3443 components: - type: Transform - pos: 35.5,-0.5 + pos: -32.5,22.5 parent: 1668 - - uid: 433 + - uid: 3444 components: - type: Transform - pos: 35.5,0.5 + pos: -32.5,19.5 parent: 1668 - - uid: 468 + - uid: 3445 components: - type: Transform - pos: 33.5,-1.5 + pos: -31.5,22.5 parent: 1668 - - uid: 470 + - uid: 3446 components: - type: Transform - pos: 33.5,0.5 + pos: -32.5,20.5 parent: 1668 - - uid: 658 + - uid: 3447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-2.5 + pos: -30.5,22.5 parent: 1668 - - uid: 659 + - uid: 3448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-2.5 + pos: -29.5,22.5 parent: 1668 - - uid: 660 + - uid: 3449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,1.5 + pos: -28.5,22.5 parent: 1668 - - uid: 661 + - uid: 3450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,2.5 + pos: -28.5,24.5 parent: 1668 - - uid: 662 + - uid: 3451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,2.5 + pos: -31.5,24.5 parent: 1668 - - uid: 663 + - uid: 3452 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,2.5 + pos: -32.5,24.5 parent: 1668 - - uid: 664 + - uid: 3453 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,1.5 + pos: -29.5,24.5 parent: 1668 - - uid: 665 + - uid: 3454 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,3.5 + pos: -32.5,25.5 parent: 1668 - - uid: 666 + - uid: 3455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,4.5 + pos: -32.5,26.5 parent: 1668 - - uid: 667 + - uid: 3456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,5.5 + pos: -32.5,27.5 parent: 1668 - - uid: 668 + - uid: 3457 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,5.5 + pos: -32.5,28.5 parent: 1668 - - uid: 669 + - uid: 3458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,5.5 + pos: -30.5,24.5 parent: 1668 - - uid: 686 + - uid: 3461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,5.5 + pos: -31.5,18.5 parent: 1668 - - uid: 687 + - uid: 3462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,5.5 + pos: -26.5,28.5 parent: 1668 - - uid: 689 + - uid: 3465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,6.5 + pos: -30.5,18.5 parent: 1668 - - uid: 690 + - uid: 3467 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,7.5 + pos: -28.5,28.5 parent: 1668 - - uid: 691 + - uid: 3468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,7.5 + pos: -29.5,18.5 parent: 1668 - - uid: 692 + - uid: 3469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,7.5 + pos: -19.5,18.5 parent: 1668 - - uid: 693 + - uid: 3470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,6.5 + pos: -30.5,28.5 parent: 1668 - - uid: 694 + - uid: 3471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,7.5 + pos: -28.5,18.5 parent: 1668 - - uid: 695 + - uid: 3619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,7.5 + pos: -3.5,33.5 parent: 1668 - - uid: 696 + - uid: 3622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,7.5 + pos: -3.5,29.5 parent: 1668 - - uid: 697 + - uid: 3623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,5.5 + pos: -1.5,36.5 parent: 1668 - - uid: 698 + - uid: 3624 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,7.5 + pos: -1.5,34.5 parent: 1668 - - uid: 724 + - uid: 3625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-9.5 + pos: -1.5,35.5 parent: 1668 - - uid: 726 + - uid: 3641 components: - type: Transform - pos: 14.5,-12.5 + pos: 3.5,36.5 parent: 1668 - - uid: 727 + - uid: 3727 components: - type: Transform - pos: 15.5,-12.5 + rot: 3.141592653589793 rad + pos: 5.5,23.5 parent: 1668 - - uid: 728 + - uid: 3730 components: - type: Transform - pos: 16.5,-12.5 + pos: 6.5,23.5 parent: 1668 - - uid: 745 + - uid: 4054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-14.5 + pos: 0.5,-28.5 parent: 1668 - - uid: 746 + - uid: 4055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-14.5 + pos: 1.5,-28.5 parent: 1668 - - uid: 747 + - uid: 4056 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-14.5 + pos: 2.5,-28.5 parent: 1668 - - uid: 748 + - uid: 4057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-14.5 + pos: 3.5,-28.5 parent: 1668 - - uid: 749 + - uid: 4059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-14.5 + pos: 5.5,-28.5 parent: 1668 - - uid: 750 + - uid: 4060 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-14.5 + pos: 6.5,-28.5 parent: 1668 - - uid: 751 + - uid: 4061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-15.5 + pos: 7.5,-28.5 parent: 1668 - - uid: 752 + - uid: 4062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-13.5 + pos: 8.5,-28.5 parent: 1668 - - uid: 753 + - uid: 4063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-12.5 + pos: 9.5,-28.5 parent: 1668 - - uid: 754 + - uid: 4064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-10.5 + pos: 10.5,-28.5 parent: 1668 - - uid: 755 + - uid: 4068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-9.5 + pos: 15.5,-28.5 parent: 1668 - - uid: 756 + - uid: 4069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-10.5 + pos: 16.5,-28.5 parent: 1668 - - uid: 757 + - uid: 4070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-12.5 + pos: 17.5,-28.5 parent: 1668 - - uid: 806 + - uid: 4071 components: - type: Transform - pos: 35.5,-29.5 + pos: 11.5,-28.5 parent: 1668 - - uid: 826 + - uid: 4072 components: - type: Transform - pos: -13.5,11.5 + pos: -1.5,-28.5 parent: 1668 - - uid: 827 + - uid: 4073 components: - type: Transform - pos: -13.5,12.5 + pos: -2.5,-28.5 parent: 1668 - - uid: 832 + - uid: 4074 components: - type: Transform - pos: 11.5,-15.5 + pos: -3.5,-28.5 parent: 1668 - - uid: 835 + - uid: 4075 components: - type: Transform - pos: 8.5,-15.5 + pos: -4.5,-28.5 parent: 1668 - - uid: 837 + - uid: 4077 components: - type: Transform - pos: 14.5,-15.5 + pos: -6.5,-28.5 parent: 1668 - - uid: 838 + - uid: 4078 components: - type: Transform - pos: 14.5,-14.5 + pos: -8.5,-28.5 parent: 1668 - - uid: 839 + - uid: 4079 components: - type: Transform - pos: 14.5,-13.5 + pos: -7.5,-28.5 parent: 1668 - - uid: 840 + - uid: 4141 components: - type: Transform - pos: 8.5,-17.5 + pos: 5.5,-32.5 parent: 1668 - - uid: 841 + - uid: 4143 components: - type: Transform - pos: 11.5,-17.5 + pos: 3.5,-32.5 parent: 1668 - - uid: 842 + - uid: 4144 components: - type: Transform - pos: 13.5,-17.5 + pos: 2.5,-32.5 parent: 1668 - - uid: 843 + - uid: 4145 components: - type: Transform - pos: 14.5,-17.5 + pos: 1.5,-32.5 parent: 1668 - - uid: 844 + - uid: 4146 components: - type: Transform - pos: 14.5,-16.5 + pos: 0.5,-32.5 parent: 1668 - - uid: 851 + - uid: 4147 components: - type: Transform - pos: -13.5,10.5 + pos: -1.5,-32.5 parent: 1668 - - uid: 1080 + - uid: 4148 components: - type: Transform - pos: -13.5,9.5 + pos: -2.5,-32.5 parent: 1668 - - uid: 1081 + - uid: 4149 components: - type: Transform - pos: -13.5,8.5 + pos: -3.5,-32.5 parent: 1668 - - uid: 1082 + - uid: 4150 components: - type: Transform - pos: -13.5,7.5 + pos: -4.5,-32.5 parent: 1668 - - uid: 1083 + - uid: 4152 components: - type: Transform - pos: -12.5,7.5 + pos: -6.5,-32.5 parent: 1668 - - uid: 1084 + - uid: 4154 components: - type: Transform - pos: -11.5,7.5 + pos: -5.5,-32.5 parent: 1668 - - uid: 1085 + - uid: 4155 components: - type: Transform - pos: -10.5,7.5 + pos: 4.5,-32.5 parent: 1668 - - uid: 1132 + - uid: 4156 components: - type: Transform - pos: 15.5,-16.5 + pos: -8.5,-11.5 parent: 1668 - - uid: 1133 + - uid: 4157 components: - type: Transform - pos: 16.5,-16.5 + pos: -7.5,-11.5 parent: 1668 - - uid: 1134 + - uid: 4159 components: - type: Transform - pos: 17.5,-16.5 + pos: -3.5,-11.5 parent: 1668 - - uid: 1135 + - uid: 4160 components: - type: Transform - pos: 18.5,-16.5 + pos: -4.5,-11.5 parent: 1668 - - uid: 1136 + - uid: 4161 components: - type: Transform - pos: 18.5,-15.5 + pos: -5.5,-11.5 parent: 1668 - - uid: 1138 + - uid: 4162 components: - type: Transform - pos: 18.5,-13.5 + pos: -6.5,-11.5 parent: 1668 - - uid: 1139 + - uid: 4163 components: - type: Transform - pos: 29.5,-14.5 + pos: -3.5,-15.5 parent: 1668 - - uid: 1141 + - uid: 4164 components: - type: Transform - pos: 35.5,-13.5 + pos: -3.5,-16.5 parent: 1668 - - uid: 1142 + - uid: 4166 components: - type: Transform - pos: 35.5,-14.5 + pos: -3.5,-18.5 parent: 1668 - - uid: 1143 + - uid: 4167 components: - type: Transform - pos: 35.5,-15.5 + pos: -3.5,-19.5 parent: 1668 - - uid: 1144 + - uid: 4171 components: - type: Transform - pos: 35.5,-16.5 + pos: -3.5,-23.5 parent: 1668 - - uid: 1145 + - uid: 4172 components: - type: Transform - pos: 35.5,-17.5 + pos: -3.5,-24.5 parent: 1668 - - uid: 1152 + - uid: 4221 components: - type: Transform - pos: 35.5,-11.5 + rot: 1.5707963267948966 rad + pos: 9.5,-46.5 parent: 1668 - - uid: 1183 + - uid: 4223 components: - type: Transform - pos: 35.5,-12.5 + rot: 1.5707963267948966 rad + pos: 8.5,-46.5 parent: 1668 - - uid: 1184 + - uid: 4224 components: - type: Transform - pos: 35.5,-10.5 + rot: 1.5707963267948966 rad + pos: 13.5,-37.5 parent: 1668 - - uid: 1322 + - uid: 4226 components: - type: Transform - pos: -2.5,5.5 + rot: 1.5707963267948966 rad + pos: 15.5,-37.5 parent: 1668 - - uid: 1392 + - uid: 4227 components: - type: Transform - pos: 35.5,-30.5 + rot: 1.5707963267948966 rad + pos: 15.5,-38.5 parent: 1668 - - uid: 1394 + - uid: 4229 components: - type: Transform - pos: 35.5,-31.5 + rot: 1.5707963267948966 rad + pos: -16.5,-44.5 parent: 1668 - - uid: 1395 + - uid: 4230 components: - type: Transform - pos: 35.5,-32.5 + rot: 1.5707963267948966 rad + pos: -8.5,-37.5 parent: 1668 - - uid: 1408 + - uid: 4234 components: - type: Transform - pos: -4.5,17.5 + rot: 1.5707963267948966 rad + pos: -16.5,-38.5 parent: 1668 - - uid: 1409 + - uid: 4237 components: - type: Transform - pos: -2.5,17.5 + rot: 1.5707963267948966 rad + pos: -15.5,-37.5 parent: 1668 - - uid: 1410 + - uid: 4238 components: - type: Transform - pos: 1.5,17.5 + rot: 1.5707963267948966 rad + pos: -13.5,-37.5 parent: 1668 - - uid: 1411 + - uid: 4239 components: - type: Transform - pos: 3.5,17.5 + rot: 1.5707963267948966 rad + pos: -12.5,-37.5 parent: 1668 - - uid: 1412 + - uid: 4280 components: - type: Transform - pos: 3.5,15.5 + rot: 1.5707963267948966 rad + pos: -8.5,-45.5 parent: 1668 - - uid: 1413 + - uid: 4299 components: - type: Transform - pos: -4.5,16.5 + rot: 1.5707963267948966 rad + pos: 7.5,-37.5 parent: 1668 - - uid: 1414 + - uid: 4301 components: - type: Transform - pos: -4.5,14.5 + rot: 1.5707963267948966 rad + pos: 8.5,-37.5 parent: 1668 - - uid: 1415 + - uid: 4302 components: - type: Transform - pos: -4.5,13.5 + rot: 1.5707963267948966 rad + pos: 9.5,-37.5 parent: 1668 - - uid: 1416 + - uid: 4303 components: - type: Transform - pos: -4.5,12.5 + rot: 1.5707963267948966 rad + pos: 10.5,-37.5 parent: 1668 - - uid: 1490 + - uid: 4318 components: - type: Transform - pos: -5.5,13.5 + pos: 14.5,-28.5 parent: 1668 - - uid: 1491 + - uid: 4328 components: - type: Transform - pos: -7.5,13.5 + rot: 1.5707963267948966 rad + pos: 7.5,-45.5 parent: 1668 - - uid: 1492 + - uid: 4329 components: - type: Transform - pos: -9.5,13.5 + rot: 1.5707963267948966 rad + pos: 14.5,-37.5 parent: 1668 - - uid: 1493 + - uid: 4330 components: - type: Transform - pos: -8.5,13.5 + rot: 1.5707963267948966 rad + pos: 15.5,-43.5 parent: 1668 - - uid: 1494 + - uid: 4331 components: - type: Transform - pos: -8.5,14.5 + rot: 1.5707963267948966 rad + pos: 15.5,-44.5 parent: 1668 - - uid: 1495 + - uid: 4334 components: - type: Transform - pos: -11.5,13.5 + rot: 1.5707963267948966 rad + pos: -16.5,-37.5 parent: 1668 - - uid: 1496 + - uid: 4337 components: - type: Transform - pos: -12.5,13.5 + rot: 1.5707963267948966 rad + pos: -16.5,-43.5 parent: 1668 - - uid: 1497 + - uid: 4341 components: - type: Transform - pos: -13.5,13.5 + rot: 1.5707963267948966 rad + pos: -14.5,-37.5 parent: 1668 - - uid: 1498 + - uid: 4342 components: - type: Transform - pos: -14.5,13.5 + rot: 1.5707963267948966 rad + pos: 12.5,-37.5 parent: 1668 - - uid: 1499 + - uid: 4350 components: - type: Transform - pos: -15.5,13.5 + rot: 1.5707963267948966 rad + pos: 7.5,-44.5 parent: 1668 - - uid: 1500 + - uid: 4351 components: - type: Transform - pos: -16.5,13.5 + rot: 1.5707963267948966 rad + pos: -14.5,-44.5 parent: 1668 - - uid: 1501 + - uid: 4353 components: - type: Transform - pos: -16.5,14.5 + rot: 1.5707963267948966 rad + pos: -14.5,-45.5 parent: 1668 - - uid: 1502 + - uid: 4354 components: - type: Transform - pos: -16.5,15.5 + rot: 1.5707963267948966 rad + pos: -14.5,-46.5 parent: 1668 - - uid: 1503 + - uid: 4357 components: - type: Transform - pos: -16.5,16.5 + rot: 1.5707963267948966 rad + pos: -13.5,-46.5 parent: 1668 - - uid: 1504 + - uid: 4360 components: - type: Transform - pos: -14.5,18.5 + pos: 7.5,-50.5 parent: 1668 - - uid: 1505 + - uid: 4362 components: - type: Transform - pos: -8.5,16.5 + pos: 5.5,-50.5 parent: 1668 - - uid: 1506 + - uid: 4363 components: - type: Transform - pos: -8.5,17.5 + pos: -0.5,-50.5 parent: 1668 - - uid: 1507 + - uid: 4364 components: - type: Transform - pos: -8.5,18.5 + pos: 2.5,-50.5 parent: 1668 - - uid: 1508 + - uid: 4365 components: - type: Transform - pos: -7.5,18.5 + pos: -6.5,-50.5 parent: 1668 - - uid: 1509 + - uid: 4368 components: - type: Transform - pos: -4.5,18.5 + pos: -8.5,-50.5 parent: 1668 - - uid: 1510 + - uid: 4369 components: - type: Transform - pos: -5.5,18.5 + pos: 7.5,-49.5 parent: 1668 - - uid: 1511 + - uid: 4370 components: - type: Transform - pos: -9.5,18.5 + pos: 6.5,-50.5 parent: 1668 - - uid: 1512 + - uid: 4371 components: - type: Transform - pos: -11.5,18.5 + pos: -7.5,-50.5 parent: 1668 - - uid: 1523 + - uid: 4372 components: - type: Transform - pos: -2.5,18.5 + pos: -8.5,-49.5 parent: 1668 - - uid: 1524 + - uid: 4374 components: - type: Transform - pos: -2.5,19.5 + pos: -3.5,-50.5 parent: 1668 - - uid: 1525 + - uid: 4379 components: - type: Transform - pos: -3.5,19.5 + rot: 1.5707963267948966 rad + pos: 10.5,-46.5 parent: 1668 - - uid: 1526 + - uid: 4381 components: - type: Transform - pos: -4.5,19.5 + rot: 1.5707963267948966 rad + pos: -15.5,-44.5 parent: 1668 - - uid: 1527 + - uid: 4382 components: - type: Transform - pos: 1.5,18.5 + rot: 1.5707963267948966 rad + pos: 13.5,-46.5 parent: 1668 - - uid: 1528 + - uid: 4383 components: - type: Transform - pos: 1.5,19.5 + rot: 1.5707963267948966 rad + pos: 12.5,-46.5 parent: 1668 - - uid: 1529 + - uid: 4384 components: - type: Transform - pos: 2.5,19.5 + rot: 1.5707963267948966 rad + pos: 11.5,-46.5 parent: 1668 - - uid: 1530 + - uid: 4387 components: - type: Transform - pos: 3.5,19.5 + rot: 1.5707963267948966 rad + pos: 14.5,-44.5 parent: 1668 - - uid: 1531 + - uid: 4388 components: - type: Transform - pos: 3.5,18.5 + rot: 1.5707963267948966 rad + pos: -8.5,-44.5 parent: 1668 - - uid: 1532 + - uid: 4390 components: - type: Transform - pos: 0.5,17.5 + rot: 1.5707963267948966 rad + pos: -8.5,-46.5 parent: 1668 - - uid: 1535 + - uid: 4393 components: - type: Transform - pos: -1.5,17.5 + rot: 1.5707963267948966 rad + pos: -11.5,-46.5 parent: 1668 - - uid: 1536 + - uid: 4395 components: - type: Transform - pos: 3.5,21.5 + rot: 1.5707963267948966 rad + pos: 13.5,-44.5 parent: 1668 - - uid: 1537 + - uid: 4396 components: - type: Transform - pos: 3.5,20.5 + rot: 1.5707963267948966 rad + pos: -10.5,-46.5 parent: 1668 - - uid: 1538 + - uid: 4397 components: - type: Transform - pos: -14.5,19.5 + rot: 1.5707963267948966 rad + pos: 7.5,-46.5 parent: 1668 - - uid: 1553 + - uid: 4399 components: - type: Transform - pos: -4.5,20.5 + rot: 1.5707963267948966 rad + pos: 13.5,-45.5 parent: 1668 - - uid: 1554 + - uid: 4452 components: - type: Transform - pos: -4.5,22.5 + pos: -8.5,-47.5 parent: 1668 - - uid: 1555 + - uid: 4453 components: - type: Transform - pos: -4.5,23.5 + pos: 7.5,-47.5 parent: 1668 - - uid: 1556 + - uid: 4454 components: - type: Transform - pos: -4.5,24.5 + pos: 8.5,-49.5 parent: 1668 - - uid: 1557 + - uid: 4458 components: - type: Transform - pos: -4.5,25.5 + pos: 12.5,-49.5 parent: 1668 - - uid: 1558 + - uid: 4459 components: - type: Transform - pos: -4.5,26.5 + pos: 13.5,-49.5 parent: 1668 - - uid: 1559 + - uid: 4460 components: - type: Transform - pos: -4.5,27.5 + pos: 14.5,-49.5 parent: 1668 - - uid: 1560 + - uid: 4461 components: - type: Transform - pos: -4.5,28.5 + pos: 15.5,-49.5 parent: 1668 - - uid: 1561 + - uid: 4462 components: - type: Transform - pos: -4.5,29.5 + pos: 16.5,-49.5 parent: 1668 - - uid: 1562 + - uid: 4463 components: - type: Transform - pos: -4.5,30.5 + pos: 17.5,-49.5 parent: 1668 - - uid: 1563 + - uid: 4464 components: - type: Transform - pos: -4.5,31.5 + pos: 18.5,-49.5 parent: 1668 - - uid: 1564 + - uid: 4465 components: - type: Transform - pos: -4.5,32.5 + pos: 16.5,-47.5 parent: 1668 - - uid: 1565 + - uid: 4466 components: - type: Transform - pos: -5.5,32.5 + pos: 17.5,-47.5 parent: 1668 - - uid: 1567 + - uid: 4467 components: - type: Transform - pos: -11.5,32.5 + pos: 18.5,-47.5 parent: 1668 - - uid: 1568 + - uid: 4469 components: - type: Transform - pos: -11.5,34.5 + pos: 18.5,-44.5 parent: 1668 - - uid: 1569 + - uid: 4470 components: - type: Transform - pos: -7.5,33.5 + pos: 18.5,-43.5 parent: 1668 - - uid: 1570 + - uid: 4471 components: - type: Transform - pos: -7.5,32.5 + pos: 18.5,-42.5 parent: 1668 - - uid: 1571 + - uid: 4474 components: - type: Transform - pos: -11.5,33.5 + pos: 18.5,-39.5 parent: 1668 - - uid: 1573 + - uid: 4475 components: - type: Transform - pos: -13.5,32.5 + pos: 18.5,-38.5 parent: 1668 - - uid: 1574 + - uid: 4476 components: - type: Transform - pos: -14.5,32.5 + pos: 18.5,-37.5 parent: 1668 - - uid: 1575 + - uid: 4479 components: - type: Transform - pos: -14.5,31.5 + pos: 18.5,-34.5 parent: 1668 - - uid: 1664 + - uid: 4481 components: - type: Transform - pos: -7.5,34.5 + pos: 17.5,-34.5 parent: 1668 - - uid: 1665 + - uid: 4482 components: - type: Transform - pos: -8.5,34.5 + pos: -20.5,-49.5 parent: 1668 - - uid: 1666 + - uid: 4483 components: - type: Transform - pos: -10.5,34.5 + pos: 15.5,-34.5 parent: 1668 - - uid: 1794 + - uid: 4484 components: - type: Transform - pos: 3.5,22.5 + pos: 14.5,-34.5 parent: 1668 - - uid: 1795 + - uid: 4485 components: - type: Transform - pos: 2.5,22.5 + pos: 14.5,-33.5 parent: 1668 - - uid: 1796 + - uid: 4486 components: - type: Transform - pos: 1.5,22.5 + pos: 14.5,-32.5 parent: 1668 - - uid: 1797 + - uid: 4487 components: - type: Transform - pos: 0.5,22.5 + pos: 14.5,-31.5 parent: 1668 - - uid: 1798 + - uid: 4488 components: - type: Transform - pos: 0.5,23.5 + pos: 14.5,-29.5 parent: 1668 - - uid: 1799 + - uid: 4489 components: - type: Transform - pos: -1.5,22.5 + pos: 14.5,-30.5 parent: 1668 - - uid: 1800 + - uid: 4490 components: - type: Transform - pos: -2.5,22.5 + pos: 18.5,-33.5 parent: 1668 - - uid: 1801 + - uid: 4491 components: - type: Transform - pos: -3.5,22.5 + pos: 18.5,-32.5 parent: 1668 - - uid: 1994 + - uid: 4492 components: - type: Transform - pos: 4.5,15.5 + pos: 18.5,-31.5 parent: 1668 - - uid: 1995 + - uid: 4493 components: - type: Transform - pos: 5.5,15.5 + pos: 18.5,-30.5 parent: 1668 - - uid: 1996 + - uid: 4494 components: - type: Transform - pos: 5.5,16.5 + pos: 18.5,-29.5 parent: 1668 - - uid: 1997 + - uid: 4495 components: - type: Transform - pos: 5.5,17.5 + pos: -9.5,-49.5 parent: 1668 - - uid: 1998 + - uid: 4499 components: - type: Transform - pos: 4.5,17.5 + pos: -13.5,-49.5 parent: 1668 - - uid: 2005 + - uid: 4500 components: - type: Transform - pos: 0.5,24.5 + pos: -14.5,-49.5 parent: 1668 - - uid: 2006 + - uid: 4501 components: - type: Transform - pos: 0.5,25.5 + pos: -15.5,-49.5 parent: 1668 - - uid: 2007 + - uid: 4502 components: - type: Transform - pos: -0.5,25.5 + pos: -16.5,-49.5 parent: 1668 - - uid: 2008 + - uid: 4503 components: - type: Transform - pos: -1.5,25.5 + pos: -17.5,-49.5 parent: 1668 - - uid: 2009 + - uid: 4504 components: - type: Transform - pos: -3.5,25.5 + pos: -18.5,-49.5 parent: 1668 - - uid: 2238 + - uid: 4505 components: - type: Transform - pos: 17.5,9.5 + pos: -19.5,-49.5 parent: 1668 - - uid: 2239 + - uid: 4506 components: - type: Transform - pos: 16.5,9.5 + pos: -17.5,-47.5 parent: 1668 - - uid: 2245 + - uid: 4507 components: - type: Transform - pos: 15.5,15.5 + pos: -18.5,-47.5 parent: 1668 - - uid: 2251 + - uid: 4508 components: - type: Transform - pos: 15.5,16.5 + pos: -19.5,-47.5 parent: 1668 - - uid: 2252 + - uid: 4511 components: - type: Transform - pos: 15.5,17.5 + pos: -19.5,-44.5 parent: 1668 - - uid: 2253 + - uid: 4512 components: - type: Transform - pos: 16.5,17.5 + pos: -19.5,-43.5 parent: 1668 - - uid: 2254 + - uid: 4513 components: - type: Transform - pos: 17.5,17.5 + pos: -19.5,-42.5 parent: 1668 - - uid: 2255 + - uid: 4516 components: - type: Transform - pos: 18.5,17.5 + pos: -19.5,-39.5 parent: 1668 - - uid: 2256 + - uid: 4517 components: - type: Transform - pos: 20.5,17.5 + pos: -19.5,-38.5 parent: 1668 - - uid: 2257 + - uid: 4518 components: - type: Transform - pos: 21.5,10.5 + pos: -19.5,-37.5 parent: 1668 - - uid: 2258 + - uid: 4521 components: - type: Transform - pos: 21.5,13.5 + pos: -19.5,-34.5 parent: 1668 - - uid: 2259 + - uid: 4522 components: - type: Transform - pos: 21.5,14.5 + pos: -18.5,-34.5 parent: 1668 - - uid: 2260 + - uid: 4523 components: - type: Transform - pos: 21.5,15.5 + pos: -21.5,-49.5 parent: 1668 - - uid: 2261 + - uid: 4524 components: - type: Transform - pos: 21.5,16.5 + pos: -16.5,-34.5 parent: 1668 - - uid: 2262 + - uid: 4525 components: - type: Transform - pos: 21.5,17.5 + pos: -15.5,-34.5 parent: 1668 - - uid: 2263 + - uid: 4526 components: - type: Transform - pos: 35.5,10.5 + pos: -15.5,-33.5 parent: 1668 - - uid: 2264 + - uid: 4527 components: - type: Transform - pos: 35.5,11.5 + pos: -15.5,-32.5 parent: 1668 - - uid: 2265 + - uid: 4528 components: - type: Transform - pos: 35.5,12.5 + pos: -15.5,-31.5 parent: 1668 - - uid: 2266 + - uid: 4529 components: - type: Transform - pos: 35.5,13.5 + pos: -15.5,-30.5 parent: 1668 - - uid: 2267 + - uid: 4530 components: - type: Transform - pos: 35.5,14.5 + pos: -15.5,-29.5 parent: 1668 - - uid: 2268 + - uid: 4531 components: - type: Transform - pos: 35.5,15.5 + pos: -15.5,-28.5 parent: 1668 - - uid: 2274 + - uid: 4532 components: - type: Transform - pos: 24.5,14.5 + pos: -16.5,-28.5 parent: 1668 - - uid: 2275 + - uid: 4533 components: - type: Transform - pos: 32.5,14.5 + pos: -17.5,-28.5 parent: 1668 - - uid: 2292 + - uid: 4534 components: - type: Transform - pos: 35.5,16.5 + pos: -18.5,-28.5 parent: 1668 - - uid: 2293 + - uid: 4535 components: - type: Transform - pos: 35.5,17.5 + pos: -19.5,-28.5 parent: 1668 - - uid: 2294 + - uid: 4536 components: - type: Transform - pos: 35.5,18.5 + pos: -19.5,-29.5 parent: 1668 - - uid: 2295 + - uid: 4537 components: - type: Transform - pos: 35.5,19.5 + pos: -19.5,-32.5 parent: 1668 - - uid: 2296 + - uid: 4538 components: - type: Transform - pos: 35.5,20.5 + pos: -19.5,-30.5 parent: 1668 - - uid: 2297 + - uid: 4539 components: - type: Transform - pos: 35.5,21.5 + pos: -19.5,-31.5 parent: 1668 - - uid: 2298 + - uid: 4540 components: - type: Transform - pos: 35.5,22.5 + pos: -19.5,-33.5 parent: 1668 - - uid: 2301 + - uid: 4541 components: - type: Transform - pos: 17.5,18.5 + pos: -22.5,-49.5 parent: 1668 - - uid: 2302 + - uid: 4542 components: - type: Transform - pos: 17.5,19.5 + pos: -20.5,-47.5 parent: 1668 - - uid: 2303 + - uid: 4543 components: - type: Transform - pos: 17.5,20.5 + pos: -21.5,-47.5 parent: 1668 - - uid: 2304 + - uid: 4544 components: - type: Transform - pos: 17.5,21.5 + pos: -22.5,-47.5 parent: 1668 - - uid: 2305 + - uid: 4545 components: - type: Transform - pos: 17.5,22.5 + pos: -21.5,-46.5 parent: 1668 - - uid: 2306 + - uid: 4546 components: - type: Transform - pos: 17.5,23.5 + pos: -21.5,-45.5 parent: 1668 - - uid: 2307 + - uid: 4547 components: - type: Transform - pos: 17.5,24.5 + pos: -21.5,-44.5 parent: 1668 - - uid: 2308 + - uid: 4548 components: - type: Transform - pos: 18.5,24.5 + pos: -21.5,-43.5 parent: 1668 - - uid: 2309 + - uid: 4549 components: - type: Transform - pos: 19.5,24.5 + pos: -21.5,-42.5 parent: 1668 - - uid: 2310 + - uid: 4550 components: - type: Transform - pos: 20.5,24.5 + pos: -21.5,-41.5 parent: 1668 - - uid: 2311 + - uid: 4551 components: - type: Transform - pos: 21.5,24.5 + pos: -21.5,-40.5 parent: 1668 - - uid: 2312 + - uid: 4552 components: - type: Transform - pos: 21.5,23.5 + pos: -21.5,-39.5 parent: 1668 - - uid: 2313 + - uid: 4553 components: - type: Transform - pos: 21.5,19.5 + pos: -21.5,-38.5 parent: 1668 - - uid: 2314 + - uid: 4554 components: - type: Transform - pos: 21.5,20.5 + pos: -21.5,-36.5 parent: 1668 - - uid: 2315 + - uid: 4555 components: - type: Transform - pos: 21.5,21.5 + pos: -21.5,-35.5 parent: 1668 - - uid: 2318 + - uid: 4556 components: - type: Transform - pos: 35.5,23.5 + pos: -21.5,-34.5 parent: 1668 - - uid: 2319 + - uid: 4557 components: - type: Transform - pos: 35.5,24.5 + pos: -21.5,-37.5 parent: 1668 - - uid: 2320 + - uid: 4558 components: - type: Transform - pos: 34.5,24.5 + pos: -20.5,-34.5 parent: 1668 - - uid: 2321 + - uid: 4559 components: - type: Transform - pos: 33.5,24.5 + pos: 19.5,-49.5 parent: 1668 - - uid: 2322 + - uid: 4560 components: - type: Transform - pos: 32.5,24.5 + pos: 20.5,-49.5 parent: 1668 - - uid: 2323 + - uid: 4561 components: - type: Transform - pos: 31.5,24.5 + pos: 21.5,-49.5 parent: 1668 - - uid: 2324 + - uid: 4562 components: - type: Transform - pos: 30.5,24.5 + pos: 21.5,-47.5 parent: 1668 - - uid: 2325 + - uid: 4563 components: - type: Transform - pos: 29.5,24.5 + pos: 20.5,-47.5 parent: 1668 - - uid: 2326 + - uid: 4564 components: - type: Transform - pos: 28.5,24.5 + pos: 19.5,-47.5 parent: 1668 - - uid: 2327 + - uid: 4565 components: - type: Transform - pos: 27.5,24.5 + pos: 20.5,-46.5 parent: 1668 - - uid: 2328 + - uid: 4566 components: - type: Transform - pos: 26.5,24.5 + pos: 20.5,-45.5 parent: 1668 - - uid: 2329 + - uid: 4567 components: - type: Transform - pos: 25.5,24.5 + pos: 20.5,-44.5 parent: 1668 - - uid: 2330 + - uid: 4568 components: - type: Transform - pos: 24.5,24.5 + pos: 20.5,-43.5 parent: 1668 - - uid: 2331 + - uid: 4569 components: - type: Transform - pos: 23.5,24.5 + pos: 20.5,-42.5 parent: 1668 - - uid: 2332 + - uid: 4570 components: - type: Transform - pos: 22.5,24.5 + pos: 20.5,-41.5 parent: 1668 - - uid: 2333 + - uid: 4571 components: - type: Transform - pos: 22.5,20.5 + pos: 20.5,-40.5 parent: 1668 - - uid: 2334 + - uid: 4572 components: - type: Transform - pos: 24.5,20.5 + pos: 20.5,-39.5 parent: 1668 - - uid: 2335 + - uid: 4573 components: - type: Transform - pos: 34.5,20.5 + pos: 20.5,-38.5 parent: 1668 - - uid: 2336 + - uid: 4574 components: - type: Transform - pos: 32.5,20.5 + pos: 20.5,-37.5 parent: 1668 - - uid: 2350 + - uid: 4575 components: - type: Transform - pos: 35.5,-28.5 + pos: 20.5,-36.5 parent: 1668 - - uid: 2501 + - uid: 4576 components: - type: Transform - pos: 13.5,16.5 + pos: 20.5,-35.5 parent: 1668 - - uid: 2502 + - uid: 4577 components: - type: Transform - pos: 13.5,17.5 + pos: 20.5,-34.5 parent: 1668 - - uid: 2503 + - uid: 4578 components: - type: Transform - pos: 13.5,18.5 + pos: 19.5,-34.5 parent: 1668 - - uid: 2504 + - uid: 4787 components: - type: Transform - pos: 13.5,19.5 + pos: -27.5,-24.5 parent: 1668 - - uid: 2508 + - uid: 4800 components: - type: Transform - pos: 10.5,19.5 + pos: -23.5,-28.5 parent: 1668 - - uid: 2514 + - uid: 5512 components: - type: Transform - pos: 7.5,16.5 + pos: -27.5,-33.5 parent: 1668 - - uid: 2515 + - uid: 5513 components: - type: Transform - pos: 6.5,16.5 + pos: -27.5,-28.5 parent: 1668 - - uid: 2516 + - uid: 5515 components: - type: Transform - pos: 10.5,20.5 + pos: -23.5,-33.5 parent: 1668 - - uid: 2517 + - uid: 5516 components: - type: Transform - pos: 13.5,20.5 + pos: -27.5,-29.5 parent: 1668 - - uid: 2518 + - uid: 5519 components: - type: Transform - pos: 14.5,20.5 + pos: -7.5,-24.5 parent: 1668 - - uid: 2519 + - uid: 5521 components: - type: Transform - pos: 15.5,20.5 + pos: -26.5,-34.5 parent: 1668 - - uid: 2520 + - uid: 5524 components: - type: Transform - pos: 16.5,20.5 + pos: -23.5,-34.5 parent: 1668 - - uid: 2547 + - uid: 5526 components: - type: Transform - pos: 7.5,20.5 + pos: -25.5,-34.5 parent: 1668 - - uid: 2548 + - uid: 5527 components: - type: Transform - pos: 6.5,20.5 + pos: -22.5,-34.5 parent: 1668 - - uid: 2549 + - uid: 5528 components: - type: Transform - pos: 5.5,20.5 + pos: -24.5,-34.5 parent: 1668 - - uid: 2550 + - uid: 5529 components: - type: Transform - pos: 4.5,20.5 + pos: -27.5,-34.5 parent: 1668 - - uid: 2551 + - uid: 5530 components: - type: Transform - pos: 7.5,17.5 + pos: -19.5,-24.5 parent: 1668 - - uid: 2552 + - uid: 5534 components: - type: Transform - pos: 7.5,18.5 + pos: -19.5,-23.5 parent: 1668 - - uid: 2559 + - uid: 5535 components: - type: Transform - pos: 16.5,23.5 + pos: -23.5,-29.5 parent: 1668 - - uid: 2560 + - uid: 5540 components: - type: Transform - pos: 15.5,23.5 + pos: -7.5,-23.5 parent: 1668 - - uid: 2561 + - uid: 5543 components: - type: Transform - pos: 14.5,23.5 + pos: -11.5,-24.5 parent: 1668 - - uid: 2748 + - uid: 5546 components: - type: Transform - pos: 3.5,26.5 + pos: -11.5,-23.5 parent: 1668 - - uid: 2749 + - uid: 5549 components: - type: Transform - pos: 4.5,26.5 + pos: -15.5,-24.5 parent: 1668 - - uid: 2750 + - uid: 5550 components: - type: Transform - pos: 1.5,26.5 + pos: -15.5,-23.5 parent: 1668 - - uid: 2751 + - uid: 5570 components: - type: Transform - pos: 4.5,23.5 + pos: -27.5,-23.5 parent: 1668 - - uid: 2753 + - uid: 5574 components: - type: Transform - pos: 3.5,23.5 + pos: -27.5,-19.5 parent: 1668 - - uid: 2757 + - uid: 5575 components: - type: Transform - pos: 6.5,23.5 + pos: -27.5,-18.5 parent: 1668 - - uid: 2759 + - uid: 5576 components: - type: Transform - pos: 7.5,23.5 + pos: -26.5,-18.5 parent: 1668 - - uid: 2761 + - uid: 5577 components: - type: Transform - pos: 2.5,26.5 + pos: -25.5,-18.5 parent: 1668 - - uid: 2766 + - uid: 5578 components: - type: Transform - pos: 17.5,25.5 + pos: -24.5,-18.5 parent: 1668 - - uid: 2767 + - uid: 5579 components: - type: Transform - pos: 17.5,26.5 + pos: -23.5,-18.5 parent: 1668 - - uid: 2768 + - uid: 5580 components: - type: Transform - pos: 16.5,26.5 + pos: -22.5,-18.5 parent: 1668 - - uid: 2769 + - uid: 5581 components: - type: Transform - pos: 15.5,26.5 + pos: -21.5,-18.5 parent: 1668 - - uid: 2770 + - uid: 5582 components: - type: Transform - pos: 14.5,26.5 + pos: -20.5,-18.5 parent: 1668 - - uid: 2783 + - uid: 5583 components: - type: Transform - pos: 9.5,26.5 + pos: -19.5,-18.5 parent: 1668 - - uid: 2788 + - uid: 5584 components: - type: Transform - pos: 11.5,30.5 + pos: -18.5,-18.5 parent: 1668 - - uid: 2789 + - uid: 5585 components: - type: Transform - pos: 7.5,30.5 + pos: -17.5,-18.5 parent: 1668 - - uid: 2793 + - uid: 5586 components: - type: Transform - pos: 7.5,32.5 + pos: -16.5,-18.5 parent: 1668 - - uid: 2794 + - uid: 5587 components: - type: Transform - pos: 14.5,33.5 + pos: -15.5,-18.5 parent: 1668 - - uid: 2795 + - uid: 5588 components: - type: Transform - pos: 13.5,33.5 + pos: -14.5,-18.5 parent: 1668 - - uid: 2796 + - uid: 5589 components: - type: Transform - pos: 12.5,33.5 + pos: -13.5,-18.5 parent: 1668 - - uid: 2797 + - uid: 5590 components: - type: Transform - pos: 11.5,33.5 + pos: -12.5,-18.5 parent: 1668 - - uid: 2798 + - uid: 5591 components: - type: Transform - pos: 10.5,33.5 + pos: -11.5,-18.5 parent: 1668 - - uid: 2799 + - uid: 5592 components: - type: Transform - pos: 9.5,33.5 + pos: -10.5,-18.5 parent: 1668 - - uid: 2800 + - uid: 5593 components: - type: Transform - pos: 8.5,33.5 + pos: -9.5,-18.5 parent: 1668 - - uid: 2801 + - uid: 5594 components: - type: Transform - pos: 7.5,33.5 + pos: -8.5,-18.5 parent: 1668 - - uid: 2802 + - uid: 5595 components: - type: Transform - pos: 6.5,33.5 + pos: -7.5,-18.5 parent: 1668 - - uid: 2803 + - uid: 5596 components: - type: Transform - pos: 5.5,33.5 + pos: -6.5,-18.5 parent: 1668 - - uid: 2804 + - uid: 5597 components: - type: Transform - pos: 4.5,33.5 + pos: -5.5,-18.5 parent: 1668 - - uid: 2805 + - uid: 5598 components: - type: Transform - pos: 3.5,33.5 + pos: -4.5,-18.5 parent: 1668 - - uid: 2806 + - uid: 5599 components: - type: Transform - pos: 2.5,33.5 + pos: -7.5,-19.5 parent: 1668 - - uid: 2807 + - uid: 5600 components: - type: Transform - pos: 1.5,33.5 + pos: -11.5,-19.5 parent: 1668 - - uid: 2814 + - uid: 5601 components: - type: Transform - pos: 11.5,32.5 + pos: -15.5,-19.5 parent: 1668 - - uid: 2833 + - uid: 5602 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,23.5 + pos: -19.5,-19.5 parent: 1668 - - uid: 2834 + - uid: 5603 components: - type: Transform - pos: 1.5,23.5 + pos: -23.5,-19.5 parent: 1668 - - uid: 2835 + - uid: 5607 components: - type: Transform - pos: 1.5,24.5 + pos: -23.5,-23.5 parent: 1668 - - uid: 2836 + - uid: 5608 components: - type: Transform - pos: 1.5,25.5 + pos: -23.5,-24.5 parent: 1668 - - uid: 2837 + - uid: 5609 components: - type: Transform - pos: 1.5,27.5 + pos: -28.5,-34.5 parent: 1668 - - uid: 2838 + - uid: 5610 components: - type: Transform - pos: 1.5,28.5 + pos: -31.5,-28.5 parent: 1668 - - uid: 2839 + - uid: 5619 components: - type: Transform - pos: 1.5,29.5 + pos: -31.5,-34.5 parent: 1668 - - uid: 2840 + - uid: 5620 components: - type: Transform - pos: 1.5,30.5 + pos: -32.5,-34.5 parent: 1668 - - uid: 2841 + - uid: 5621 components: - type: Transform - pos: 1.5,31.5 + pos: -34.5,-34.5 parent: 1668 - - uid: 2842 + - uid: 5622 components: - type: Transform - pos: 1.5,32.5 + pos: -31.5,-33.5 parent: 1668 - - uid: 2843 + - uid: 5623 components: - type: Transform - pos: 17.5,27.5 + pos: -35.5,-33.5 parent: 1668 - - uid: 2844 + - uid: 5624 components: - type: Transform - pos: 17.5,28.5 + pos: -39.5,-33.5 parent: 1668 - - uid: 2845 + - uid: 5637 components: - type: Transform - pos: 17.5,29.5 + pos: -30.5,-34.5 parent: 1668 - - uid: 2846 + - uid: 5638 components: - type: Transform - pos: 17.5,30.5 + pos: -29.5,-34.5 parent: 1668 - - uid: 2847 + - uid: 5639 components: - type: Transform - pos: 17.5,31.5 + pos: -33.5,-34.5 parent: 1668 - - uid: 2848 + - uid: 5640 components: - type: Transform - pos: 17.5,32.5 + pos: -37.5,-34.5 parent: 1668 - - uid: 2849 + - uid: 5641 components: - type: Transform - pos: 17.5,33.5 + pos: -38.5,-34.5 parent: 1668 - - uid: 2850 + - uid: 5642 components: - type: Transform - pos: 16.5,33.5 + pos: -39.5,-34.5 parent: 1668 - - uid: 2851 + - uid: 5643 components: - type: Transform - pos: 15.5,33.5 + pos: -35.5,-34.5 parent: 1668 - - uid: 2852 + - uid: 5644 components: - type: Transform - pos: 16.5,29.5 + pos: -36.5,-34.5 parent: 1668 - - uid: 2853 + - uid: 5645 components: - type: Transform - pos: 14.5,29.5 + pos: -31.5,-29.5 parent: 1668 - - uid: 2854 + - uid: 5667 components: - type: Transform - pos: 15.5,29.5 + pos: -35.5,-29.5 parent: 1668 - - uid: 2855 + - uid: 5720 components: - type: Transform - pos: 2.5,29.5 + pos: -6.5,-17.5 parent: 1668 - - uid: 2856 + - uid: 5721 components: - type: Transform - pos: 3.5,29.5 + pos: -6.5,-16.5 parent: 1668 - - uid: 2857 + - uid: 5722 components: - type: Transform - pos: 4.5,29.5 + pos: -6.5,-15.5 parent: 1668 - - uid: 2883 + - uid: 5723 components: - type: Transform - pos: 4.5,32.5 + pos: -5.5,-15.5 parent: 1668 - - uid: 2884 + - uid: 5724 components: - type: Transform - pos: 14.5,32.5 + pos: -4.5,-15.5 parent: 1668 - - uid: 2885 + - uid: 5895 components: - type: Transform - pos: 4.5,30.5 + rot: -1.5707963267948966 rad + pos: -29.5,11.5 parent: 1668 - - uid: 2888 + - uid: 5898 components: - type: Transform - pos: 14.5,30.5 + pos: -17.5,-3.5 parent: 1668 - - uid: 3140 + - uid: 5899 components: - type: Transform - pos: 33.5,-0.5 + pos: -18.5,-3.5 parent: 1668 - - uid: 3184 + - uid: 5900 components: - type: Transform - pos: 0.5,26.5 + pos: -19.5,-3.5 parent: 1668 - - uid: 3187 + - uid: 5901 components: - type: Transform - pos: 0.5,27.5 + pos: -20.5,-3.5 parent: 1668 - - uid: 3188 + - uid: 5902 components: - type: Transform - pos: 0.5,28.5 + pos: -21.5,-3.5 parent: 1668 - - uid: 3189 + - uid: 5903 components: - type: Transform - pos: 0.5,29.5 + pos: -22.5,-3.5 parent: 1668 - - uid: 3190 + - uid: 5904 components: - type: Transform - pos: 0.5,30.5 + pos: -23.5,-3.5 parent: 1668 - - uid: 3191 + - uid: 5905 components: - type: Transform - pos: 0.5,31.5 + pos: -24.5,-3.5 parent: 1668 - - uid: 3192 + - uid: 5906 components: - type: Transform - pos: 0.5,32.5 + pos: -25.5,-3.5 parent: 1668 - - uid: 3193 + - uid: 5907 components: - type: Transform - pos: 0.5,33.5 + pos: -26.5,-3.5 parent: 1668 - - uid: 3194 + - uid: 5908 components: - type: Transform - pos: 0.5,34.5 + pos: -27.5,-3.5 parent: 1668 - - uid: 3195 + - uid: 5909 components: - type: Transform - pos: 1.5,34.5 + pos: -28.5,-3.5 parent: 1668 - - uid: 3196 + - uid: 5910 components: - type: Transform - pos: 2.5,34.5 + pos: -29.5,-3.5 parent: 1668 - - uid: 3197 + - uid: 5917 components: - type: Transform - pos: 3.5,34.5 + pos: -24.5,3.5 parent: 1668 - - uid: 3198 + - uid: 5918 components: - type: Transform - pos: 4.5,34.5 + pos: -29.5,3.5 parent: 1668 - - uid: 3199 + - uid: 6008 components: - type: Transform - pos: 5.5,34.5 + rot: -1.5707963267948966 rad + pos: -30.5,8.5 parent: 1668 - - uid: 3200 + - uid: 6009 components: - type: Transform - pos: 6.5,34.5 + rot: -1.5707963267948966 rad + pos: -29.5,14.5 parent: 1668 - - uid: 3201 + - uid: 6010 components: - type: Transform - pos: 7.5,34.5 + pos: -35.5,-28.5 parent: 1668 - - uid: 3202 + - uid: 6011 components: - type: Transform - pos: 8.5,34.5 + rot: -1.5707963267948966 rad + pos: -30.5,14.5 parent: 1668 - - uid: 3203 + - uid: 6012 components: - type: Transform - pos: 9.5,34.5 + rot: -1.5707963267948966 rad + pos: -31.5,14.5 parent: 1668 - - uid: 3204 + - uid: 6013 components: - type: Transform - pos: 10.5,34.5 + rot: -1.5707963267948966 rad + pos: -32.5,14.5 parent: 1668 - - uid: 3205 + - uid: 6018 components: - type: Transform - pos: 11.5,34.5 + pos: -9.5,-11.5 parent: 1668 - - uid: 3206 + - uid: 6019 components: - type: Transform - pos: 12.5,34.5 + pos: -10.5,-11.5 parent: 1668 - - uid: 3207 + - uid: 6020 components: - type: Transform - pos: 13.5,34.5 + pos: -11.5,-11.5 parent: 1668 - - uid: 3208 + - uid: 6021 components: - type: Transform - pos: 14.5,34.5 + pos: -12.5,-11.5 parent: 1668 - - uid: 3209 + - uid: 6023 components: - type: Transform - pos: 15.5,34.5 + pos: -14.5,-11.5 parent: 1668 - - uid: 3210 + - uid: 6024 components: - type: Transform - pos: 16.5,34.5 + pos: -15.5,-11.5 parent: 1668 - - uid: 3211 + - uid: 6025 components: - type: Transform - pos: 17.5,34.5 + pos: -16.5,-11.5 parent: 1668 - - uid: 3212 + - uid: 6026 components: - type: Transform - pos: 18.5,34.5 + pos: -16.5,-10.5 parent: 1668 - - uid: 3213 + - uid: 6027 components: - type: Transform - pos: 18.5,33.5 + pos: -16.5,-9.5 parent: 1668 - - uid: 3214 + - uid: 6028 components: - type: Transform - pos: 18.5,32.5 + pos: -16.5,-8.5 parent: 1668 - - uid: 3215 + - uid: 6029 components: - type: Transform - pos: 18.5,31.5 + pos: -16.5,-7.5 parent: 1668 - - uid: 3216 + - uid: 6030 components: - type: Transform - pos: 18.5,30.5 + pos: -16.5,-6.5 parent: 1668 - - uid: 3217 + - uid: 6031 components: - type: Transform - pos: 18.5,29.5 + pos: -18.5,-16.5 parent: 1668 - - uid: 3218 + - uid: 6032 components: - type: Transform - pos: 18.5,28.5 + pos: -9.5,-16.5 parent: 1668 - - uid: 3219 + - uid: 6033 components: - type: Transform - pos: 18.5,27.5 + pos: -9.5,-15.5 parent: 1668 - - uid: 3220 + - uid: 6034 components: - type: Transform - pos: 18.5,26.5 + pos: -12.5,-15.5 parent: 1668 - - uid: 3221 + - uid: 6035 components: - type: Transform - pos: 18.5,25.5 + pos: -9.5,-17.5 parent: 1668 - - uid: 3222 + - uid: 6036 components: - type: Transform - pos: 35.5,25.5 + pos: -12.5,-17.5 parent: 1668 - - uid: 3223 + - uid: 6037 components: - type: Transform - pos: 34.5,25.5 + pos: -12.5,-16.5 parent: 1668 - - uid: 3224 + - uid: 6038 components: - type: Transform - pos: 33.5,25.5 + pos: -15.5,-17.5 parent: 1668 - - uid: 3225 + - uid: 6039 components: - type: Transform - pos: 32.5,25.5 + pos: -15.5,-15.5 parent: 1668 - - uid: 3226 + - uid: 6040 components: - type: Transform - pos: 31.5,25.5 + pos: -18.5,-17.5 parent: 1668 - - uid: 3227 + - uid: 6041 components: - type: Transform - pos: 30.5,25.5 + pos: -15.5,-16.5 parent: 1668 - - uid: 3228 + - uid: 6043 components: - type: Transform - pos: 29.5,25.5 + pos: -3.5,-8.5 parent: 1668 - - uid: 3229 + - uid: 6044 components: - type: Transform - pos: 28.5,25.5 + pos: -3.5,-10.5 parent: 1668 - - uid: 3230 + - uid: 6046 components: - type: Transform - pos: 27.5,25.5 + pos: -18.5,-15.5 parent: 1668 - - uid: 3231 + - uid: 6091 components: - type: Transform - pos: 26.5,25.5 + pos: -21.5,-17.5 parent: 1668 - - uid: 3232 + - uid: 6092 components: - type: Transform - pos: 25.5,25.5 + pos: -21.5,-16.5 parent: 1668 - - uid: 3233 + - uid: 6093 components: - type: Transform - pos: 24.5,25.5 + pos: -21.5,-15.5 parent: 1668 - - uid: 3234 + - uid: 6094 components: - type: Transform - pos: 23.5,25.5 + pos: -24.5,-17.5 parent: 1668 - - uid: 3235 + - uid: 6095 components: - type: Transform - pos: 22.5,25.5 + pos: -24.5,-16.5 parent: 1668 - - uid: 3236 + - uid: 6096 components: - type: Transform - pos: 21.5,25.5 + pos: -24.5,-15.5 parent: 1668 - - uid: 3237 + - uid: 6097 components: - type: Transform - pos: 20.5,25.5 + pos: -27.5,-17.5 parent: 1668 - - uid: 3238 + - uid: 6098 components: - type: Transform - pos: 19.5,25.5 + pos: -27.5,-16.5 parent: 1668 - - uid: 3262 + - uid: 6099 components: - type: Transform - pos: -10.5,-10.5 + pos: -27.5,-15.5 parent: 1668 - - uid: 3263 + - uid: 6111 components: - type: Transform - pos: -11.5,-10.5 + pos: -27.5,-5.5 parent: 1668 - - uid: 3264 + - uid: 6112 components: - type: Transform - pos: -12.5,-10.5 + pos: -27.5,-4.5 parent: 1668 - - uid: 3265 + - uid: 6126 components: - type: Transform - pos: -13.5,-10.5 + pos: -27.5,-6.5 parent: 1668 - - uid: 3266 + - uid: 6127 components: - type: Transform - pos: -14.5,-10.5 + pos: -27.5,-7.5 parent: 1668 - - uid: 3267 + - uid: 6128 components: - type: Transform - pos: -15.5,-10.5 + pos: -27.5,-8.5 parent: 1668 - - uid: 3268 + - uid: 6129 components: - type: Transform - pos: -16.5,-10.5 + pos: -27.5,-9.5 parent: 1668 - - uid: 3269 + - uid: 6130 components: - type: Transform - pos: -17.5,-10.5 + pos: -27.5,-10.5 parent: 1668 - - uid: 3270 + - uid: 6131 components: - type: Transform - pos: -18.5,-10.5 + pos: -27.5,-11.5 parent: 1668 - - uid: 3271 + - uid: 6579 components: - type: Transform - pos: -19.5,-10.5 + pos: -28.5,-11.5 parent: 1668 - - uid: 3272 + - uid: 6580 components: - type: Transform - pos: -20.5,-10.5 + pos: -29.5,-11.5 parent: 1668 - - uid: 3273 + - uid: 6581 components: - type: Transform - pos: -21.5,-10.5 + pos: -30.5,-11.5 parent: 1668 - - uid: 3274 + - uid: 6582 components: - type: Transform - pos: -17.5,13.5 + pos: -31.5,-11.5 parent: 1668 - - uid: 3275 + - uid: 6583 components: - type: Transform - pos: -18.5,13.5 + pos: -32.5,-11.5 parent: 1668 - - uid: 3276 + - uid: 6584 components: - type: Transform - pos: -19.5,13.5 + pos: -33.5,-11.5 parent: 1668 - - uid: 3277 + - uid: 6585 components: - type: Transform - pos: -19.5,14.5 + pos: -34.5,-11.5 parent: 1668 - - uid: 3278 + - uid: 6586 components: - type: Transform - pos: -19.5,15.5 + pos: -35.5,-11.5 parent: 1668 - - uid: 3279 + - uid: 6587 components: - type: Transform - pos: -19.5,16.5 + pos: -37.5,-11.5 parent: 1668 - - uid: 3280 + - uid: 6588 components: - type: Transform - pos: -20.5,16.5 + pos: -36.5,-11.5 parent: 1668 - - uid: 3281 + - uid: 6589 components: - type: Transform - pos: -21.5,16.5 + pos: -39.5,-11.5 parent: 1668 - - uid: 3282 + - uid: 6590 components: - type: Transform - pos: -22.5,16.5 + pos: -38.5,-11.5 parent: 1668 - - uid: 3283 + - uid: 6598 components: - type: Transform - pos: -22.5,15.5 + pos: -41.5,-3.5 parent: 1668 - - uid: 3284 + - uid: 6599 components: - type: Transform - pos: -22.5,14.5 + pos: -39.5,-3.5 parent: 1668 - - uid: 3285 + - uid: 6600 components: - type: Transform - pos: -22.5,13.5 + pos: -37.5,-3.5 parent: 1668 - - uid: 3286 + - uid: 6602 components: - type: Transform - pos: -20.5,13.5 + pos: -35.5,-3.5 parent: 1668 - - uid: 3294 + - uid: 6603 components: - type: Transform - pos: -10.5,3.5 + pos: -34.5,-3.5 parent: 1668 - - uid: 3295 + - uid: 6604 components: - type: Transform - pos: -11.5,3.5 + pos: -33.5,-3.5 parent: 1668 - - uid: 3296 + - uid: 6605 components: - type: Transform - pos: -12.5,3.5 + pos: -32.5,-3.5 parent: 1668 - - uid: 3297 + - uid: 6606 components: - type: Transform - pos: -13.5,3.5 + pos: -31.5,-3.5 parent: 1668 - - uid: 3298 + - uid: 6607 components: - type: Transform - pos: -14.5,3.5 + pos: -30.5,-3.5 parent: 1668 - - uid: 3299 + - uid: 6608 components: - type: Transform - pos: -15.5,3.5 + pos: -28.5,-18.5 parent: 1668 - - uid: 3300 + - uid: 6609 components: - type: Transform - pos: -16.5,3.5 + pos: -29.5,-18.5 parent: 1668 - - uid: 3301 + - uid: 6610 components: - type: Transform - pos: -17.5,3.5 + pos: -30.5,-18.5 parent: 1668 - - uid: 3302 + - uid: 6611 components: - type: Transform - pos: -17.5,2.5 + pos: -31.5,-18.5 parent: 1668 - - uid: 3303 + - uid: 6612 components: - type: Transform - pos: -17.5,1.5 + pos: -32.5,-18.5 parent: 1668 - - uid: 3304 + - uid: 6613 components: - type: Transform - pos: -13.5,1.5 + pos: -33.5,-18.5 parent: 1668 - - uid: 3305 + - uid: 6614 components: - type: Transform - pos: -10.5,-2.5 + pos: -34.5,-18.5 parent: 1668 - - uid: 3306 + - uid: 6615 components: - type: Transform - pos: -11.5,-2.5 + pos: -35.5,-18.5 parent: 1668 - - uid: 3307 + - uid: 6616 components: - type: Transform - pos: -12.5,-2.5 + pos: -36.5,-18.5 parent: 1668 - - uid: 3308 + - uid: 6617 components: - type: Transform - pos: -13.5,-2.5 + pos: -37.5,-18.5 parent: 1668 - - uid: 3309 + - uid: 6618 components: - type: Transform - pos: -14.5,-2.5 + pos: -38.5,-18.5 parent: 1668 - - uid: 3310 + - uid: 6619 components: - type: Transform - pos: -15.5,-2.5 + pos: -39.5,-18.5 parent: 1668 - - uid: 3311 + - uid: 6620 components: - type: Transform - pos: -16.5,-2.5 + pos: -39.5,-17.5 parent: 1668 - - uid: 3312 + - uid: 6621 components: - type: Transform - pos: -17.5,-2.5 + pos: -39.5,-16.5 parent: 1668 - - uid: 3313 + - uid: 6622 components: - type: Transform - pos: -16.5,-3.5 + pos: -39.5,-15.5 parent: 1668 - - uid: 3314 + - uid: 6623 components: - type: Transform - pos: -16.5,-4.5 + pos: -39.5,-14.5 parent: 1668 - - uid: 3315 + - uid: 6624 components: - type: Transform - pos: -16.5,-9.5 + pos: -39.5,-13.5 parent: 1668 - - uid: 3316 + - uid: 6625 components: - type: Transform - pos: -16.5,-8.5 + pos: -39.5,-12.5 parent: 1668 - - uid: 3317 + - uid: 6626 components: - type: Transform - pos: -18.5,1.5 + pos: -30.5,-17.5 parent: 1668 - - uid: 3318 + - uid: 6627 components: - type: Transform - pos: -19.5,1.5 + pos: -30.5,-16.5 parent: 1668 - - uid: 3319 + - uid: 6628 components: - type: Transform - pos: -20.5,1.5 + pos: -30.5,-15.5 parent: 1668 - - uid: 3320 + - uid: 6629 components: - type: Transform - pos: -23.5,13.5 + pos: -33.5,-17.5 parent: 1668 - - uid: 3321 + - uid: 6630 components: - type: Transform - pos: -24.5,13.5 + pos: -33.5,-16.5 parent: 1668 - - uid: 3322 + - uid: 6631 components: - type: Transform - pos: -25.5,13.5 + pos: -33.5,-15.5 parent: 1668 - - uid: 3323 + - uid: 6632 components: - type: Transform - pos: -26.5,13.5 + pos: -36.5,-17.5 parent: 1668 - - uid: 3324 + - uid: 6633 components: - type: Transform - pos: -27.5,13.5 + pos: -36.5,-16.5 parent: 1668 - - uid: 3325 + - uid: 6634 components: - type: Transform - pos: -27.5,10.5 + pos: -36.5,-15.5 parent: 1668 - - uid: 3326 + - uid: 6687 components: - type: Transform - pos: -27.5,7.5 + rot: 3.141592653589793 rad + pos: -34.5,-4.5 parent: 1668 - - uid: 3331 + - uid: 6688 components: - type: Transform - pos: -17.5,12.5 + rot: 3.141592653589793 rad + pos: -34.5,-5.5 parent: 1668 - - uid: 3332 + - uid: 6689 components: - type: Transform - pos: -17.5,10.5 + rot: 3.141592653589793 rad + pos: -34.5,-10.5 parent: 1668 - - uid: 3333 + - uid: 6690 components: - type: Transform - pos: -17.5,9.5 + rot: 3.141592653589793 rad + pos: -34.5,-9.5 parent: 1668 - - uid: 3334 + - uid: 6698 components: - type: Transform - pos: -17.5,8.5 + pos: -42.5,-3.5 parent: 1668 - - uid: 3335 + - uid: 6699 components: - type: Transform - pos: -17.5,7.5 + pos: -43.5,-3.5 parent: 1668 - - uid: 3336 + - uid: 6700 components: - type: Transform - pos: -13.5,6.5 + pos: -44.5,-3.5 parent: 1668 - - uid: 3337 + - uid: 6701 components: - type: Transform - pos: -13.5,4.5 + pos: -45.5,-3.5 parent: 1668 - - uid: 3338 + - uid: 6702 components: - type: Transform - pos: -14.5,7.5 + pos: -46.5,-3.5 parent: 1668 - - uid: 3339 + - uid: 6703 components: - type: Transform - pos: -15.5,7.5 + pos: -46.5,-4.5 parent: 1668 - - uid: 3340 + - uid: 6704 components: - type: Transform - pos: -16.5,7.5 + pos: -46.5,-5.5 parent: 1668 - - uid: 3341 + - uid: 6705 components: - type: Transform - pos: -17.5,4.5 + pos: -46.5,-9.5 parent: 1668 - - uid: 3342 + - uid: 6706 components: - type: Transform - pos: -17.5,6.5 + pos: -46.5,-8.5 parent: 1668 - - uid: 3343 + - uid: 6707 components: - type: Transform - pos: -18.5,7.5 + pos: -46.5,-7.5 parent: 1668 - - uid: 3344 + - uid: 6708 components: - type: Transform - pos: -20.5,7.5 + pos: -46.5,-6.5 parent: 1668 - - uid: 3345 + - uid: 6709 components: - type: Transform - pos: -21.5,7.5 + pos: -46.5,-10.5 parent: 1668 - - uid: 3346 + - uid: 6710 components: - type: Transform - pos: -22.5,7.5 + pos: -46.5,-11.5 parent: 1668 - - uid: 3347 + - uid: 6711 components: - type: Transform - pos: -22.5,1.5 + pos: -45.5,-11.5 parent: 1668 - - uid: 3348 + - uid: 6712 components: - type: Transform - pos: -26.5,7.5 + pos: -44.5,-11.5 parent: 1668 - - uid: 3349 + - uid: 6713 components: - type: Transform - pos: -25.5,7.5 + pos: -43.5,-11.5 parent: 1668 - - uid: 3350 + - uid: 6714 components: - type: Transform - pos: -24.5,7.5 + pos: -42.5,-11.5 parent: 1668 - - uid: 3351 + - uid: 6715 components: - type: Transform - pos: -25.5,6.5 + pos: -41.5,-11.5 parent: 1668 - - uid: 3352 + - uid: 6716 components: - type: Transform - pos: -23.5,1.5 + pos: -40.5,-11.5 parent: 1668 - - uid: 3353 + - uid: 6941 components: - type: Transform - pos: -24.5,1.5 + pos: -30.5,2.5 parent: 1668 - - uid: 3354 + - uid: 6942 components: - type: Transform - pos: -25.5,1.5 + pos: -31.5,2.5 parent: 1668 - - uid: 3355 + - uid: 6943 components: - type: Transform - pos: -25.5,2.5 + pos: -32.5,2.5 parent: 1668 - - uid: 3356 + - uid: 6945 components: - type: Transform - pos: -25.5,3.5 + pos: -34.5,2.5 parent: 1668 - - uid: 3357 + - uid: 6946 components: - type: Transform - pos: -25.5,4.5 + pos: -35.5,2.5 parent: 1668 - - uid: 3358 + - uid: 6947 components: - type: Transform - pos: -25.5,5.5 + pos: -36.5,2.5 parent: 1668 - - uid: 3359 + - uid: 6948 components: - type: Transform - pos: -28.5,1.5 + pos: -37.5,2.5 parent: 1668 - - uid: 3360 + - uid: 6949 components: - type: Transform - pos: -28.5,2.5 + pos: -38.5,2.5 parent: 1668 - - uid: 3361 + - uid: 6950 components: - type: Transform - pos: -28.5,3.5 + pos: -39.5,2.5 parent: 1668 - - uid: 3362 + - uid: 6951 components: - type: Transform - pos: -26.5,1.5 + pos: -40.5,2.5 parent: 1668 - - uid: 3363 + - uid: 6952 components: - type: Transform - pos: -28.5,5.5 + pos: -41.5,2.5 parent: 1668 - - uid: 3364 + - uid: 6956 components: - type: Transform - pos: -28.5,6.5 + pos: -45.5,2.5 parent: 1668 - - uid: 3365 + - uid: 6957 components: - type: Transform - pos: -28.5,7.5 + pos: -46.5,2.5 parent: 1668 - - uid: 3366 + - uid: 7107 components: - type: Transform - pos: -27.5,1.5 + pos: -47.5,-8.5 parent: 1668 - - uid: 3367 + - uid: 7111 components: - type: Transform - pos: -22.5,-10.5 + pos: -51.5,-8.5 parent: 1668 - - uid: 3368 + - uid: 7112 components: - type: Transform - pos: -23.5,-10.5 + pos: -52.5,-8.5 parent: 1668 - - uid: 3369 + - uid: 7113 components: - type: Transform - pos: -24.5,-10.5 + pos: -52.5,-7.5 parent: 1668 - - uid: 3370 + - uid: 7114 components: - type: Transform - pos: -25.5,-10.5 + pos: -52.5,-6.5 parent: 1668 - - uid: 3371 + - uid: 7115 components: - type: Transform - pos: -26.5,-10.5 + pos: -52.5,-5.5 parent: 1668 - - uid: 3372 + - uid: 7116 components: - type: Transform - pos: -27.5,-10.5 + pos: -52.5,-4.5 parent: 1668 - - uid: 3373 + - uid: 7117 components: - type: Transform - pos: -28.5,-10.5 + pos: -52.5,-3.5 parent: 1668 - - uid: 3374 + - uid: 7118 components: - type: Transform - pos: -18.5,-2.5 + pos: -51.5,-3.5 parent: 1668 - - uid: 3375 + - uid: 7119 components: - type: Transform - pos: -19.5,-2.5 + pos: -47.5,-3.5 parent: 1668 - - uid: 3376 + - uid: 7122 components: - type: Transform - pos: -23.5,-2.5 + pos: -47.5,2.5 parent: 1668 - - uid: 3377 + - uid: 7125 components: - type: Transform - pos: -24.5,-2.5 + pos: -51.5,2.5 parent: 1668 - - uid: 3378 + - uid: 7126 components: - type: Transform - pos: -25.5,-2.5 + pos: -52.5,2.5 parent: 1668 - - uid: 3379 + - uid: 7127 components: - type: Transform - pos: -26.5,-2.5 + pos: -52.5,3.5 parent: 1668 - - uid: 3380 + - uid: 7128 components: - type: Transform - pos: -27.5,-2.5 + pos: -52.5,4.5 parent: 1668 - - uid: 3381 + - uid: 7129 components: - type: Transform - pos: -28.5,-2.5 + pos: -52.5,5.5 parent: 1668 - - uid: 3382 + - uid: 7130 components: - type: Transform - pos: -28.5,-3.5 + pos: -52.5,6.5 parent: 1668 - - uid: 3383 + - uid: 7131 components: - type: Transform - pos: -28.5,-4.5 + pos: -52.5,7.5 parent: 1668 - - uid: 3384 + - uid: 7132 components: - type: Transform - pos: -28.5,-9.5 + pos: -51.5,7.5 parent: 1668 - - uid: 3443 + - uid: 7136 components: - type: Transform - pos: -17.5,14.5 + pos: -47.5,7.5 parent: 1668 - - uid: 3444 + - uid: 7137 components: - type: Transform - pos: -18.5,14.5 + pos: -46.5,7.5 parent: 1668 - - uid: 3780 + - uid: 7138 components: - type: Transform - pos: -21.5,-2.5 + pos: -46.5,6.5 parent: 1668 - - uid: 3783 + - uid: 7139 components: - type: Transform - pos: -28.5,-5.5 + pos: -46.5,5.5 parent: 1668 - - uid: 3784 + - uid: 7140 components: - type: Transform - pos: -28.5,-6.5 + pos: -46.5,4.5 parent: 1668 - - uid: 3785 + - uid: 7141 components: - type: Transform - pos: -28.5,-7.5 + pos: -46.5,3.5 parent: 1668 - - uid: 3786 + - uid: 7142 components: - type: Transform - pos: -28.5,-8.5 + pos: -45.5,7.5 parent: 1668 - - uid: 3919 + - uid: 7146 components: - type: Transform - pos: -29.5,2.5 + pos: -41.5,7.5 parent: 1668 - - uid: 3920 + - uid: 7147 components: - type: Transform - pos: -31.5,2.5 + pos: -40.5,7.5 parent: 1668 - - uid: 3921 + - uid: 7148 components: - type: Transform - pos: -32.5,2.5 + pos: -40.5,6.5 parent: 1668 - - uid: 3922 + - uid: 7149 components: - type: Transform - pos: -33.5,2.5 + pos: -40.5,5.5 parent: 1668 - - uid: 3923 + - uid: 7150 components: - type: Transform - pos: -34.5,2.5 + pos: -40.5,4.5 parent: 1668 - - uid: 3924 + - uid: 7151 components: - type: Transform - pos: -34.5,-3.5 + pos: -40.5,3.5 parent: 1668 - - uid: 3925 + - uid: 7155 components: - type: Transform - pos: -33.5,-3.5 + pos: -53.5,2.5 parent: 1668 - - uid: 3926 + - uid: 7156 components: - type: Transform - pos: -32.5,-3.5 + pos: -53.5,-3.5 parent: 1668 - - uid: 3927 + - uid: 7157 components: - type: Transform - pos: -31.5,-3.5 + pos: -54.5,-3.5 parent: 1668 - - uid: 3928 + - uid: 7158 components: - type: Transform - pos: -30.5,-3.5 + pos: -55.5,-3.5 parent: 1668 - - uid: 3929 + - uid: 7159 components: - type: Transform - pos: -29.5,-3.5 + pos: -54.5,2.5 parent: 1668 - - uid: 3930 + - uid: 7160 components: - type: Transform - pos: -29.5,7.5 + pos: -55.5,2.5 parent: 1668 - - uid: 3931 + - uid: 7244 components: - type: Transform - pos: -31.5,7.5 + rot: 1.5707963267948966 rad + pos: -39.5,7.5 parent: 1668 - - uid: 3932 + - uid: 7245 components: - type: Transform - pos: -34.5,7.5 + rot: 1.5707963267948966 rad + pos: -39.5,8.5 parent: 1668 - - uid: 4188 + - uid: 7246 components: - type: Transform - pos: 5.5,-15.5 + rot: 1.5707963267948966 rad + pos: -39.5,9.5 parent: 1668 - - uid: 4190 + - uid: 7247 components: - type: Transform - pos: 5.5,-17.5 + rot: 1.5707963267948966 rad + pos: -39.5,10.5 parent: 1668 - - uid: 4191 + - uid: 7248 components: - type: Transform - pos: -6.5,-17.5 + rot: 1.5707963267948966 rad + pos: -39.5,11.5 parent: 1668 - - uid: 4192 + - uid: 7249 components: - type: Transform - pos: -6.5,-16.5 + rot: 1.5707963267948966 rad + pos: -39.5,12.5 parent: 1668 - - uid: 4193 + - uid: 7250 components: - type: Transform - pos: -6.5,-19.5 + rot: 1.5707963267948966 rad + pos: -39.5,14.5 parent: 1668 - - uid: 4194 + - uid: 7251 components: - type: Transform - pos: 5.5,-19.5 + rot: 1.5707963267948966 rad + pos: -39.5,13.5 parent: 1668 - - uid: 4195 + - uid: 7252 components: - type: Transform - pos: 5.5,-20.5 + rot: 1.5707963267948966 rad + pos: -38.5,14.5 parent: 1668 - - uid: 4196 + - uid: 7253 components: - type: Transform - pos: 4.5,-20.5 + rot: 1.5707963267948966 rad + pos: -37.5,14.5 parent: 1668 - - uid: 4197 + - uid: 7254 components: - type: Transform - pos: 3.5,-20.5 + rot: 1.5707963267948966 rad + pos: -36.5,14.5 parent: 1668 - - uid: 4198 + - uid: 7255 components: - type: Transform - pos: 2.5,-20.5 + rot: 1.5707963267948966 rad + pos: -35.5,14.5 parent: 1668 - - uid: 4199 + - uid: 7256 components: - type: Transform - pos: 1.5,-20.5 + rot: 1.5707963267948966 rad + pos: -34.5,14.5 parent: 1668 - - uid: 4202 + - uid: 7257 components: - type: Transform - pos: -2.5,-20.5 + rot: 1.5707963267948966 rad + pos: -33.5,14.5 parent: 1668 - - uid: 4203 + - uid: 7325 components: - type: Transform - pos: -3.5,-20.5 + pos: -34.5,8.5 parent: 1668 - - uid: 4204 + - uid: 7326 components: - type: Transform - pos: -4.5,-20.5 + pos: -35.5,8.5 parent: 1668 - - uid: 4205 + - uid: 7327 components: - type: Transform - pos: -5.5,-20.5 + pos: -36.5,8.5 parent: 1668 - - uid: 4206 + - uid: 7328 components: - type: Transform - pos: -6.5,-20.5 + pos: -37.5,8.5 parent: 1668 - - uid: 4207 + - uid: 7329 components: - type: Transform - pos: 14.5,-18.5 + pos: -38.5,8.5 parent: 1668 - - uid: 4208 + - uid: 7348 components: - type: Transform - pos: 14.5,-19.5 + pos: -39.5,-29.5 parent: 1668 - - uid: 4209 + - uid: 7349 components: - type: Transform - pos: 14.5,-20.5 + pos: -39.5,-28.5 parent: 1668 - - uid: 4210 + - uid: 7350 components: - type: Transform - pos: 11.5,-20.5 + pos: -31.5,-24.5 parent: 1668 - - uid: 4211 + - uid: 7351 components: - type: Transform - pos: 10.5,-20.5 + pos: -31.5,-23.5 parent: 1668 - - uid: 4212 + - uid: 7352 components: - type: Transform - pos: 9.5,-20.5 + pos: -35.5,-24.5 parent: 1668 - - uid: 4213 + - uid: 7353 components: - type: Transform - pos: 8.5,-20.5 + pos: -35.5,-23.5 parent: 1668 - - uid: 4214 + - uid: 7354 components: - type: Transform - pos: 7.5,-20.5 + pos: -39.5,-24.5 parent: 1668 - - uid: 4215 + - uid: 7355 components: - type: Transform - pos: 6.5,-20.5 + pos: -39.5,-23.5 parent: 1668 - - uid: 4216 + - uid: 7356 components: - type: Transform - pos: -9.5,-15.5 + pos: -35.5,-19.5 parent: 1668 - - uid: 4217 + - uid: 7357 components: - type: Transform - pos: -10.5,-15.5 + pos: -39.5,-19.5 parent: 1668 - - uid: 4218 + - uid: 7358 components: - type: Transform - pos: -11.5,-15.5 + pos: -31.5,-19.5 parent: 1668 - - uid: 4219 + - uid: 8281 components: - type: Transform - pos: -12.5,-15.5 + rot: -1.5707963267948966 rad + pos: 19.5,-28.5 parent: 1668 - - uid: 4220 + - uid: 8780 components: - type: Transform - pos: -9.5,-17.5 + pos: -8.5,-10.5 parent: 1668 - - uid: 4221 + - uid: 8781 components: - type: Transform - pos: -12.5,-17.5 + pos: -8.5,-9.5 parent: 1668 - - uid: 4234 + - uid: 8782 components: - type: Transform - pos: -14.5,-17.5 + pos: -8.5,-8.5 parent: 1668 - - uid: 4235 +- proto: WallWood + entities: + - uid: 6135 components: - type: Transform - pos: -15.5,-17.5 + pos: -25.5,-9.5 parent: 1668 - - uid: 4236 + - uid: 6136 components: - type: Transform - pos: -15.5,-16.5 + pos: -25.5,-8.5 parent: 1668 - - uid: 4237 + - uid: 6137 components: - type: Transform - pos: -15.5,-15.5 + pos: -25.5,-7.5 parent: 1668 - - uid: 4238 + - uid: 6138 components: - type: Transform - pos: -14.5,-15.5 + pos: -25.5,-6.5 parent: 1668 - - uid: 4239 + - uid: 6139 components: - type: Transform - pos: -15.5,-19.5 + pos: -25.5,-5.5 parent: 1668 - - uid: 4240 + - uid: 6140 components: - type: Transform - pos: -15.5,-18.5 + pos: -24.5,-5.5 parent: 1668 - - uid: 4244 + - uid: 6141 components: - type: Transform - pos: -12.5,-20.5 + pos: -23.5,-5.5 parent: 1668 - - uid: 4245 + - uid: 6142 components: - type: Transform - pos: -11.5,-20.5 + pos: -22.5,-5.5 parent: 1668 - - uid: 4246 + - uid: 6143 components: - type: Transform - pos: -10.5,-20.5 + pos: -21.5,-5.5 parent: 1668 - - uid: 4247 + - uid: 6144 components: - type: Transform - pos: -9.5,-20.5 + pos: -20.5,-5.5 parent: 1668 - - uid: 4248 + - uid: 6145 components: - type: Transform - pos: -8.5,-20.5 + pos: -19.5,-5.5 parent: 1668 - - uid: 4249 + - uid: 6146 components: - type: Transform - pos: -7.5,-20.5 + pos: -18.5,-5.5 parent: 1668 - - uid: 4250 + - uid: 6147 components: - type: Transform - pos: -15.5,-20.5 + pos: -18.5,-6.5 parent: 1668 - - uid: 4267 + - uid: 6148 components: - type: Transform - pos: -12.5,-21.5 + pos: -18.5,-7.5 parent: 1668 - - uid: 4268 + - uid: 6149 components: - type: Transform - pos: 11.5,-21.5 + pos: -18.5,-8.5 parent: 1668 - - uid: 4269 + - uid: 6150 components: - type: Transform - pos: -12.5,-23.5 + pos: -18.5,-9.5 parent: 1668 - - uid: 4270 + - uid: 6152 components: - type: Transform - pos: -6.5,-21.5 + pos: -20.5,-9.5 parent: 1668 - - uid: 4271 + - uid: 6154 components: - type: Transform - pos: -6.5,-22.5 + pos: -22.5,-9.5 parent: 1668 - - uid: 4272 + - uid: 6156 components: - type: Transform - pos: -6.5,-23.5 + pos: -24.5,-9.5 parent: 1668 - - uid: 4273 +- proto: WardrobePrisonFilled + entities: + - uid: 1629 components: - type: Transform - pos: -6.5,-24.5 + pos: 3.5,11.5 parent: 1668 - - uid: 4274 + - uid: 1630 components: - type: Transform - pos: -8.5,-24.5 + pos: 23.5,11.5 parent: 1668 - - uid: 4275 +- proto: WarningN2 + entities: + - uid: 3375 components: - type: Transform - pos: -8.5,-28.5 + pos: -28.5,24.5 parent: 1668 - - uid: 4276 +- proto: WarningO2 + entities: + - uid: 3371 components: - type: Transform - pos: -8.5,-29.5 + pos: -28.5,22.5 parent: 1668 - - uid: 4277 +- proto: WaterCooler + entities: + - uid: 1382 components: - type: Transform - pos: -9.5,-29.5 + pos: -7.5,3.5 parent: 1668 - - uid: 4278 + - uid: 1931 components: - type: Transform - pos: -10.5,-29.5 + pos: 33.5,18.5 parent: 1668 - - uid: 4279 + - uid: 2115 components: - type: Transform - pos: -11.5,-29.5 + pos: 20.5,16.5 parent: 1668 - - uid: 4280 + - uid: 3266 components: - type: Transform - pos: -12.5,-29.5 + pos: 13.5,9.5 parent: 1668 - - uid: 4281 + - uid: 3994 components: - type: Transform - pos: -12.5,-28.5 + pos: -7.5,29.5 parent: 1668 - - uid: 4282 + - uid: 4015 components: - type: Transform - pos: -12.5,-27.5 + pos: 1.5,18.5 parent: 1668 - - uid: 4283 + - uid: 8763 components: - type: Transform - pos: -12.5,-26.5 + pos: -47.5,-4.5 parent: 1668 - - uid: 4284 + - uid: 8776 components: - type: Transform - pos: -12.5,-25.5 + pos: -51.5,3.5 parent: 1668 - - uid: 4285 + - uid: 8777 components: - type: Transform - pos: -12.5,-24.5 + pos: -45.5,3.5 parent: 1668 - - uid: 4288 + - uid: 9098 components: - type: Transform - pos: 11.5,-29.5 + pos: -24.5,1.5 parent: 1668 - - uid: 4289 +- proto: WaterTankHighCapacity + entities: + - uid: 1031 components: - type: Transform - pos: 10.5,-29.5 + pos: 8.5,-14.5 parent: 1668 - - uid: 4290 +- proto: WaterVaporCanister + entities: + - uid: 4124 components: - type: Transform - pos: 9.5,-29.5 + pos: -20.5,29.5 parent: 1668 - - uid: 4291 +- proto: WeaponAdvancedLaser + entities: + - uid: 2396 components: - type: Transform - pos: 8.5,-29.5 + pos: 16.496824,28.712013 parent: 1668 - - uid: 4292 + - uid: 2397 components: - type: Transform - pos: 7.5,-29.5 + pos: 16.496824,28.587013 parent: 1668 - - uid: 4293 + - uid: 2398 components: - type: Transform - pos: 11.5,-28.5 + pos: 16.496824,28.430763 parent: 1668 - - uid: 4294 +- proto: WeaponCapacitorRecharger + entities: + - uid: 1151 components: - type: Transform - pos: 11.5,-27.5 + pos: 33.5,-8.5 parent: 1668 - - uid: 4295 + - uid: 1622 components: - type: Transform - pos: 11.5,-26.5 + pos: 14.5,7.5 parent: 1668 - - uid: 4296 + - uid: 1745 components: - type: Transform - pos: 11.5,-25.5 + pos: 12.5,12.5 parent: 1668 - - uid: 4297 + - uid: 2245 components: - type: Transform - pos: 11.5,-24.5 + pos: 11.5,18.5 parent: 1668 - - uid: 4298 + - uid: 2783 components: - type: Transform - pos: 11.5,-23.5 + pos: -23.5,10.5 parent: 1668 - - uid: 4300 + - uid: 2985 components: - type: Transform - pos: 7.5,-24.5 + pos: 11.5,7.5 parent: 1668 - - uid: 4301 + - uid: 4631 components: - type: Transform - pos: 5.5,-24.5 + pos: -10.5,-42.5 parent: 1668 - - uid: 4302 + - uid: 4632 components: - type: Transform - pos: 5.5,-23.5 + pos: -12.5,-42.5 parent: 1668 - - uid: 4303 + - uid: 4633 components: - type: Transform - pos: 5.5,-22.5 + pos: -12.5,-39.5 parent: 1668 - - uid: 4304 + - uid: 4634 components: - type: Transform - pos: 5.5,-21.5 + pos: -10.5,-39.5 parent: 1668 - - uid: 4330 + - uid: 4635 components: - type: Transform - pos: -2.5,-24.5 + pos: 9.5,-42.5 parent: 1668 - - uid: 4331 + - uid: 4636 components: - type: Transform - pos: -3.5,-24.5 + pos: 11.5,-42.5 parent: 1668 - - uid: 4332 + - uid: 4637 components: - type: Transform - pos: -4.5,-24.5 + pos: 11.5,-39.5 parent: 1668 - - uid: 4333 + - uid: 4638 components: - type: Transform - pos: -5.5,-24.5 + pos: 9.5,-39.5 parent: 1668 - - uid: 4335 + - uid: 6751 components: - type: Transform - pos: 1.5,-24.5 + rot: 3.141592653589793 rad + pos: -35.5,-4.5 parent: 1668 - - uid: 4336 + - uid: 7106 components: - type: Transform - pos: 2.5,-24.5 + pos: -42.5,-8.5 parent: 1668 - - uid: 4337 +- proto: WeaponDisabler + entities: + - uid: 6817 components: - type: Transform - pos: 3.5,-24.5 - parent: 1668 - - uid: 4338 + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6842 components: - type: Transform - pos: 4.5,-24.5 - parent: 1668 - - uid: 4353 + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6901 components: - type: Transform - pos: -8.5,-30.5 - parent: 1668 - - uid: 4356 + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponDisablerPractice + entities: + - uid: 4180 components: - type: Transform - pos: -4.5,-30.5 + pos: 11.414704,7.5328236 parent: 1668 - - uid: 4357 +- proto: WeaponDisablerSMG + entities: + - uid: 2220 components: - type: Transform - pos: -3.5,-30.5 + pos: 16.481405,20.689053 parent: 1668 - - uid: 4358 + - uid: 2221 components: - type: Transform - pos: -2.5,-30.5 + pos: 16.49703,20.439053 parent: 1668 - - uid: 4362 + - uid: 2222 components: - type: Transform - pos: 1.5,-30.5 + pos: 16.49703,20.564053 parent: 1668 - - uid: 4363 + - uid: 6748 components: - type: Transform - pos: 2.5,-30.5 + pos: -30.479265,-10.454217 parent: 1668 - - uid: 4364 +- proto: WeaponLaserCannon + entities: + - uid: 2393 components: - type: Transform - pos: 3.5,-30.5 + pos: 15.512449,28.868263 parent: 1668 - - uid: 4368 + - uid: 2394 components: - type: Transform - pos: 7.5,-30.5 + pos: 15.512449,28.712013 parent: 1668 - - uid: 4641 + - uid: 2395 components: - type: Transform - pos: -15.5,-27.5 + pos: 15.528074,28.602638 parent: 1668 - - uid: 4642 +- proto: WeaponLaserCarbine + entities: + - uid: 2390 components: - type: Transform - pos: -15.5,-28.5 + pos: 14.512449,28.718964 parent: 1668 - - uid: 4643 + - uid: 2391 components: - type: Transform - pos: -15.5,-23.5 + pos: 14.512449,28.593964 parent: 1668 - - uid: 4644 + - uid: 2392 components: - type: Transform - pos: -15.5,-22.5 + pos: 14.512449,28.453339 parent: 1668 - - uid: 4645 +- proto: WeaponLaserCarbinePractice + entities: + - uid: 4179 components: - type: Transform - pos: -15.5,-21.5 + pos: 11.461579,8.095324 parent: 1668 - - uid: 4646 +- proto: WeaponLaserGun + entities: + - uid: 2402 components: - type: Transform - pos: -16.5,-28.5 + pos: 11.387449,28.737816 parent: 1668 - - uid: 4647 + - uid: 2403 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-29.5 + pos: 11.387449,28.59719 parent: 1668 - - uid: 4648 + - uid: 2404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-30.5 + pos: 11.403074,28.425316 parent: 1668 - - uid: 4654 +- proto: WeaponLaserSvalinn + entities: + - uid: 2405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-34.5 + pos: 12.371824,28.800316 parent: 1668 - - uid: 4655 + - uid: 2406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-34.5 + pos: 12.371824,28.62844 parent: 1668 - - uid: 4656 + - uid: 2407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-34.5 + pos: 12.371824,28.456566 parent: 1668 - - uid: 4657 +- proto: WeaponMakeshiftLaser + entities: + - uid: 2399 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-34.5 + pos: 10.496824,28.69094 parent: 1668 - - uid: 4658 + - uid: 2400 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-34.5 + pos: 10.496824,28.612816 parent: 1668 - - uid: 4659 + - uid: 2401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-34.5 + pos: 10.496824,28.50344 parent: 1668 - - uid: 4660 +- proto: WeaponParticleDecelerator + entities: + - uid: 4683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-34.5 + pos: -30.623615,-7.8922486 parent: 1668 - - uid: 4661 +- proto: WeaponPistolN1984 + entities: + - uid: 1383 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-34.5 + pos: -11.42821,5.5092115 parent: 1668 - - uid: 4662 + - uid: 6897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-34.5 - parent: 1668 - - uid: 4666 + parent: 6884 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponPulseCarbine + entities: + - uid: 2411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-34.5 + pos: 12.5012,34.757042 parent: 1668 - - uid: 4670 + - uid: 2412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-34.5 + pos: 12.5012,34.678917 parent: 1668 - - uid: 4674 + - uid: 2413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-34.5 + pos: 12.5012,34.600792 parent: 1668 - - uid: 4675 + - uid: 2414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-34.5 + pos: 12.5012,34.507042 parent: 1668 - - uid: 4676 +- proto: WeaponPulsePistol + entities: + - uid: 2419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-34.5 + pos: 13.525505,34.760513 parent: 1668 - - uid: 4677 + - uid: 2420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-34.5 + pos: 13.53245,34.67718 parent: 1668 - - uid: 4678 + - uid: 2421 components: - type: Transform - pos: 29.5,-13.5 + pos: 13.53245,34.607735 parent: 1668 - - uid: 4679 + - uid: 2422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-34.5 + pos: 13.539394,34.51746 parent: 1668 - - uid: 4680 +- proto: WeaponRevolverMatebaAP + entities: + - uid: 2427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-34.5 + pos: 15.508711,34.772667 parent: 1668 - - uid: 4681 + - uid: 2428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-34.5 + pos: 15.508711,34.647667 parent: 1668 - - uid: 4682 + - uid: 2429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-32.5 + pos: 15.508711,34.522667 parent: 1668 - - uid: 4683 + - uid: 2430 components: - type: Transform - pos: 14.5,-33.5 + pos: 15.508711,34.397667 parent: 1668 - - uid: 4684 +- proto: WeaponRifleAk + entities: + - uid: 2330 components: - type: Transform - pos: 35.5,-18.5 + pos: 10.48632,26.788996 parent: 1668 - - uid: 4685 + - uid: 2331 components: - type: Transform - pos: 35.5,-19.5 + pos: 10.48632,26.68483 parent: 1668 - - uid: 4686 + - uid: 2332 components: - type: Transform - pos: 35.5,-20.5 + pos: 10.48632,26.549412 parent: 1668 - - uid: 4687 + - uid: 2333 components: - type: Transform - pos: 35.5,-22.5 + pos: 10.496737,26.424412 parent: 1668 - - uid: 4688 +- proto: WeaponRifleLecter + entities: + - uid: 2302 components: - type: Transform - pos: 35.5,-23.5 + pos: 10.490067,24.777998 parent: 1668 - - uid: 4689 + - uid: 2303 components: - type: Transform - pos: 35.5,-24.5 + pos: 10.490067,24.652998 parent: 1668 - - uid: 4690 + - uid: 2304 components: - type: Transform - pos: 35.5,-21.5 + pos: 10.490067,24.517582 parent: 1668 - - uid: 4691 + - uid: 2305 components: - type: Transform - pos: 35.5,-25.5 + pos: 10.490067,24.350914 parent: 1668 - - uid: 4692 + - uid: 6825 components: - type: Transform - pos: 35.5,-26.5 - parent: 1668 - - uid: 4693 + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6836 components: - type: Transform - pos: 35.5,-27.5 - parent: 1668 - - uid: 4699 + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponRifleM90GrenadeLauncher + entities: + - uid: 2573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-34.5 + pos: 10.572034,30.676907 parent: 1668 - - uid: 4700 + - uid: 2577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-34.5 + pos: 10.572034,30.794964 parent: 1668 - - uid: 4701 + - uid: 2581 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-34.5 + pos: 10.572034,30.551907 parent: 1668 - - uid: 4704 + - uid: 2590 components: - type: Transform - pos: 22.5,-33.5 + pos: 10.572034,30.38524 parent: 1668 - - uid: 4705 +- proto: WeaponShotgunEnforcer + entities: + - uid: 2358 components: - type: Transform - pos: 21.5,-33.5 + pos: 15.464579,22.856552 parent: 1668 - - uid: 4706 + - uid: 2359 components: - type: Transform - pos: 26.5,-31.5 + pos: 15.464579,22.762802 parent: 1668 - - uid: 4707 + - uid: 2360 components: - type: Transform - pos: 26.5,-32.5 + pos: 15.464579,22.648218 parent: 1668 - - uid: 4708 + - uid: 2361 components: - type: Transform - pos: 26.5,-30.5 + pos: 15.464579,22.523218 parent: 1668 - - uid: 4709 +- proto: WeaponShotgunKammerer + entities: + - uid: 2366 components: - type: Transform - pos: 26.5,-29.5 + pos: 15.495829,24.820536 parent: 1668 - - uid: 4710 + - uid: 2367 components: - type: Transform - pos: 26.5,-28.5 + pos: 15.495829,24.695536 parent: 1668 - - uid: 4717 + - uid: 2368 components: - type: Transform - pos: 20.5,-33.5 + pos: 15.495829,24.56012 parent: 1668 - - uid: 4718 + - uid: 2369 components: - type: Transform - pos: 23.5,-33.5 + pos: 15.495829,24.43512 parent: 1668 - - uid: 4719 +- proto: WeaponSubMachineGunC20r + entities: + - uid: 2452 components: - type: Transform - pos: 24.5,-33.5 + pos: 10.556818,34.725677 parent: 1668 - - uid: 4720 + - uid: 2453 components: - type: Transform - pos: 18.5,-32.5 + pos: 10.556818,34.628456 parent: 1668 - - uid: 4724 + - uid: 2454 components: - type: Transform - pos: 14.5,-21.5 + pos: 10.556818,34.531235 parent: 1668 - - uid: 4725 + - uid: 2455 components: - type: Transform - pos: 14.5,-22.5 + pos: 10.556818,34.413177 parent: 1668 - - uid: 4726 +- proto: WeaponSubMachineGunDrozd + entities: + - uid: 2259 components: - type: Transform - pos: 22.5,-27.5 + pos: 10.565318,22.826067 parent: 1668 - - uid: 4727 + - uid: 2263 components: - type: Transform - pos: 21.5,-27.5 + pos: 10.558374,22.70045 parent: 1668 - - uid: 4728 + - uid: 2267 components: - type: Transform - pos: 20.5,-27.5 + pos: 10.558374,22.45045 parent: 1668 - - uid: 4729 + - uid: 2278 components: - type: Transform - pos: 18.5,-22.5 + pos: 10.558374,22.57545 parent: 1668 - - uid: 4730 +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 2374 components: - type: Transform - pos: 18.5,-23.5 + pos: 15.516663,26.827843 parent: 1668 - - uid: 4731 + - uid: 2375 components: - type: Transform - pos: 18.5,-24.5 + pos: 15.516663,26.702843 parent: 1668 - - uid: 4732 + - uid: 2376 components: - type: Transform - pos: 19.5,-27.5 + pos: 15.516663,26.577843 parent: 1668 - - uid: 4733 + - uid: 2377 components: - type: Transform - pos: 18.5,-26.5 + pos: 15.527079,26.432009 parent: 1668 - - uid: 4734 +- proto: WeaponTaser + entities: + - uid: 1150 components: - type: Transform - pos: 18.5,-27.5 + pos: 33.496967,-8.27028 parent: 1668 - - uid: 4735 + - uid: 1729 components: - type: Transform - pos: 18.5,-28.5 + pos: 13.572582,4.6884594 parent: 1668 - - uid: 4736 + - uid: 2241 components: - type: Transform - pos: 17.5,-28.5 + pos: 10.518752,20.758615 parent: 1668 - - uid: 4737 + - uid: 2242 components: - type: Transform - pos: 16.5,-28.5 + pos: 10.518752,20.55549 parent: 1668 - - uid: 4738 + - uid: 2243 components: - type: Transform - pos: 15.5,-28.5 + pos: 10.534377,20.36799 parent: 1668 - - uid: 4739 + - uid: 2831 components: - type: Transform - pos: 14.5,-28.5 + pos: -22.555105,13.627862 parent: 1668 - - uid: 4740 + - uid: 6827 components: - type: Transform - pos: 14.5,-29.5 - parent: 1668 - - uid: 4741 + parent: 6810 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6838 components: - type: Transform - pos: 18.5,-33.5 - parent: 1668 - - uid: 4742 + parent: 6828 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponXrayCannon + entities: + - uid: 2838 components: - type: Transform - pos: 14.5,-31.5 + pos: 14.507596,34.746235 parent: 1668 - - uid: 4743 + - uid: 2913 components: - type: Transform - pos: 22.5,-26.5 + pos: 14.507596,34.65827 parent: 1668 - - uid: 4744 + - uid: 2914 components: - type: Transform - pos: 19.5,-33.5 + pos: 14.507596,34.57957 parent: 1668 - - uid: 4745 + - uid: 2916 components: - type: Transform - pos: 25.5,-33.5 + pos: 14.507596,34.500866 parent: 1668 - - uid: 4747 +- proto: WeedSpray + entities: + - uid: 1043 components: - type: Transform - pos: 22.5,-23.5 + pos: 6.2641845,-21.25511 parent: 1668 - - uid: 4748 + - uid: 1044 components: - type: Transform - pos: 22.5,-24.5 + pos: 6.4673095,-21.25511 parent: 1668 - - uid: 4758 + - uid: 1045 components: - type: Transform - pos: 15.5,-19.5 + pos: 6.3735595,-21.50511 parent: 1668 - - uid: 4759 + - uid: 1046 components: - type: Transform - pos: 17.5,-19.5 + pos: 6.5923095,-21.520735 parent: 1668 - - uid: 4760 +- proto: Welder + entities: + - uid: 3177 components: - type: Transform - pos: 18.5,-19.5 + pos: -6.5,7.5 parent: 1668 - - uid: 4761 +- proto: WeldingFuelTankFull + entities: + - uid: 4095 components: - type: Transform - pos: 18.5,-18.5 + pos: -9.5,20.5 parent: 1668 - - uid: 5041 +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 3180 components: - type: Transform - pos: 22.5,-22.5 + pos: -9.5,9.5 parent: 1668 - - uid: 5042 +- proto: WetFloorSign + entities: + - uid: 9075 components: - type: Transform - pos: 22.5,-21.5 + pos: -7.5,-8.5 parent: 1668 - - uid: 5043 +- proto: WheatBushel + entities: + - uid: 5463 components: - type: Transform - pos: 22.5,-20.5 - parent: 1668 - - uid: 5044 + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5464 components: - type: Transform - pos: 22.5,-19.5 - parent: 1668 - - uid: 5048 + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5465 components: - type: Transform - pos: 30.5,-14.5 - parent: 1668 - - uid: 5049 + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5466 components: - type: Transform - pos: 33.5,-14.5 - parent: 1668 - - uid: 5050 + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5467 components: - type: Transform - pos: 34.5,-14.5 - parent: 1668 - - uid: 5052 + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5468 components: - type: Transform - pos: 31.5,-14.5 - parent: 1668 - - uid: 5053 + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5469 components: - type: Transform - pos: 24.5,-27.5 - parent: 1668 - - uid: 5054 + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5470 components: - type: Transform - pos: 25.5,-27.5 - parent: 1668 - - uid: 5055 + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5471 components: - type: Transform - pos: 26.5,-27.5 - parent: 1668 - - uid: 5057 + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5472 components: - type: Transform - pos: 28.5,-27.5 - parent: 1668 - - uid: 5059 + parent: 5452 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Windoor + entities: + - uid: 142 components: - type: Transform - pos: 30.5,-27.5 + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 parent: 1668 - - uid: 5060 + - uid: 1933 components: - type: Transform - pos: 31.5,-27.5 + rot: 3.141592653589793 rad + pos: 33.5,23.5 parent: 1668 - - uid: 5061 +- proto: WindoorCargoLocked + entities: + - uid: 49 components: - type: Transform - pos: 32.5,-27.5 + rot: 3.141592653589793 rad + pos: 3.5,22.5 parent: 1668 - - uid: 5062 + - uid: 2989 components: - type: Transform - pos: 33.5,-27.5 + rot: 3.141592653589793 rad + pos: 2.5,22.5 parent: 1668 - - uid: 5063 +- proto: WindoorHydroponicsLocked + entities: + - uid: 969 components: - type: Transform - pos: 34.5,-27.5 + rot: 1.5707963267948966 rad + pos: 2.5,-19.5 parent: 1668 - - uid: 5102 + - uid: 970 components: - type: Transform - pos: 29.5,-15.5 + rot: 1.5707963267948966 rad + pos: 2.5,-18.5 parent: 1668 - - uid: 5103 + - uid: 971 components: - type: Transform - pos: 29.5,-19.5 + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 parent: 1668 - - uid: 5104 + - uid: 981 components: - type: Transform - pos: 28.5,-19.5 + pos: 9.5,-13.5 parent: 1668 - - uid: 5105 +- proto: WindoorKitchenLocked + entities: + - uid: 1096 components: - type: Transform - pos: 27.5,-19.5 + rot: 1.5707963267948966 rad + pos: 11.5,-19.5 parent: 1668 - - uid: 5106 + - uid: 1097 components: - type: Transform - pos: 23.5,-19.5 + rot: 1.5707963267948966 rad + pos: 11.5,-18.5 parent: 1668 - - uid: 5107 + - uid: 1098 components: - type: Transform - pos: 28.5,-20.5 + rot: 1.5707963267948966 rad + pos: 11.5,-17.5 parent: 1668 - - uid: 5113 + - uid: 1176 components: - type: Transform - pos: 28.5,-26.5 + rot: -1.5707963267948966 rad + pos: 18.5,-19.5 parent: 1668 - - uid: 5119 + - uid: 1177 components: - type: Transform - pos: 30.5,-19.5 + rot: -1.5707963267948966 rad + pos: 18.5,-18.5 parent: 1668 - - uid: 5120 + - uid: 1178 components: - type: Transform - pos: 34.5,-19.5 + rot: -1.5707963267948966 rad + pos: 18.5,-17.5 parent: 1668 - - uid: 5344 +- proto: WindoorSecureBrigLocked + entities: + - uid: 1583 components: - type: Transform - pos: 33.5,-32.5 + rot: -1.5707963267948966 rad + pos: 18.5,12.5 parent: 1668 - - uid: 5355 + - uid: 1584 components: - type: Transform - pos: 31.5,-32.5 + rot: 1.5707963267948966 rad + pos: 8.5,12.5 parent: 1668 - - uid: 5388 + - uid: 1864 components: - type: Transform - pos: 18.5,-31.5 + pos: 23.5,23.5 parent: 1668 - - uid: 5390 + - uid: 1865 components: - type: Transform - pos: 18.5,-29.5 + pos: 29.5,23.5 parent: 1668 - - uid: 5392 + - uid: 1866 components: - type: Transform - pos: 32.5,-32.5 + pos: 26.5,23.5 parent: 1668 - - uid: 5396 + - uid: 1932 components: - type: Transform - pos: 26.5,-33.5 + pos: 34.5,17.5 parent: 1668 - - uid: 5405 + - uid: 1961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-31.5 + rot: 3.141592653589793 rad + pos: 21.5,23.5 parent: 1668 - - uid: 5409 + - uid: 1974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-31.5 + rot: 3.141592653589793 rad + pos: 31.5,23.5 parent: 1668 - - uid: 5784 + - uid: 2032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-34.5 + pos: 26.5,25.5 parent: 1668 - - uid: 5864 +- proto: WindoorSecureCargoLocked + entities: + - uid: 3885 components: - type: Transform - pos: -17.5,-28.5 + rot: -1.5707963267948966 rad + pos: -3.5,31.5 parent: 1668 - - uid: 5879 +- proto: WindoorSecureCentralCommandLocked + entities: + - uid: 2903 components: - type: Transform - pos: -3.5,-39.5 + rot: -1.5707963267948966 rad + pos: -17.5,10.5 parent: 1668 - - uid: 5881 + - uid: 2904 components: - type: Transform - pos: -3.5,-40.5 + rot: -1.5707963267948966 rad + pos: -17.5,12.5 parent: 1668 - - uid: 5882 + - uid: 5923 components: - type: Transform - pos: -2.5,-38.5 + rot: -1.5707963267948966 rad + pos: -24.5,6.5 parent: 1668 - - uid: 5905 + - uid: 5924 components: - type: Transform - pos: -3.5,-38.5 + rot: -1.5707963267948966 rad + pos: -24.5,5.5 parent: 1668 - - uid: 5909 + - uid: 5925 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-34.5 + pos: -29.5,5.5 parent: 1668 - - uid: 5913 + - uid: 5926 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-34.5 + pos: -29.5,6.5 parent: 1668 - - uid: 5917 + - uid: 6006 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-30.5 + rot: -1.5707963267948966 rad + pos: -18.5,5.5 parent: 1668 - - uid: 5918 + - uid: 6007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-30.5 + rot: -1.5707963267948966 rad + pos: -18.5,6.5 parent: 1668 - - uid: 5919 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 666 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-30.5 + pos: 2.5,-11.5 parent: 1668 - - uid: 5920 + - uid: 667 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-30.5 + pos: 2.5,-9.5 parent: 1668 - - uid: 5921 + - uid: 668 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-30.5 + rot: -1.5707963267948966 rad + pos: 11.5,-11.5 parent: 1668 - - uid: 5930 + - uid: 669 components: - type: Transform - pos: -15.5,-33.5 + rot: -1.5707963267948966 rad + pos: 11.5,-10.5 parent: 1668 - - uid: 5931 + - uid: 670 components: - type: Transform - pos: -15.5,-31.5 + rot: -1.5707963267948966 rad + pos: 11.5,-9.5 parent: 1668 - - uid: 5941 + - uid: 982 components: - type: Transform - pos: -17.5,-27.5 + rot: 3.141592653589793 rad + pos: 9.5,-13.5 parent: 1668 - - uid: 5942 +- proto: WindoorSecureCommandLocked + entities: + - uid: 96 components: - type: Transform - pos: -16.5,-22.5 + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 parent: 1668 - - uid: 5943 + - uid: 9184 components: - type: Transform - pos: -17.5,-22.5 + pos: -31.5,-4.5 parent: 1668 - - uid: 5944 + - uid: 9192 components: - type: Transform - pos: -17.5,-23.5 + rot: 3.141592653589793 rad + pos: -30.5,-10.5 parent: 1668 - - uid: 5963 + - uid: 9206 components: - type: Transform - pos: -21.5,-30.5 + pos: -30.5,-4.5 parent: 1668 - - uid: 5964 + - uid: 9209 components: - type: Transform - pos: -21.5,-29.5 + rot: 3.141592653589793 rad + pos: -31.5,-10.5 parent: 1668 - - uid: 5965 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 3030 components: - type: Transform - pos: -22.5,-29.5 + rot: 3.141592653589793 rad + pos: -5.5,17.5 parent: 1668 - - uid: 5966 + - uid: 3031 components: - type: Transform - pos: -23.5,-29.5 + rot: 3.141592653589793 rad + pos: -4.5,17.5 parent: 1668 - - uid: 5967 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 550 components: - type: Transform - pos: -23.5,-21.5 + pos: 13.5,-3.5 parent: 1668 - - uid: 5968 + - uid: 551 components: - type: Transform - pos: -22.5,-21.5 + pos: 15.5,-3.5 parent: 1668 - - uid: 5969 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 557 components: - type: Transform - pos: -21.5,-21.5 + rot: 3.141592653589793 rad + pos: 13.5,2.5 parent: 1668 - - uid: 5970 + - uid: 558 components: - type: Transform - pos: -17.5,-21.5 + rot: 3.141592653589793 rad + pos: 15.5,2.5 parent: 1668 - - uid: 5971 + - uid: 586 components: - type: Transform - pos: -16.5,-21.5 + rot: 1.5707963267948966 rad + pos: 11.5,4.5 parent: 1668 - - uid: 5972 + - uid: 1132 components: - type: Transform - pos: -23.5,-28.5 + rot: -1.5707963267948966 rad + pos: 32.5,-11.5 parent: 1668 - - uid: 5973 + - uid: 1133 components: - type: Transform - pos: -23.5,-22.5 + rot: -1.5707963267948966 rad + pos: 32.5,-10.5 parent: 1668 - - uid: 5974 + - uid: 1585 components: - type: Transform - pos: -21.5,-28.5 + rot: 1.5707963267948966 rad + pos: 18.5,12.5 parent: 1668 - - uid: 5975 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 1586 components: - type: Transform - pos: -21.5,-22.5 + rot: -1.5707963267948966 rad + pos: 8.5,12.5 parent: 1668 - - uid: 6101 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 1616 components: - type: Transform - pos: 28.5,-32.5 + pos: 12.5,13.5 parent: 1668 - - uid: 6233 + - uid: 1617 components: - type: Transform - pos: -6.5,-35.5 + pos: 13.5,13.5 parent: 1668 - - uid: 6234 + - uid: 1618 components: - type: Transform - pos: -6.5,-36.5 + pos: 14.5,13.5 parent: 1668 - - uid: 6235 + - uid: 1975 components: - type: Transform - pos: -6.5,-37.5 + pos: 26.5,19.5 parent: 1668 - - uid: 6236 + - uid: 2104 components: - type: Transform - pos: -6.5,-38.5 + rot: 1.5707963267948966 rad + pos: 8.5,8.5 parent: 1668 - - uid: 6237 + - uid: 3721 components: - type: Transform - pos: -5.5,-38.5 + rot: 1.5707963267948966 rad + pos: 8.5,7.5 parent: 1668 - - uid: 6238 +- proto: Window + entities: + - uid: 6151 components: - type: Transform - pos: -4.5,-38.5 + pos: -23.5,-9.5 parent: 1668 - - uid: 6241 + - uid: 6155 components: - type: Transform - pos: 1.5,-38.5 + pos: -19.5,-9.5 parent: 1668 - - uid: 6242 +- proto: WindowReinforcedDirectional + entities: + - uid: 485 components: - type: Transform - pos: 2.5,-38.5 + pos: 25.5,6.5 parent: 1668 - - uid: 6246 + - uid: 487 components: - type: Transform - pos: 3.5,-38.5 + pos: 26.5,6.5 parent: 1668 - - uid: 6247 + - uid: 488 components: - type: Transform - pos: 4.5,-38.5 + pos: 27.5,6.5 parent: 1668 - - uid: 6248 + - uid: 582 components: - type: Transform - pos: 5.5,-38.5 + rot: -1.5707963267948966 rad + pos: 11.5,5.5 parent: 1668 - - uid: 6249 + - uid: 583 components: - type: Transform - pos: 5.5,-37.5 + pos: 11.5,5.5 parent: 1668 - - uid: 6250 + - uid: 584 components: - type: Transform - pos: 5.5,-36.5 + rot: -1.5707963267948966 rad + pos: 11.5,3.5 parent: 1668 - - uid: 6251 + - uid: 585 components: - type: Transform - pos: 5.5,-35.5 + rot: 3.141592653589793 rad + pos: 11.5,3.5 parent: 1668 - - uid: 6271 + - uid: 787 components: - type: Transform - pos: -2.5,-40.5 + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 parent: 1668 - - uid: 6272 + - uid: 832 components: - type: Transform - pos: 2.5,-39.5 + rot: 1.5707963267948966 rad + pos: 11.5,-6.5 parent: 1668 - - uid: 6273 + - uid: 833 components: - type: Transform - pos: 2.5,-40.5 + rot: 1.5707963267948966 rad + pos: 18.5,-13.5 parent: 1668 - - uid: 6274 + - uid: 949 components: - type: Transform - pos: 1.5,-40.5 + rot: -1.5707963267948966 rad + pos: 2.5,-22.5 parent: 1668 - - uid: 6292 + - uid: 950 components: - type: Transform - pos: -3.5,-44.5 + rot: -1.5707963267948966 rad + pos: 2.5,-21.5 parent: 1668 - - uid: 6293 + - uid: 951 components: - type: Transform - pos: -3.5,-45.5 + rot: -1.5707963267948966 rad + pos: 2.5,-20.5 parent: 1668 - - uid: 6294 + - uid: 956 components: - type: Transform - pos: -3.5,-46.5 + rot: 1.5707963267948966 rad + pos: 2.5,-22.5 parent: 1668 - - uid: 6297 + - uid: 957 components: - type: Transform - pos: 2.5,-44.5 + pos: 2.5,-16.5 parent: 1668 - - uid: 6298 + - uid: 958 components: - type: Transform - pos: 2.5,-45.5 + rot: 1.5707963267948966 rad + pos: 2.5,-21.5 parent: 1668 - - uid: 6299 + - uid: 959 components: - type: Transform - pos: 2.5,-46.5 + rot: 1.5707963267948966 rad + pos: 2.5,-15.5 parent: 1668 - - uid: 6361 + - uid: 960 components: - type: Transform - pos: -4.5,-44.5 + rot: 3.141592653589793 rad + pos: 2.5,-20.5 parent: 1668 - - uid: 6362 + - uid: 961 components: - type: Transform - pos: -5.5,-44.5 + rot: 1.5707963267948966 rad + pos: 2.5,-20.5 parent: 1668 - - uid: 6363 + - uid: 962 components: - type: Transform - pos: -6.5,-44.5 + rot: 1.5707963267948966 rad + pos: 2.5,-14.5 parent: 1668 - - uid: 6364 + - uid: 963 components: - type: Transform - pos: -7.5,-44.5 + rot: -1.5707963267948966 rad + pos: 2.5,-15.5 parent: 1668 - - uid: 6365 + - uid: 964 components: - type: Transform - pos: -7.5,-43.5 + rot: 1.5707963267948966 rad + pos: 2.5,-16.5 parent: 1668 - - uid: 6366 + - uid: 965 components: - type: Transform - pos: -7.5,-42.5 + rot: -1.5707963267948966 rad + pos: 2.5,-14.5 parent: 1668 - - uid: 6367 + - uid: 966 components: - type: Transform - pos: -7.5,-41.5 + rot: -1.5707963267948966 rad + pos: 2.5,-16.5 parent: 1668 - - uid: 6368 + - uid: 967 components: - type: Transform - pos: -7.5,-40.5 + pos: 2.5,-22.5 parent: 1668 - - uid: 6369 + - uid: 1126 components: - type: Transform - pos: -7.5,-39.5 + rot: -1.5707963267948966 rad + pos: 32.5,-9.5 parent: 1668 - - uid: 6370 + - uid: 1127 components: - type: Transform - pos: -7.5,-38.5 + rot: -1.5707963267948966 rad + pos: 32.5,-12.5 parent: 1668 - - uid: 6371 + - uid: 1136 components: - type: Transform - pos: -7.5,-37.5 + rot: 3.141592653589793 rad + pos: 32.5,-12.5 parent: 1668 - - uid: 6372 + - uid: 1137 components: - type: Transform - pos: -7.5,-36.5 + pos: 32.5,-9.5 parent: 1668 - - uid: 6373 + - uid: 1246 components: - type: Transform - pos: -7.5,-35.5 + pos: 30.5,-24.5 parent: 1668 - - uid: 6374 + - uid: 1247 components: - type: Transform - pos: 6.5,-35.5 + rot: 3.141592653589793 rad + pos: 30.5,-18.5 parent: 1668 - - uid: 6375 + - uid: 1730 components: - type: Transform - pos: 6.5,-36.5 + rot: 3.141592653589793 rad + pos: 21.5,12.5 parent: 1668 - - uid: 6376 + - uid: 1731 components: - type: Transform - pos: 6.5,-37.5 + rot: 3.141592653589793 rad + pos: 5.5,12.5 parent: 1668 - - uid: 6377 + - uid: 1848 components: - type: Transform - pos: 6.5,-38.5 + pos: 25.5,23.5 parent: 1668 - - uid: 6378 + - uid: 1849 components: - type: Transform - pos: 6.5,-39.5 + pos: 27.5,23.5 parent: 1668 - - uid: 6379 + - uid: 1850 components: - type: Transform - pos: 6.5,-40.5 + rot: -1.5707963267948966 rad + pos: 25.5,23.5 parent: 1668 - - uid: 6380 + - uid: 1851 components: - type: Transform - pos: 6.5,-41.5 + rot: -1.5707963267948966 rad + pos: 25.5,24.5 parent: 1668 - - uid: 6381 + - uid: 1852 components: - type: Transform - pos: 6.5,-42.5 + rot: 1.5707963267948966 rad + pos: 27.5,23.5 parent: 1668 - - uid: 6382 + - uid: 1853 components: - type: Transform - pos: 6.5,-43.5 + rot: 1.5707963267948966 rad + pos: 27.5,24.5 parent: 1668 - - uid: 6383 + - uid: 1854 components: - type: Transform - pos: 6.5,-44.5 + pos: 28.5,23.5 parent: 1668 - - uid: 6384 + - uid: 1855 components: - type: Transform - pos: 5.5,-44.5 + pos: 24.5,23.5 parent: 1668 - - uid: 6385 + - uid: 1856 components: - type: Transform - pos: 4.5,-44.5 + pos: 24.5,25.5 parent: 1668 - - uid: 6386 + - uid: 1857 components: - type: Transform - pos: 3.5,-44.5 + pos: 28.5,25.5 parent: 1668 - - uid: 6387 + - uid: 1858 components: - type: Transform - pos: 2.5,-43.5 + pos: 29.5,25.5 parent: 1668 - - uid: 6388 + - uid: 1859 components: - type: Transform - pos: 2.5,-41.5 + pos: 23.5,25.5 parent: 1668 - - uid: 6389 + - uid: 1860 components: - type: Transform - pos: -3.5,-43.5 + rot: -1.5707963267948966 rad + pos: 30.5,24.5 parent: 1668 - - uid: 6390 + - uid: 1861 components: - type: Transform - pos: -3.5,-41.5 + rot: 1.5707963267948966 rad + pos: 22.5,24.5 parent: 1668 - - uid: 6534 + - uid: 1911 components: - type: Transform - pos: 7.5,-35.5 + pos: 24.5,19.5 parent: 1668 - - uid: 6535 + - uid: 1929 components: - type: Transform - pos: 8.5,-35.5 + rot: 3.141592653589793 rad + pos: 34.5,23.5 parent: 1668 - - uid: 6536 + - uid: 1934 components: - type: Transform - pos: 9.5,-35.5 + pos: 25.5,19.5 parent: 1668 - - uid: 6537 + - uid: 1935 components: - type: Transform - pos: 10.5,-35.5 + pos: 23.5,19.5 parent: 1668 - - uid: 6538 + - uid: 1936 components: - type: Transform - pos: 11.5,-35.5 + pos: 27.5,19.5 parent: 1668 - - uid: 6539 + - uid: 1937 components: - type: Transform - pos: 12.5,-35.5 + pos: 28.5,19.5 parent: 1668 - - uid: 6540 + - uid: 1938 components: - type: Transform - pos: 13.5,-35.5 + pos: 29.5,19.5 parent: 1668 - - uid: 6541 + - uid: 1939 components: - type: Transform - pos: 14.5,-35.5 + pos: 30.5,19.5 parent: 1668 - - uid: 6542 + - uid: 1940 components: - type: Transform - pos: 15.5,-35.5 + pos: 31.5,19.5 parent: 1668 - - uid: 6543 + - uid: 1941 components: - type: Transform - pos: 15.5,-34.5 + pos: 22.5,19.5 parent: 1668 - - uid: 6544 + - uid: 1944 components: - type: Transform - pos: 15.5,-33.5 + pos: 21.5,19.5 parent: 1668 - - uid: 6545 + - uid: 1957 components: - type: Transform - pos: 16.5,-33.5 + rot: 1.5707963267948966 rad + pos: 20.5,22.5 parent: 1668 - - uid: 6546 + - uid: 1958 components: - type: Transform - pos: 17.5,-33.5 + rot: 1.5707963267948966 rad + pos: 20.5,21.5 parent: 1668 - - uid: 6772 + - uid: 1959 components: - type: Transform - pos: 27.5,-32.5 + rot: 1.5707963267948966 rad + pos: 20.5,20.5 parent: 1668 - - uid: 6778 + - uid: 2030 components: - type: Transform - pos: 30.5,-32.5 + pos: 27.5,25.5 parent: 1668 - - uid: 6785 + - uid: 2031 components: - type: Transform - pos: 29.5,-32.5 + pos: 25.5,25.5 parent: 1668 - - uid: 6788 + - uid: 2621 components: - type: Transform - pos: 29.5,-27.5 + rot: 1.5707963267948966 rad + pos: -3.5,12.5 parent: 1668 - - uid: 6842 + - uid: 2727 components: - type: Transform - pos: 34.5,-32.5 + rot: 3.141592653589793 rad + pos: -6.5,6.5 parent: 1668 -- proto: WardrobeCargoFilled - entities: - - uid: 2208 + - uid: 2736 components: - type: Transform - pos: -5.5,19.5 + rot: 3.141592653589793 rad + pos: -5.5,6.5 parent: 1668 -- proto: WardrobePrisonFilled - entities: - - uid: 2765 + - uid: 2896 components: - type: Transform - pos: 15.5,21.5 + rot: -1.5707963267948966 rad + pos: -17.5,9.5 parent: 1668 - - uid: 2773 + - uid: 2901 components: - type: Transform - pos: 15.5,24.5 + rot: -1.5707963267948966 rad + pos: -17.5,11.5 parent: 1668 - - uid: 2871 + - uid: 2902 components: - type: Transform - pos: 2.5,24.5 + rot: -1.5707963267948966 rad + pos: -17.5,13.5 parent: 1668 - - uid: 2872 + - uid: 3012 components: - type: Transform - pos: 2.5,27.5 + rot: -1.5707963267948966 rad + pos: -3.5,8.5 parent: 1668 - - uid: 2873 + - uid: 3013 components: - type: Transform - pos: 15.5,27.5 + rot: -1.5707963267948966 rad + pos: -3.5,9.5 parent: 1668 -- proto: WarpPoint - entities: - - uid: 6637 + - uid: 3014 components: - type: Transform - pos: -0.5,3.5 + rot: -1.5707963267948966 rad + pos: -3.5,11.5 parent: 1668 - - type: WarpPoint - location: Centcomm -- proto: WaterCooler - entities: - - uid: 5318 + - uid: 3015 components: - type: Transform - pos: 27.5,-20.5 + rot: -1.5707963267948966 rad + pos: -3.5,12.5 parent: 1668 -- proto: WaterTankFull - entities: - - uid: 128 + - uid: 3194 components: - type: Transform - pos: -27.5,2.5 + rot: 1.5707963267948966 rad + pos: -3.5,11.5 parent: 1668 - - uid: 2042 + - uid: 3195 components: - type: Transform - pos: -1.5,18.5 + rot: 1.5707963267948966 rad + pos: -3.5,9.5 parent: 1668 -- proto: WeaponAdvancedLaser - entities: - - uid: 3130 + - uid: 3196 components: - type: Transform - pos: 10.557603,32.615883 + rot: 1.5707963267948966 rad + pos: -3.5,8.5 parent: 1668 - - uid: 3131 + - uid: 3233 components: - type: Transform - pos: 10.604478,32.490883 + pos: -5.5,6.5 parent: 1668 - - uid: 3132 + - uid: 3235 components: - type: Transform - pos: 10.651353,32.365883 + pos: -6.5,6.5 parent: 1668 -- proto: WeaponCapacitorRecharger - entities: - - uid: 1446 + - uid: 3521 components: - type: Transform - pos: 2.5,-2.5 + rot: 1.5707963267948966 rad + pos: -2.5,21.5 parent: 1668 - - uid: 1447 + - uid: 3531 components: - type: Transform - pos: 10.5,3.5 + rot: -1.5707963267948966 rad + pos: -2.5,21.5 parent: 1668 - - uid: 1449 + - uid: 3536 components: - type: Transform - pos: -6.5,-13.5 + rot: -1.5707963267948966 rad + pos: -2.5,19.5 parent: 1668 - - uid: 2471 + - uid: 3722 components: - type: Transform - pos: 23.5,15.5 + rot: -1.5707963267948966 rad + pos: -23.5,-31.5 parent: 1668 - - uid: 2747 + - uid: 4081 components: - type: Transform - pos: 8.5,17.5 + rot: 1.5707963267948966 rad + pos: -2.5,19.5 parent: 1668 - - uid: 2824 + - uid: 4168 components: - type: Transform - pos: 10.5,27.5 + rot: -1.5707963267948966 rad + pos: -3.5,-22.5 parent: 1668 - - uid: 3261 + - uid: 4169 components: - type: Transform - pos: 8.5,23.5 + rot: -1.5707963267948966 rad + pos: -3.5,-21.5 parent: 1668 - - uid: 3734 + - uid: 4170 components: - type: Transform - pos: -26.5,9.5 + rot: -1.5707963267948966 rad + pos: -3.5,-20.5 parent: 1668 - - uid: 3859 + - uid: 4184 components: - type: Transform - pos: -17.5,-3.5 + rot: 1.5707963267948966 rad + pos: 11.5,7.5 parent: 1668 - - uid: 4695 + - uid: 4185 components: - type: Transform - pos: 24.5,-9.5 + rot: 1.5707963267948966 rad + pos: 11.5,8.5 parent: 1668 -- proto: WeaponDisabler - entities: - - uid: 4697 + - uid: 4186 components: - type: Transform - pos: 20.88646,-10.507892 + rot: 1.5707963267948966 rad + pos: 11.5,9.5 parent: 1668 -- proto: WeaponPistolN1984 - entities: - - uid: 3774 + - uid: 4187 components: - type: Transform - pos: -12.4228115,-9.521386 + rot: 3.141592653589793 rad + pos: 11.5,9.5 parent: 1668 - - uid: 3894 + - uid: 4795 components: - type: Transform - pos: -12.346658,4.475792 + rot: 3.141592653589793 rad + pos: -11.5,-38.5 parent: 1668 -- proto: WeaponPulseCarbine - entities: - - uid: 2202 + - uid: 4796 components: - type: Transform - pos: 6.5531197,32.415283 + rot: 3.141592653589793 rad + pos: 10.5,-38.5 parent: 1668 - - uid: 2203 + - uid: 5510 components: - type: Transform - pos: 6.5062447,32.64966 + rot: -1.5707963267948966 rad + pos: -27.5,-31.5 parent: 1668 - - uid: 3124 + - uid: 5511 components: - type: Transform - pos: 12.544843,32.634033 + rot: -1.5707963267948966 rad + pos: -27.5,-32.5 parent: 1668 - - uid: 3125 + - uid: 5514 components: - type: Transform - pos: 12.669843,32.477783 + rot: -1.5707963267948966 rad + pos: -27.5,-30.5 parent: 1668 -- proto: WeaponPulsePistol - entities: - - uid: 4389 + - uid: 5517 components: - type: Transform - pos: 5.546056,32.663063 + rot: -1.5707963267948966 rad + pos: -23.5,-30.5 parent: 1668 - - uid: 4390 + - uid: 5518 components: - type: Transform - pos: 5.686681,32.522438 + rot: -1.5707963267948966 rad + pos: -23.5,-32.5 parent: 1668 - - uid: 4721 + - uid: 5522 components: - type: Transform - pos: 13.653802,32.491188 + rot: -1.5707963267948966 rad + pos: -27.5,-22.5 parent: 1668 - - uid: 4722 + - uid: 5523 components: - type: Transform - pos: 13.481927,32.663063 + rot: -1.5707963267948966 rad + pos: -15.5,-22.5 parent: 1668 -- proto: WeaponRevolverMateba - entities: - - uid: 1436 + - uid: 5525 components: - type: Transform - pos: 2.4898672,30.350563 + rot: -1.5707963267948966 rad + pos: -7.5,-20.5 parent: 1668 - - uid: 1445 + - uid: 5541 components: - type: Transform - pos: 2.6461172,30.288063 + rot: -1.5707963267948966 rad + pos: -19.5,-20.5 parent: 1668 - - uid: 1456 + - uid: 5542 components: - type: Transform - pos: 16.456459,30.319313 + rot: -1.5707963267948966 rad + pos: -27.5,-21.5 parent: 1668 - - uid: 6611 + - uid: 5544 components: - type: Transform - pos: 16.628334,30.272438 + rot: -1.5707963267948966 rad + pos: -27.5,-20.5 parent: 1668 -- proto: WeaponSniperHristov - entities: - - uid: 3138 + - uid: 5545 components: - type: Transform - pos: 8.479478,29.789814 + rot: -1.5707963267948966 rad + pos: -23.5,-21.5 parent: 1668 -- proto: WeaponSubMachineGunAtreides - entities: - - uid: 6603 + - uid: 5547 components: - type: Transform - pos: 8.51666,29.42835 + rot: -1.5707963267948966 rad + pos: -23.5,-20.5 parent: 1668 -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 3895 + - uid: 5548 components: - type: Transform - pos: -13.438182,-3.4256558 + rot: -1.5707963267948966 rad + pos: -23.5,-22.5 parent: 1668 -- proto: WeaponTaser - entities: - - uid: 79 + - uid: 5551 components: - type: Transform - pos: 10.5444565,3.9803991 + rot: -1.5707963267948966 rad + pos: -19.5,-21.5 parent: 1668 - - uid: 1459 + - uid: 5552 components: - type: Transform - pos: -4.4574313,-9.606358 + rot: -1.5707963267948966 rad + pos: -15.5,-21.5 parent: 1668 - - uid: 3727 + - uid: 5553 components: - type: Transform - pos: -25.555511,12.593331 + rot: -1.5707963267948966 rad + pos: -19.5,-22.5 parent: 1668 - - uid: 6780 + - uid: 5571 components: - type: Transform - pos: 26.613934,-11.4401045 + rot: -1.5707963267948966 rad + pos: -11.5,-22.5 parent: 1668 -- proto: WeaponXrayCannon - entities: - - uid: 3136 + - uid: 5572 components: - type: Transform - pos: 8.510728,32.664814 + rot: -1.5707963267948966 rad + pos: -15.5,-20.5 parent: 1668 - - uid: 3137 + - uid: 5573 components: - type: Transform - pos: 8.526353,32.55544 + rot: -1.5707963267948966 rad + pos: -11.5,-21.5 parent: 1668 -- proto: WelderExperimental - entities: - - uid: 3699 + - uid: 5604 components: - type: Transform - pos: -16.435745,6.6259594 + rot: -1.5707963267948966 rad + pos: -7.5,-22.5 parent: 1668 - - uid: 4394 + - uid: 5605 components: - type: Transform - pos: 21.568373,-15.468605 + rot: -1.5707963267948966 rad + pos: -11.5,-20.5 parent: 1668 -- proto: WelderIndustrial - entities: - - uid: 5374 + - uid: 5606 components: - type: Transform - pos: 26.560297,-23.266705 + rot: -1.5707963267948966 rad + pos: -7.5,-21.5 parent: 1668 -- proto: WelderIndustrialAdvanced - entities: - - uid: 2196 + - uid: 5658 components: - type: Transform - pos: -1.3562617,24.407354 + rot: 1.5707963267948966 rad + pos: -11.5,-22.5 parent: 1668 -- proto: WeldingFuelTankFull - entities: - - uid: 127 + - uid: 5659 components: - type: Transform - pos: -26.5,6.5 + rot: 1.5707963267948966 rad + pos: -11.5,-21.5 parent: 1668 - - uid: 2041 + - uid: 5660 components: - type: Transform - pos: 0.5,18.5 + rot: 1.5707963267948966 rad + pos: -7.5,-22.5 parent: 1668 -- proto: WeldingFuelTankHighCapacity - entities: - - uid: 6843 + - uid: 5661 components: - type: Transform - pos: 26.5,-13.5 + rot: 1.5707963267948966 rad + pos: -7.5,-20.5 parent: 1668 - - uid: 6844 + - uid: 5662 components: - type: Transform - pos: 25.5,-13.5 + rot: 1.5707963267948966 rad + pos: -7.5,-21.5 parent: 1668 -- proto: WetFloorSign - entities: - - uid: 5883 + - uid: 5663 components: - type: Transform - pos: -17.066446,-31.95819 + rot: 1.5707963267948966 rad + pos: -3.5,-20.5 parent: 1668 -- proto: Windoor - entities: - - uid: 563 + - uid: 5664 components: - type: Transform - pos: 12.5,2.5 + rot: 1.5707963267948966 rad + pos: -3.5,-21.5 parent: 1668 - - uid: 564 + - uid: 5665 components: - type: Transform - pos: 14.5,2.5 + rot: 1.5707963267948966 rad + pos: -3.5,-22.5 parent: 1668 - - uid: 2409 + - uid: 5862 components: - type: Transform - pos: 25.5,20.5 + rot: 1.5707963267948966 rad + pos: -11.5,-20.5 parent: 1668 - - uid: 2410 + - uid: 5863 components: - type: Transform - pos: 31.5,20.5 + rot: 1.5707963267948966 rad + pos: -15.5,-22.5 parent: 1668 - - uid: 2710 + - uid: 5864 components: - type: Transform - pos: 9.5,16.5 + rot: 1.5707963267948966 rad + pos: -15.5,-21.5 parent: 1668 - - uid: 4255 + - uid: 5865 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-16.5 + rot: 1.5707963267948966 rad + pos: -15.5,-20.5 parent: 1668 - - uid: 6848 + - uid: 5866 components: - type: Transform - pos: 3.5,-17.5 + rot: 1.5707963267948966 rad + pos: -19.5,-22.5 parent: 1668 -- proto: WindoorBarLocked - entities: - - uid: 4410 + - uid: 5867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-28.5 + rot: 1.5707963267948966 rad + pos: -19.5,-21.5 parent: 1668 -- proto: WindoorSecure - entities: - - uid: 2345 + - uid: 5868 components: - type: Transform - pos: 34.5,14.5 + rot: 1.5707963267948966 rad + pos: -19.5,-20.5 parent: 1668 - - uid: 3760 + - uid: 5869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,11.5 + rot: 1.5707963267948966 rad + pos: -23.5,-22.5 parent: 1668 - - uid: 3761 + - uid: 5870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,9.5 + rot: 1.5707963267948966 rad + pos: -23.5,-21.5 parent: 1668 -- proto: WindoorSecureArmoryLocked - entities: - - uid: 2554 + - uid: 5871 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,16.5 + rot: 1.5707963267948966 rad + pos: -23.5,-20.5 parent: 1668 -- proto: WindoorSecureBrigLocked - entities: - - uid: 2425 + - uid: 5872 components: - type: Transform - pos: 28.5,20.5 + rot: 1.5707963267948966 rad + pos: -27.5,-22.5 parent: 1668 -- proto: WindoorSecureCargoLocked - entities: - - uid: 1621 + - uid: 5873 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,9.5 + pos: -27.5,-21.5 parent: 1668 - - uid: 1622 + - uid: 5874 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,10.5 + pos: -27.5,-20.5 parent: 1668 -- proto: WindoorSecureChemistryLocked - entities: - - uid: 5398 + - uid: 5881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-12.5 + rot: 1.5707963267948966 rad + pos: -23.5,-30.5 parent: 1668 - - uid: 5401 + - uid: 5888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-11.5 + rot: 1.5707963267948966 rad + pos: -23.5,-31.5 parent: 1668 -- proto: WindoorSecureCommandLocked - entities: - - uid: 4230 + - uid: 5889 components: - type: Transform - pos: -12.5,-3.5 + rot: 1.5707963267948966 rad + pos: -23.5,-32.5 parent: 1668 - - uid: 4231 + - uid: 5890 components: - type: Transform - pos: -13.5,-3.5 + rot: 1.5707963267948966 rad + pos: -27.5,-32.5 parent: 1668 - - uid: 4232 + - uid: 5891 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-9.5 + rot: 1.5707963267948966 rad + pos: -27.5,-31.5 parent: 1668 - - uid: 4233 + - uid: 5892 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-9.5 + rot: 1.5707963267948966 rad + pos: -27.5,-30.5 parent: 1668 -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 4757 + - uid: 6001 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-22.5 + pos: -17.5,4.5 parent: 1668 -- proto: WindoorSecureMedicalLocked - entities: - - uid: 1198 + - uid: 6003 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-15.5 + rot: -1.5707963267948966 rad + pos: -18.5,7.5 parent: 1668 -- proto: WindoorSecureSecurityLocked - entities: - - uid: 497 + - uid: 6004 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-7.5 + pos: -18.5,4.5 parent: 1668 - - uid: 561 + - uid: 6005 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,2.5 + rot: -1.5707963267948966 rad + pos: -18.5,4.5 parent: 1668 - - uid: 562 + - uid: 7392 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,2.5 + rot: -1.5707963267948966 rad + pos: -31.5,-22.5 parent: 1668 - - uid: 790 + - uid: 7393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 + rot: -1.5707963267948966 rad + pos: -31.5,-21.5 parent: 1668 - - uid: 791 + - uid: 7394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-12.5 + rot: -1.5707963267948966 rad + pos: -31.5,-20.5 parent: 1668 -- proto: WindowReinforcedDirectional - entities: - - uid: 485 + - uid: 7395 components: - type: Transform - pos: 25.5,6.5 + rot: -1.5707963267948966 rad + pos: -35.5,-22.5 parent: 1668 - - uid: 487 + - uid: 7396 components: - type: Transform - pos: 26.5,6.5 + rot: -1.5707963267948966 rad + pos: -35.5,-21.5 parent: 1668 - - uid: 488 + - uid: 7397 components: - type: Transform - pos: 27.5,6.5 + rot: -1.5707963267948966 rad + pos: -35.5,-20.5 parent: 1668 - - uid: 490 + - uid: 7398 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-7.5 + rot: -1.5707963267948966 rad + pos: -39.5,-22.5 parent: 1668 - - uid: 496 + - uid: 7399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-7.5 + rot: -1.5707963267948966 rad + pos: -39.5,-21.5 parent: 1668 - - uid: 619 + - uid: 7400 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-7.5 + pos: -39.5,-20.5 parent: 1668 - - uid: 626 + - uid: 7401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-7.5 + rot: -1.5707963267948966 rad + pos: -39.5,-32.5 parent: 1668 - - uid: 1086 + - uid: 7402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-9.5 + rot: -1.5707963267948966 rad + pos: -39.5,-31.5 parent: 1668 - - uid: 1087 + - uid: 7403 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-9.5 + pos: -39.5,-30.5 parent: 1668 - - uid: 1197 + - uid: 7404 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-15.5 + rot: -1.5707963267948966 rad + pos: -35.5,-32.5 parent: 1668 - - uid: 2395 + - uid: 7405 components: - type: Transform - pos: 26.5,22.5 + rot: -1.5707963267948966 rad + pos: -35.5,-31.5 parent: 1668 - - uid: 2396 + - uid: 7406 components: - type: Transform - pos: 25.5,22.5 + rot: -1.5707963267948966 rad + pos: -35.5,-30.5 parent: 1668 - - uid: 2397 + - uid: 7407 components: - type: Transform - pos: 31.5,22.5 + rot: -1.5707963267948966 rad + pos: -31.5,-32.5 parent: 1668 - - uid: 2398 + - uid: 7408 components: - type: Transform - pos: 30.5,22.5 + rot: -1.5707963267948966 rad + pos: -31.5,-31.5 parent: 1668 - - uid: 2399 + - uid: 7409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,21.5 + rot: -1.5707963267948966 rad + pos: -31.5,-30.5 parent: 1668 - - uid: 2400 + - uid: 7410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,21.5 + rot: 1.5707963267948966 rad + pos: -31.5,-30.5 parent: 1668 - - uid: 2401 + - uid: 7411 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,20.5 + pos: -31.5,-31.5 parent: 1668 - - uid: 2402 + - uid: 7412 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,21.5 + pos: -31.5,-32.5 parent: 1668 - - uid: 2403 + - uid: 7413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,20.5 + rot: 1.5707963267948966 rad + pos: -35.5,-32.5 parent: 1668 - - uid: 2404 + - uid: 7414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,21.5 + rot: 1.5707963267948966 rad + pos: -35.5,-31.5 parent: 1668 - - uid: 2405 + - uid: 7415 components: - type: Transform - pos: 27.5,20.5 + rot: 1.5707963267948966 rad + pos: -35.5,-30.5 parent: 1668 - - uid: 2406 + - uid: 7416 components: - type: Transform - pos: 29.5,20.5 + rot: 1.5707963267948966 rad + pos: -39.5,-32.5 parent: 1668 - - uid: 2407 + - uid: 7417 components: - type: Transform - pos: 30.5,20.5 + rot: 1.5707963267948966 rad + pos: -39.5,-31.5 parent: 1668 - - uid: 2408 + - uid: 7418 components: - type: Transform - pos: 26.5,20.5 + rot: 1.5707963267948966 rad + pos: -39.5,-30.5 parent: 1668 - - uid: 2440 + - uid: 7419 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-15.5 + pos: -39.5,-22.5 parent: 1668 - - uid: 3757 + - uid: 7420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,8.5 + rot: 1.5707963267948966 rad + pos: -39.5,-21.5 parent: 1668 - - uid: 3758 + - uid: 7421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,12.5 + rot: 1.5707963267948966 rad + pos: -39.5,-20.5 parent: 1668 - - uid: 3759 + - uid: 7422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,10.5 + rot: 1.5707963267948966 rad + pos: -35.5,-22.5 parent: 1668 - - uid: 3892 + - uid: 7423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-3.5 + rot: 1.5707963267948966 rad + pos: -35.5,-21.5 parent: 1668 - - uid: 3893 + - uid: 7424 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-3.5 + pos: -35.5,-20.5 parent: 1668 - - uid: 4254 + - uid: 7425 components: - type: Transform - pos: 2.5,-17.5 + rot: 1.5707963267948966 rad + pos: -31.5,-22.5 parent: 1668 - - uid: 4411 + - uid: 7426 components: - type: Transform - pos: 7.5,-27.5 + rot: 1.5707963267948966 rad + pos: -31.5,-21.5 parent: 1668 - - uid: 5217 + - uid: 7427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-15.5 + rot: 1.5707963267948966 rad + pos: -31.5,-20.5 parent: 1668 - - uid: 5219 + - uid: 9188 components: - type: Transform - pos: 4.5,-17.5 + rot: -1.5707963267948966 rad + pos: -31.5,-10.5 parent: 1668 - - uid: 5453 + - uid: 9190 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-17.5 + pos: -30.5,-4.5 parent: 1668 - - uid: 5454 + - uid: 9194 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-16.5 + pos: -30.5,-10.5 parent: 1668 - - uid: 5928 + - uid: 9204 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-31.5 + pos: -31.5,-4.5 parent: 1668 - - uid: 5929 +- proto: Wirecutter + entities: + - uid: 3176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-32.5 + pos: -5.5,7.5 parent: 1668 - - uid: 6787 +- proto: WoodDoor + entities: + - uid: 6181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-17.5 + pos: -21.5,-9.5 parent: 1668 - proto: Wrench entities: - - uid: 6720 + - uid: 793 + components: + - type: Transform + pos: 19.579744,-8.396848 + parent: 1668 + - uid: 3174 components: - type: Transform - pos: 9.506623,-4.4162817 + pos: -7.5,7.5 parent: 1668 ... diff --git a/Resources/Maps/convex.yml b/Resources/Maps/convex.yml index 4ca2ccdc893..460c6e68a2c 100644 --- a/Resources/Maps/convex.yml +++ b/Resources/Maps/convex.yml @@ -72,19 +72,19 @@ entities: version: 6 1,4: ind: 1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAACAAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAACAAAAAABAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 1,5: ind: 1,5 - tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACAAAAAACAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACAAAAAABAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACAAAAAABAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACAAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 1,6: ind: 1,6 - tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACBQAAAAACBQAAAAACBQAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAABBQAAAAAABQAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAABBQAAAAADBQAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAD + tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADBQAAAAAABQAAAAADBQAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACBQAAAAAABQAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAADBQAAAAABBQAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAAC version: 6 1,7: ind: 1,7 - tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAADIQAAAAADIQAAAAADAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAABQAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAADAgAAAAAAIQAAAAABIQAAAAADAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAADBQAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAIAAAAAAAAgAAAAAABgAAAAAABgAAAAADBgAAAAABAgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAEAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAADAgAAAAAAAgAAAAAAIAAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAADBgAAAAAABgAAAAACBgAAAAAABgAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAABBgAAAAABBgAAAAACAgAAAAAABgAAAAAABgAAAAACBgAAAAACBgAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAADIQAAAAAAIQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAABQAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAADAgAAAAAAIQAAAAACIQAAAAABAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAACBQAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAIAAAAAAAAgAAAAAABgAAAAABBgAAAAABBgAAAAABAgAAAAAAIAAAAAAFIAAAAAAAIAAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAADBgAAAAAABgAAAAAABgAAAAADBgAAAAAAAgAAAAAAAgAAAAAAIAAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAACBgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAACBgAAAAADBgAAAAAAAgAAAAAABgAAAAACBgAAAAACBgAAAAAABgAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 1,8: ind: 1,8 @@ -96,35 +96,35 @@ entities: version: 6 10,2: ind: 10,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQAAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQAAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA version: 6 10,3: ind: 10,3 - tiles: AwAAAAABAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA + tiles: AwAAAAADAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA version: 6 10,4: ind: 10,4 - tiles: AgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAAABwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAAABwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAACBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAACBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAADBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAABBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,5: ind: 10,5 - tiles: AwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,6: ind: 10,6 - tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAACCAAAAAAACAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAADCAAAAAACCAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,7: ind: 10,7 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,8: ind: 10,8 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 10,9: ind: 10,9 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAAACgAAAAADCAAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAADCgAAAAAACAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAABCgAAAAABCAAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAADCgAAAAABCAAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 11,2: ind: 11,2 @@ -144,31 +144,31 @@ entities: version: 6 2,1: ind: 2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAACAAAAAACBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAACAAAAAABCQAAAAAACAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACQAAAAAAAgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAACCAAAAAAACQAAAAAACAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAADCAAAAAABBQAAAAACAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAADCAAAAAAABQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAACCAAAAAABCQAAAAAACAAAAAADCAAAAAABCAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACQAAAAAAAgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAADAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAACCAAAAAAACQAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAACAAAAAAABQAAAAACAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAA version: 6 2,2: ind: 2,2 - tiles: AQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAAACAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAACAAAAAADCAAAAAACCAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAADCAAAAAABCAAAAAACAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAA + tiles: AQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAAACAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAACCAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAACAAAAAABCAAAAAABCAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAAACAAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAAACAAAAAACCAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAACCAAAAAAACAAAAAABAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAA version: 6 2,3: ind: 2,3 - tiles: AgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAACAgAAAAAACAAAAAABCAAAAAAACAAAAAACAgAAAAAACAAAAAACCgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAAACgAAAAAACAAAAAAACgAAAAABCAAAAAACCAAAAAAAFAAAAAAACAAAAAADCAAAAAABCAAAAAABAgAAAAAACAAAAAABCAAAAAABAgAAAAAACAAAAAACCgAAAAABCAAAAAABCAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAAAFAAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAABFAAAAAAACAAAAAABCAAAAAABCAAAAAACAgAAAAAACAAAAAACCAAAAAABCAAAAAABCgAAAAADCAAAAAADCAAAAAABCAAAAAABCAAAAAAACAAAAAAACgAAAAADCAAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAADAgAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAABAgAAAAAACAAAAAAACAAAAAABCAAAAAACCgAAAAADCAAAAAACAgAAAAAACwAAAAAAAgAAAAAACAAAAAABCgAAAAACCAAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABAgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAAAAgAAAAAACwAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAACCgAAAAACCAAAAAABAgAAAAAACwAAAAACAgAAAAAACAAAAAAACgAAAAADCAAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAABAgAAAAAACwAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAACAgAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAAACAAAAAACCAAAAAADCAAAAAACCgAAAAABCAAAAAABAgAAAAAACwAAAAADAgAAAAAACAAAAAABCgAAAAAACAAAAAADAgAAAAAACAAAAAADCAAAAAACCAAAAAAAFAAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAADAgAAAAAACwAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAADAgAAAAAACAAAAAABCAAAAAACCAAAAAABFAAAAAAACAAAAAAACAAAAAABCAAAAAABCgAAAAACCAAAAAACAgAAAAAACwAAAAACAgAAAAAACAAAAAAACgAAAAACCAAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAAAAgAAAAAACAAAAAAACgAAAAADCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAACFAAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAACgAAAAADCAAAAAABCgAAAAADCAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAADCgAAAAAACAAAAAAAFAAAAAAACAAAAAABCAAAAAABCAAAAAAAAgAAAAAACAAAAAADCgAAAAABCAAAAAACCAAAAAACCgAAAAADCAAAAAABCgAAAAABCAAAAAAACgAAAAAACAAAAAAACAAAAAACFAAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAACAAAAAABCAAAAAAD + tiles: AgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAADAgAAAAAACAAAAAACCAAAAAACCAAAAAAAAgAAAAAACAAAAAADCgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAADCgAAAAACCAAAAAABCgAAAAACCAAAAAACCAAAAAAAFAAAAAAACAAAAAABCAAAAAABCAAAAAAAAgAAAAAACAAAAAACCAAAAAACAgAAAAAACAAAAAADCgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAACFAAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAADCAAAAAAAFAAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAACAAAAAACCAAAAAADCAAAAAABCgAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAABCAAAAAAACgAAAAABCAAAAAADAgAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAACAAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAACCgAAAAADCAAAAAAAAgAAAAAACwAAAAADAgAAAAAACAAAAAAACgAAAAABCAAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAADAgAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAACCAAAAAAAAgAAAAAACwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAADAgAAAAAACAAAAAABCAAAAAACCAAAAAACCgAAAAADCAAAAAACAgAAAAAACwAAAAACAgAAAAAACAAAAAACCgAAAAABCAAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAABAgAAAAAACwAAAAADAgAAAAAACAAAAAACCAAAAAACCAAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAAAFAAAAAAACAAAAAADCAAAAAABCAAAAAADCgAAAAADCAAAAAADAgAAAAAACwAAAAACAgAAAAAACAAAAAAACgAAAAADCAAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAADFAAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAACCAAAAAADAgAAAAAACwAAAAACAgAAAAAACAAAAAACCAAAAAABCAAAAAADAgAAAAAACAAAAAAACAAAAAADCAAAAAABFAAAAAAACAAAAAAACAAAAAABCAAAAAAACgAAAAAACAAAAAABAgAAAAAACwAAAAADAgAAAAAACAAAAAABCgAAAAABCAAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAAAAgAAAAAACAAAAAACCgAAAAABCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAAAFAAAAAAACAAAAAADCAAAAAADCAAAAAABAgAAAAAAAgAAAAAACgAAAAABCAAAAAAACgAAAAADCAAAAAACCAAAAAACCAAAAAABCAAAAAACCAAAAAACCgAAAAADCAAAAAABFAAAAAAACAAAAAACCAAAAAAACAAAAAADAgAAAAAACAAAAAACCgAAAAAACAAAAAAACAAAAAACCgAAAAADCAAAAAABCgAAAAACCAAAAAABCgAAAAABCAAAAAADCAAAAAAAFAAAAAAACAAAAAACCAAAAAACCAAAAAABAgAAAAAACAAAAAAACAAAAAAC version: 6 2,4: ind: 2,4 - tiles: CAAAAAADCAAAAAABCAAAAAABCAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAADCAAAAAABAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAACAAAAAABCgAAAAABAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAADCgAAAAACDAAAAAAADAAAAAADDAAAAAACDAAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAACAgAAAAAACAAAAAADCAAAAAACDAAAAAADDAAAAAADDAAAAAADDAAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAADBwAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAADAAAAAAADQAAAAAADAAAAAADDAAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAABBwAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAACCAAAAAACAgAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAABBwAAAAADBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAABAgAAAAAACAAAAAACCAAAAAADCAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAADAgAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABCAAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAADCAAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABCAAAAAABBwAAAAACBwAAAAADBwAAAAAABwAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAADCAAAAAADCAAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADCAAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAACAAAAAADCAAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACCAAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABAgAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAA + tiles: CAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAADCAAAAAACCAAAAAABCAAAAAACAgAAAAAACAAAAAABCAAAAAACCAAAAAAAAgAAAAAACAAAAAADCgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAADCgAAAAACDAAAAAAADAAAAAABDAAAAAACDAAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAACAAAAAACCAAAAAADDAAAAAACDAAAAAACDAAAAAABDAAAAAABBwAAAAADBwAAAAAABwAAAAACBwAAAAACBwAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAADAAAAAADDQAAAAAADAAAAAABDAAAAAACAgAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAACAgAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAAACAAAAAACBwAAAAACBwAAAAADBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAACAAAAAACAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAADBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAABCAAAAAAACAAAAAAACAAAAAADBwAAAAACBwAAAAACBwAAAAACBwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABCAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAACAAAAAAACAAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAACAAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABCAAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAADAgAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAACAAAAAABCAAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAACAAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAA version: 6 2,5: ind: 2,5 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAAABQAAAAADBQAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAwAAAAADBQAAAAADAwAAAAADBQAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAABBQAAAAADBAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAAABQAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADBQAAAAADBAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAADAwAAAAADBQAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAAABQAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAABBQAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABBQAAAAABBAAAAAAABAAAAAAABAAAAAAAAwAAAAAABQAAAAABAwAAAAADBQAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAADBAAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAC + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAADBQAAAAADBQAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACBAAAAAAABAAAAAAABAAAAAAAAwAAAAACBQAAAAADAwAAAAAABQAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAABQAAAAABBAAAAAAABAAAAAAAAgAAAAAAAwAAAAAABQAAAAABAwAAAAABBQAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABBQAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAABQAAAAABAwAAAAABBQAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAwAAAAACBQAAAAAAAwAAAAAABQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACBQAAAAAAAwAAAAACBQAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACBQAAAAACBAAAAAAABAAAAAAABAAAAAAAAwAAAAAABQAAAAAAAwAAAAACBQAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAB version: 6 2,6: ind: 2,6 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAACCwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAACCAAAAAADCAAAAAAACAAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAADCAAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAABCAAAAAADAwAAAAAAAwAAAAAAAwAAAAAACAAAAAACCAAAAAADCAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAADAwAAAAADAgAAAAAAAwAAAAABAgAAAAAACgAAAAACCgAAAAABCgAAAAACAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAACgAAAAADCgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAB + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAACCwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAABCwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAgAAAAAACAAAAAACCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAAACAAAAAAAAwAAAAADAwAAAAACAwAAAAABCAAAAAADCAAAAAABCAAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAACAAAAAABCAAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAADAwAAAAABAgAAAAAAAwAAAAACAgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAACgAAAAACCgAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAAC version: 6 2,7: ind: 2,7 - tiles: AwAAAAADBQAAAAABBQAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACBQAAAAAABQAAAAACBQAAAAACAwAAAAABBQAAAAAABQAAAAACBQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAgAAAAAABQAAAAACAwAAAAADBQAAAAACAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAACCgAAAAABCgAAAAACCgAAAAACCAAAAAACCAAAAAADCAAAAAABAwAAAAAABQAAAAAAAwAAAAADBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACgAAAAAACgAAAAACCgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAABAgAAAAAAAwAAAAABAgAAAAAACwAAAAAACwAAAAACAgAAAAAACAAAAAADCgAAAAADCgAAAAADCgAAAAAACAAAAAADAgAAAAAACwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAgAAAAAACwAAAAABCwAAAAABAgAAAAAACAAAAAAACgAAAAAACgAAAAACCgAAAAABCAAAAAAAAgAAAAAACwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADBwAAAAABAgAAAAAABwAAAAAABwAAAAABFgAAAAADBwAAAAABAgAAAAAABwAAAAADAgAAAAAACwAAAAABCwAAAAADCwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAABAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAAAAgAAAAAACwAAAAACCwAAAAACCwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACAgAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAACAgAAAAAACwAAAAACCwAAAAACCwAAAAADAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAFgAAAAAGBwAAAAADBwAAAAACAgAAAAAABwAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAACwAAAAAACwAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAABFgAAAAACBwAAAAACAwAAAAACCwAAAAABCwAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAACBQAAAAABBQAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAABQAAAAADBQAAAAABBQAAAAAAAwAAAAABBQAAAAACBQAAAAACBQAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABQAAAAADAwAAAAADBQAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAAACgAAAAABCgAAAAADCgAAAAADCAAAAAABCAAAAAABCAAAAAAAAwAAAAACBQAAAAAAAwAAAAACBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCgAAAAABCgAAAAAACgAAAAABCAAAAAACAgAAAAAAAgAAAAAAAwAAAAADBQAAAAACAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAACwAAAAADCwAAAAADAgAAAAAACAAAAAABCgAAAAACCgAAAAACCgAAAAABCAAAAAADAgAAAAAACwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAgAAAAAACwAAAAAACwAAAAABAgAAAAAACAAAAAADCgAAAAADCgAAAAADCgAAAAACCAAAAAADAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAABwAAAAAAAgAAAAAABwAAAAADBwAAAAADFgAAAAAGBwAAAAABAgAAAAAABwAAAAACAgAAAAAACwAAAAADCwAAAAACCwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADAgAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAADAgAAAAAACwAAAAAACwAAAAACCwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAADBwAAAAACAgAAAAAACwAAAAADCwAAAAABCwAAAAACAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAFgAAAAAGBwAAAAACBwAAAAABAgAAAAAABwAAAAACAgAAAAAABwAAAAACAgAAAAAAAgAAAAAACwAAAAABCwAAAAACAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAACFgAAAAADBwAAAAADAwAAAAACCwAAAAADCwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 2,8: ind: 2,8 @@ -184,43 +184,43 @@ entities: version: 6 3,1: ind: 3,1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAADBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAABQAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADBQAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACBQAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABBQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 3,10: ind: 3,10 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAAAAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAACAwAAAAAABAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAACAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAAAAwAAAAACCAAAAAABCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAADAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACBAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAACAAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAwAAAAADAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAwAAAAAAAwAAAAAABAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAABAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAwAAAAAAAwAAAAADCAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAADAwAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAABAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAACAAAAAACBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAACAAAAAABBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAACAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAA version: 6 3,3: ind: 3,3 - tiles: CAAAAAACCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAABAgAAAAAADAAAAAABDAAAAAACAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAACBwAAAAABDAAAAAACDAAAAAACDAAAAAADAgAAAAAABwAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAAABwAAAAADAgAAAAAADAAAAAAADAAAAAABAgAAAAAABwAAAAAACAAAAAADCAAAAAADCAAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADCAAAAAACCAAAAAADCAAAAAACCAAAAAAACAAAAAACCAAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAAAAgAAAAAABwAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAAACAAAAAADCAAAAAAACAAAAAABAgAAAAAAAwAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAABAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAABAgAAAAAAAwAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAADCAAAAAABAgAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAAACAAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAABCAAAAAACAgAAAAAACgAAAAACCAAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAACgAAAAABAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABAgAAAAAACgAAAAABCgAAAAAACgAAAAABCgAAAAABCgAAAAACCgAAAAAACgAAAAABBQAAAAAAAgAAAAAACgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAADAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAD + tiles: CAAAAAAACAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAgAAAAAADAAAAAAADAAAAAABAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAAABwAAAAABDAAAAAABDAAAAAABDAAAAAAAAgAAAAAABwAAAAABCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAACBwAAAAADAgAAAAAADAAAAAADDAAAAAAAAgAAAAAABwAAAAADCAAAAAABCAAAAAABCAAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABCAAAAAACCAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAAACAAAAAAAAgAAAAAABwAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAAACAAAAAABCAAAAAADAgAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAACCAAAAAADCAAAAAACCAAAAAACAgAAAAAAAwAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAADCAAAAAACCAAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAACAgAAAAAAAwAAAAABCAAAAAABCAAAAAABCAAAAAADCAAAAAABCAAAAAADCAAAAAADAgAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAACCAAAAAABCAAAAAADCAAAAAACAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAABCAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAADCAAAAAADCAAAAAACAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAADCAAAAAACCAAAAAACAgAAAAAACgAAAAADCAAAAAADCAAAAAADCAAAAAABCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAACgAAAAACAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAABAgAAAAAACgAAAAAACgAAAAADCgAAAAABCgAAAAADCgAAAAABCgAAAAACCgAAAAADBQAAAAABAgAAAAAACgAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAABAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAA version: 6 3,4: ind: 3,4 - tiles: CAAAAAAACAAAAAAACgAAAAAACgAAAAADBQAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABCgAAAAADCAAAAAACCgAAAAAACgAAAAABBQAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACCAAAAAABCAAAAAAACAAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAACAAAAAABCAAAAAADCAAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAACCAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAACCAAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAACCQAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAACAAAAAADCgAAAAADCgAAAAADCAAAAAADCAAAAAABAgAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAA + tiles: CAAAAAACCAAAAAAACgAAAAAACgAAAAABBQAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABCgAAAAACCAAAAAABCgAAAAAACgAAAAADBQAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADCAAAAAABCAAAAAACCAAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAACCAAAAAAACAAAAAAACAAAAAABAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAACCQAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAgAAAAAACAAAAAAACgAAAAABCgAAAAABCAAAAAACCAAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAA version: 6 3,5: ind: 3,5 - tiles: AwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAAACAAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAADFAAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAAACAAAAAAACAAAAAADBQAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAADFAAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAAACAAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACFAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAADCAAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADFAAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAABBQAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABFAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAACBQAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAwAAAAACBQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAAABQAAAAAAAwAAAAAABQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAABBQAAAAADAwAAAAADBQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABFAAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAD + tiles: AwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAAACAAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABFAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAABCAAAAAABBQAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADFAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAACCAAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADFAAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAFAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACFAAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAAABQAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADFAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAAABQAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAABBQAAAAADAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAABBQAAAAAAAwAAAAAABQAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAACBQAAAAABAwAAAAAABQAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAAFAAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAD version: 6 3,6: ind: 3,6 - tiles: AwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABFAAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAABQAAAAAABQAAAAADBQAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADFAAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAAAEAAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAEAAAAAAAEQAAAAADEAAAAAAAEQAAAAABEAAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADFAAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAEAAAAAAAEQAAAAACEAAAAAABEQAAAAAAEAAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACFAAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAEAAAAAACEQAAAAACEAAAAAACEQAAAAABEAAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAACEAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACCAAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABCgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADBQAAAAACBQAAAAABBQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADFAAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAADEAAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAEAAAAAAAEQAAAAABEAAAAAAAEQAAAAABEAAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAFAAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAEAAAAAABEQAAAAABEAAAAAACEQAAAAADEAAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAEAAAAAACEQAAAAADEAAAAAAAEQAAAAACEAAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAEAAAAAABEAAAAAABEAAAAAADEAAAAAADEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAACAAAAAABAgAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAACgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 3,7: ind: 3,7 - tiles: AwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACFAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAABAwAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADFAAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAEAAAAAADEAAAAAADEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAABCwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAADAgAAAAAAEAAAAAABAgAAAAAAEAAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAADAgAAAAAAEAAAAAACAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAABCwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAABCwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAACCwAAAAABCwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAACCwAAAAABCwAAAAABAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAABCwAAAAAACwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAA + tiles: AwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABFAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAABAwAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADFAAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADCwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAADEAAAAAADCwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAADAgAAAAAAEAAAAAABAgAAAAAAEAAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAAACwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAACCwAAAAACCwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAACCwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAADCwAAAAACCwAAAAADAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAADCwAAAAABCwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAA version: 6 3,8: ind: 3,8 - tiles: AAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAIgAAAAAAIgAAAAACIgAAAAABAgAAAAAAIgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAABIgAAAAAAAgAAAAAAIgAAAAAAAgAAAAAAAgAAAAAAIgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAADAgAAAAAAIgAAAAADIgAAAAADIgAAAAACIgAAAAACAgAAAAAAIgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAAAAgAAAAAAAgAAAAAAIgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAIgAAAAACIgAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAIgAAAAABAgAAAAAAIgAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAADIgAAAAAAIgAAAAAAIgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAAAIgAAAAACIgAAAAACIgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAA + tiles: AAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAIgAAAAADIgAAAAACIgAAAAAAAgAAAAAAIgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAACIgAAAAABAgAAAAAAIgAAAAABAgAAAAAAAgAAAAAAIgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAAAAgAAAAAAIgAAAAABIgAAAAADIgAAAAACIgAAAAACAgAAAAAAIgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAABAgAAAAAAAgAAAAAAIgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAIgAAAAABIgAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAIgAAAAACAgAAAAAAIgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAADIgAAAAACIgAAAAABIgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIgAAAAADIgAAAAAAIgAAAAADIgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAA version: 6 3,9: ind: 3,9 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACIwAAAAACEwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIwAAAAAAHgAAAAAAIwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAACIwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAHgAAAAAAIwAAAAADHgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAACgAAAAABFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAABCgAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAACgAAAAABAgAAAAAAEwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACgAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABCgAAAAAAAwAAAAACEwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAAEAgAAAAAAAwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACIwAAAAACEwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIwAAAAAAHgAAAAAAIwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAADIwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAHgAAAAAAIwAAAAADHgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAACgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAABCgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADCgAAAAABAgAAAAAAEwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACgAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABCgAAAAABAwAAAAADEwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAACAgAAAAAAAwAAAAAD version: 6 4,0: ind: 4,0 @@ -228,35 +228,35 @@ entities: version: 6 4,1: ind: 4,1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,10: ind: 4,10 - tiles: AwAAAAABEwAAAAAEAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAACJAAAAAAAAgAAAAAAJAAAAAABJAAAAAACAgAAAAAAJAAAAAABAwAAAAACAwAAAAADAwAAAAACFgAAAAADBwAAAAADAgAAAAAAAgAAAAAAFgAAAAACAgAAAAAAJAAAAAADAgAAAAAAJAAAAAABJAAAAAADJAAAAAACJAAAAAACJAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAACBwAAAAABFgAAAAADAgAAAAAAJAAAAAABJAAAAAAAJAAAAAABJAAAAAADJAAAAAABJAAAAAABJAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABwAAAAAAFgAAAAAAFgAAAAACBwAAAAABFgAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AwAAAAAAEwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAAAJAAAAAADAgAAAAAAJAAAAAADJAAAAAADAgAAAAAAJAAAAAABAwAAAAABAwAAAAABAwAAAAADFgAAAAACBwAAAAABAgAAAAAAAgAAAAAAFgAAAAAFAgAAAAAAJAAAAAADAgAAAAAAJAAAAAAAJAAAAAAAJAAAAAADJAAAAAABJAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAABwAAAAAAFgAAAAAFAgAAAAAAJAAAAAADJAAAAAABJAAAAAAAJAAAAAADJAAAAAACJAAAAAAAJAAAAAACAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABwAAAAACFgAAAAADFgAAAAAABwAAAAACFgAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,2: ind: 4,2 - tiles: AgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAD + tiles: AgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAAC version: 6 4,3: ind: 4,3 - tiles: AgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAACBwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAADBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAADBwAAAAADBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAABBwAAAAABBwAAAAADBwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAADBwAAAAACBwAAAAADBwAAAAACHwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAADHwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACHwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAABBwAAAAACBwAAAAADHwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAACAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAABwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAADFAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAA + tiles: AgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAACBwAAAAADBwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAABwAAAAADBwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAADBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACAwAAAAADAwAAAAAAAwAAAAADAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAACAwAAAAACAwAAAAACAwAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAADBwAAAAABBwAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAADAwAAAAADAwAAAAAAAwAAAAACAgAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAgAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAABHwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAABwAAAAABBwAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABHwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAABHwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAACHwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADFAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAB version: 6 4,4: ind: 4,4 - tiles: AwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAFAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAACCAAAAAAAAgAAAAAACwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAADBwAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAABAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAABAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAADCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAABCAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAADAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAACgAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAAACAAAAAABCAAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAABCAAAAAAACAAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAABCAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAABCAAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAFAAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAACAgAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAABAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAACAgAAAAAACwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAACAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAADCAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAAACAAAAAACCAAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAADCAAAAAADAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAACgAAAAADCAAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAABCAAAAAACCAAAAAACCAAAAAADCAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAABCAAAAAAACAAAAAABCAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAACAAAAAACCAAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAACCAAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 4,5: ind: 4,5 - tiles: AgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAACAwAAAAAABQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAADAwAAAAABAwAAAAAABQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADBQAAAAAAAwAAAAADAwAAAAACBQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAADCAAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAEQAAAAABEQAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAABAgAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAADAgAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAACEAAAAAACEAAAAAADAgAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAABEAAAAAADAgAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAABAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEAAAAAACEQAAAAACEQAAAAABEAAAAAABEQAAAAABEQAAAAADEQAAAAADAgAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAABAgAAAAAAEQAAAAABEQAAAAACEQAAAAAAEAAAAAAAEQAAAAACEQAAAAACEAAAAAACEQAAAAAAEQAAAAAAEQAAAAAC + tiles: AgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAAAAwAAAAABAwAAAAADBQAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAABAwAAAAADAwAAAAAABQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAABQAAAAABAwAAAAABAwAAAAACBQAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADCAAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAEQAAAAACEQAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAABEAAAAAACEAAAAAAAEAAAAAACAgAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAAAAgAAAAAAEAAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAABEAAAAAADAgAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAABAgAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAAAEAAAAAACEAAAAAADEAAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAADAgAAAAAAEQAAAAACEQAAAAABEQAAAAADEAAAAAACEQAAAAABEQAAAAADEAAAAAADEQAAAAADEQAAAAAAEQAAAAACAgAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAADAgAAAAAAEQAAAAAAEQAAAAADEQAAAAAAEAAAAAADEQAAAAABEQAAAAABEAAAAAADEQAAAAACEQAAAAABEQAAAAAC version: 6 4,6: ind: 4,6 - tiles: AgAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAACEAAAAAACEAAAAAADEAAAAAAAEAAAAAACAgAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAABAgAAAAAAEAAAAAAAEAAAAAAAEQAAAAAAEQAAAAADEQAAAAADEQAAAAADEQAAAAABEQAAAAADEAAAAAABEAAAAAABAgAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAACEAAAAAABEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACAgAAAAAAEQAAAAABEQAAAAADEQAAAAACEAAAAAABEQAAAAABEQAAAAADEAAAAAADEQAAAAADEQAAAAAAEQAAAAACAgAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAABAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEAAAAAAAEQAAAAAAEQAAAAADEAAAAAACEQAAAAAAEQAAAAABEQAAAAACAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAAAEQAAAAABAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAACEAAAAAACEAAAAAACEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAACEQAAAAABAgAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACAgAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAADEQAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAADEAAAAAADEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAACwAAAAAACwAAAAADCwAAAAACCwAAAAAACwAAAAABCwAAAAACCwAAAAABCwAAAAABCwAAAAABCwAAAAACCwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AgAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAABEAAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAABAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACAgAAAAAAEAAAAAABEAAAAAAAEQAAAAAAEQAAAAABEQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEAAAAAADEAAAAAABAgAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAADEAAAAAABEAAAAAACEAAAAAABEAAAAAACEAAAAAABEAAAAAABEAAAAAACEAAAAAABEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAACAgAAAAAAEQAAAAADEQAAAAABEQAAAAAAEAAAAAADEQAAAAADEQAAAAADEAAAAAACEQAAAAADEQAAAAADEQAAAAAAAgAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAACAgAAAAAAEQAAAAABEQAAAAADEQAAAAACEAAAAAACEQAAAAACEQAAAAADEAAAAAABEQAAAAACEQAAAAACEQAAAAAAAgAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAADEQAAAAABAgAAAAAAEAAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAADAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAACEQAAAAACAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAAAEQAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAACEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAACwAAAAABCwAAAAAACwAAAAAACwAAAAADCwAAAAABCwAAAAADCwAAAAAACwAAAAAACwAAAAADCwAAAAADCwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 4,7: ind: 4,7 - tiles: AwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACBQAAAAACBQAAAAADBQAAAAADAwAAAAACAgAAAAAAAwAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAABEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACBQAAAAACBQAAAAABBQAAAAADAwAAAAADAgAAAAAAAwAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 4,8: ind: 4,8 @@ -264,7 +264,7 @@ entities: version: 6 4,9: ind: 4,9 - tiles: BAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAABJAAAAAACJAAAAAADJAAAAAAAJAAAAAAAJAAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAAAJAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: BAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAAAJAAAAAADJAAAAAADJAAAAAAAJAAAAAAAJAAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAAAJAAAAAADAgAAAAAAAgAAAAAAAgAAAAAA version: 6 5,0: ind: 5,0 @@ -272,43 +272,43 @@ entities: version: 6 5,1: ind: 5,1 - tiles: AwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAFAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADFAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAC + tiles: AwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADFAAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAFAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAQAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAQAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAB version: 6 5,10: ind: 5,10 - tiles: JAAAAAAAJAAAAAABJAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAABAgAAAAAAJAAAAAABAgAAAAAAJAAAAAACJAAAAAACAgAAAAAAAgAAAAAAJQAAAAAAJQAAAAADJQAAAAABJQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAACJAAAAAAAJAAAAAABAgAAAAAAJAAAAAAAAgAAAAAAJQAAAAADJQAAAAACAgAAAAAAJQAAAAABJQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAAAJQAAAAABAgAAAAAAJQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAJQAAAAACAgAAAAAAAgAAAAAAJQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAJQAAAAACJQAAAAACAgAAAAAAJQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAJgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAJgAAAAAAAgAAAAAAJgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAJgAAAAAAJgAAAAAAAgAAAAAAJgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA + tiles: JAAAAAADJAAAAAABJAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAACAgAAAAAAJAAAAAABAgAAAAAAJAAAAAABJAAAAAADAgAAAAAAAgAAAAAAJQAAAAABJQAAAAAAJQAAAAACJQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAABJAAAAAABJAAAAAAAAgAAAAAAJAAAAAADAgAAAAAAJQAAAAADJQAAAAABAgAAAAAAJQAAAAACJQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAABJQAAAAACAgAAAAAAJQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAJQAAAAACAgAAAAAAAgAAAAAAJQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAJQAAAAADJQAAAAAAAgAAAAAAJQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAJgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADEwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAJgAAAAAAAgAAAAAAJgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAJgAAAAAAJgAAAAAAAgAAAAAAJgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA version: 6 5,2: ind: 5,2 - tiles: AAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAADCAAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAABCAAAAAAACAAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABBwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAAA + tiles: AAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAAACAAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAABwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAB version: 6 5,3: ind: 5,3 - tiles: BwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACBwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACBwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAABwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAABwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADBwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAgAAAAAABwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADBwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAABwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAgAAAAAA + tiles: BwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACBwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABBwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADBwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACBwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADBwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABBwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAABwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAA version: 6 5,4: ind: 5,4 - tiles: AwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAACwAAAAACCwAAAAABCwAAAAACCwAAAAAACwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAACwAAAAADCwAAAAACCwAAAAADCwAAAAABCwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAAACAAAAAADCgAAAAABCgAAAAAACgAAAAACCAAAAAAACAAAAAABAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAAACAAAAAABCAAAAAACCAAAAAABCAAAAAADCAAAAAACCAAAAAAACAAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAADCAAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAABwAAAAACBwAAAAAACgAAAAACCgAAAAABCgAAAAABCgAAAAADCAAAAAADCgAAAAABCgAAAAACCgAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAABwAAAAABBwAAAAAABwAAAAABCAAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAABCAAAAAADCAAAAAAACAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACCAAAAAADCAAAAAACCgAAAAABCgAAAAADCgAAAAACCAAAAAAACAAAAAACAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAA + tiles: AwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAACwAAAAABCwAAAAADCwAAAAACCwAAAAABCwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACwAAAAACCwAAAAACCwAAAAABCwAAAAAACwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAgAAAAAACAAAAAACCAAAAAAACgAAAAADCgAAAAACCgAAAAABCAAAAAACCAAAAAADAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAADCAAAAAABCAAAAAABCAAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAADCAAAAAACCAAAAAACCAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAABwAAAAABBwAAAAAACgAAAAAACgAAAAADCgAAAAADCgAAAAABCAAAAAACCgAAAAAACgAAAAAACgAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAABCAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAABwAAAAAABwAAAAACBwAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAACCAAAAAABCAAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACCAAAAAACCAAAAAACCgAAAAACCgAAAAAACgAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAA version: 6 5,5: ind: 5,5 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAABAgAAAAAACAAAAAACCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAADAgAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAACAgAAAAAACAAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAACCAAAAAADCAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAACAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 5,6: ind: 5,6 - tiles: EAAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAFQAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAADAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAFQAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAFQAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAABEAAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADFQAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAADAgAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAAwAAAAABAwAAAAACAwAAAAABFQAAAAAAAwAAAAACFQAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACFQAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAABAgAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAABEAAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABFQAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAADAgAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACEAAAAAADEAAAAAABEAAAAAADEAAAAAAAEAAAAAABEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAAAEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: EAAAAAADEAAAAAABEAAAAAABEAAAAAACEAAAAAABEAAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAACAgAAAAAAEAAAAAACEAAAAAAAEAAAAAACEAAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACFQAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAABAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABFQAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAACAgAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAFQAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAFQAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAABAgAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACAwAAAAADAwAAAAACAwAAAAADFQAAAAAAAwAAAAAAFQAAAAAAEAAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAACEAAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABFQAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAABAgAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAABEAAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAACFQAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAAgAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAADEAAAAAABEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACEAAAAAADEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 5,7: ind: 5,7 - tiles: AwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAFAAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAAACAAAAAAACAAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADFAAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADCAAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAACAAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADCAAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAABQAAAAABBQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAABBQAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAC + tiles: AwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAACCAAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACFAAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAADCAAAAAABCAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABCAAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADCAAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADCAAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABBQAAAAABBQAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAADBQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAB version: 6 5,8: ind: 5,8 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAB + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAD version: 6 5,9: ind: 5,9 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAABJAAAAAACAgAAAAAAJAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAABAgAAAAAAJAAAAAADJAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAB + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAACJAAAAAAAAgAAAAAAJAAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAJAAAAAABAgAAAAAAJAAAAAACJAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAB version: 6 6,0: ind: 6,0 @@ -316,147 +316,147 @@ entities: version: 6 6,1: ind: 6,1 - tiles: AgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAACAAAAAADAgAAAAAACAAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAACAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABFAAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAB + tiles: AgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAACAAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAFAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADFAAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAA version: 6 6,10: ind: 6,10 - tiles: CAAAAAACCAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAABAgAAAAAAAwAAAAAABQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCgAAAAABCgAAAAADCgAAAAAACAAAAAACCAAAAAACAgAAAAAAAwAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAABBQAAAAACCAAAAAABCAAAAAAACgAAAAABCQAAAAAACgAAAAACCAAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAACgAAAAADCgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBwAAAAACAgAAAAAAFgAAAAAFBwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAADBwAAAAACAgAAAAAAAwAAAAADAgAAAAAAEwAAAAAEAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAABwAAAAAABwAAAAADFgAAAAAGBwAAAAABBwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAABCAAAAAADCAAAAAACCAAAAAADCAAAAAABCAAAAAACCAAAAAADAgAAAAAAAwAAAAADBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCgAAAAACCgAAAAAACgAAAAABCAAAAAAACAAAAAADAgAAAAAAAwAAAAADBQAAAAAABQAAAAAABQAAAAACBQAAAAAABQAAAAADBQAAAAABBQAAAAADCAAAAAACCAAAAAABCgAAAAADCQAAAAAACgAAAAACCAAAAAADCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAACgAAAAACCgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAABBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABwAAAAADAgAAAAAAFgAAAAAGBwAAAAADBwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAABwAAAAACBwAAAAADAgAAAAAAAwAAAAABAgAAAAAAEwAAAAAEAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAGBwAAAAACBwAAAAADFgAAAAABBwAAAAADBwAAAAACAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,2: ind: 6,2 - tiles: AwAAAAACAwAAAAADAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAADAgAAAAAAAwAAAAABAwAAAAACAgAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAABAwAAAAADAwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAACAgAAAAAAAwAAAAACAwAAAAABAgAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACBwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAACAwAAAAADAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAACAwAAAAADAgAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAADBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAABCAAAAAAAAwAAAAAAAwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAACAAAAAACCAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADBwAAAAABBwAAAAABBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADBwAAAAACBwAAAAADBwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 6,3: ind: 6,3 - tiles: AwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAFAAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAADFAAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAABwAAAAACBwAAAAACFgAAAAAGAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAADBwAAAAADAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAACGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAABwAAAAACGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABAwAAAAAAAwAAAAAB + tiles: AwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADFAAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAACFAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAABwAAAAACBwAAAAACFgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAACGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAABwAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACBwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADBwAAAAADBwAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAADBwAAAAAAAwAAAAADAwAAAAAA version: 6 6,4: ind: 6,4 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAADBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAABBwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAFAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADBwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACFAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAB version: 6 6,5: ind: 6,5 - tiles: AgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAACGwAAAAACAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAABGwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACGwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAACwAAAAABBwAAAAACBwAAAAABBwAAAAADAgAAAAAAAwAAAAACFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAACwAAAAABCwAAAAABBwAAAAADBwAAAAABBwAAAAADAgAAAAAAAwAAAAACFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAACwAAAAACCwAAAAACBwAAAAAABwAAAAAABwAAAAABAwAAAAADAwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAACwAAAAABCwAAAAABBwAAAAACBwAAAAABBwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAACwAAAAADCwAAAAADBwAAAAABBwAAAAADBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAA + tiles: AgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAADGwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAgAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAACAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAABGwAAAAACAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAADBwAAAAABBwAAAAADAgAAAAAAAwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAACwAAAAABCwAAAAABBwAAAAADBwAAAAABBwAAAAADAgAAAAAAAwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAACwAAAAADCwAAAAACBwAAAAACBwAAAAABBwAAAAAAAwAAAAADAwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAACwAAAAADCwAAAAADBwAAAAAABwAAAAACBwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAACwAAAAADCwAAAAABBwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAA version: 6 6,6: ind: 6,6 - tiles: AwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAwAAAAABAwAAAAADDwAAAAADDwAAAAADDwAAAAABDwAAAAADDwAAAAAADwAAAAABDwAAAAABDwAAAAAACwAAAAADCwAAAAAACwAAAAACCwAAAAAAFQAAAAAAAwAAAAACAwAAAAACAwAAAAACDwAAAAAADwAAAAADDwAAAAADDwAAAAACDwAAAAAADwAAAAABDwAAAAAADwAAAAABCwAAAAACCwAAAAAACwAAAAACCwAAAAACFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACCwAAAAAACwAAAAADCwAAAAAACwAAAAACFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAACCwAAAAAACwAAAAABCwAAAAACFQAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAABAgAAAAAACwAAAAABCwAAAAACCwAAAAADCwAAAAADFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAADBwAAAAADBwAAAAACBwAAAAACAwAAAAABAgAAAAAAAwAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADAwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAAAAwAAAAABBwAAAAACBwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAACAwAAAAADBwAAAAADBwAAAAABBwAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAACBwAAAAADAgAAAAAAAwAAAAADAwAAAAADHAAAAAADHAAAAAADHAAAAAABHAAAAAAAAwAAAAACAwAAAAADBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAwAAAAACHAAAAAADHAAAAAADHAAAAAABHAAAAAADHAAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAC + tiles: AwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAAAAwAAAAADAwAAAAACDwAAAAACDwAAAAACDwAAAAABDwAAAAABDwAAAAAADwAAAAABDwAAAAACDwAAAAACCwAAAAADCwAAAAABCwAAAAABCwAAAAABFQAAAAAAAwAAAAADAwAAAAADAwAAAAABDwAAAAACDwAAAAABDwAAAAAADwAAAAABDwAAAAABDwAAAAABDwAAAAACDwAAAAABCwAAAAABCwAAAAAACwAAAAACCwAAAAADFQAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABCwAAAAACCwAAAAADCwAAAAACCwAAAAADFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAACFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAAABwAAAAACAgAAAAAACwAAAAABCwAAAAABCwAAAAAACwAAAAADFQAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAADBwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAgAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAAAAwAAAAABBwAAAAADBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAABAwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAADAwAAAAABBwAAAAADBwAAAAADBwAAAAACBwAAAAACBwAAAAADBwAAAAABBwAAAAABBwAAAAADAgAAAAAAAwAAAAACAwAAAAABHAAAAAABHAAAAAADHAAAAAACHAAAAAAAAwAAAAADAwAAAAACBwAAAAADBwAAAAABBwAAAAABBwAAAAADBwAAAAABBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAACHAAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAC version: 6 6,7: ind: 6,7 - tiles: CAAAAAABAgAAAAAAAwAAAAABHAAAAAADHAAAAAABHAAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAACAAAAAAAAgAAAAAAAwAAAAADHAAAAAABHAAAAAACHAAAAAACHAAAAAAAHAAAAAABHAAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAADCAAAAAAAAgAAAAAAAwAAAAACAwAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAABHAAAAAAAHAAAAAABCAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADFAAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADFAAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAgAAAAAACwAAAAAACwAAAAACCwAAAAADAgAAAAAAAwAAAAACBQAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADBQAAAAABAwAAAAAABQAAAAAABQAAAAACBQAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: CAAAAAABAgAAAAAAAwAAAAADHAAAAAADHAAAAAADHAAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAAAHAAAAAACHAAAAAAAHAAAAAACCAAAAAACAgAAAAAAAwAAAAACHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAABHAAAAAABCAAAAAADAgAAAAAAAwAAAAAAAwAAAAADHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACCAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAFAAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADFAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACwAAAAAACwAAAAABCwAAAAACAgAAAAAAAwAAAAAABQAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAABQAAAAADAwAAAAABBQAAAAABBQAAAAADBQAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 6,8: ind: 6,8 - tiles: AwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAABCgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAACBQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAAACgAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAA + tiles: AwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAACCgAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAABBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAABCgAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAA version: 6 6,9: ind: 6,9 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADCgAAAAADCgAAAAADCgAAAAADAwAAAAAAAwAAAAACAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADCgAAAAADCgAAAAACCgAAAAACAwAAAAAAAwAAAAABAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAACAwAAAAAACgAAAAADCgAAAAACCgAAAAACAwAAAAACBQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAADAwAAAAADCgAAAAACCgAAAAADCgAAAAAAAwAAAAAABQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAABQAAAAADAwAAAAABCgAAAAAACgAAAAAACgAAAAADAwAAAAAABQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAABCAAAAAACCAAAAAACCAAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAwAAAAAABQAAAAADBQAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAABBQAAAAAD + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACCgAAAAAACgAAAAADCgAAAAACAwAAAAABAwAAAAADAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAACgAAAAADCgAAAAADCgAAAAADAwAAAAABAwAAAAADAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAACCgAAAAAACgAAAAAACgAAAAAAAwAAAAABBQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAABCgAAAAACCgAAAAABCgAAAAABAwAAAAADBQAAAAABAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAADAwAAAAABCgAAAAABCgAAAAABCgAAAAACAwAAAAABBQAAAAADAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAAACAAAAAACCAAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAADBQAAAAACBQAAAAABBQAAAAADBQAAAAABBQAAAAAABQAAAAAABQAAAAAD version: 6 7,1: ind: 7,1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAA version: 6 7,10: ind: 7,10 - tiles: BQAAAAAAAwAAAAADAgAAAAAACAAAAAAACgAAAAABCQAAAAAACgAAAAADCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABQAAAAACAwAAAAADAgAAAAAACAAAAAADCgAAAAABCgAAAAABCgAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAACHAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAFgAAAAAABwAAAAACAgAAAAAABwAAAAAAAgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAACAgAAAAAAHAAAAAAAHAAAAAABAgAAAAAAHAAAAAABAgAAAAAAAAAAAAAABwAAAAACBwAAAAADAgAAAAAAFgAAAAAFFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAACAgAAAAAAHAAAAAABAgAAAAAAAAAAAAAABwAAAAAAAgAAAAAABwAAAAABBwAAAAACFAAAAAAAAgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABAgAAAAAAAgAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAFgAAAAAAFgAAAAACBwAAAAAAFAAAAAAAHAAAAAAAAgAAAAAAHAAAAAADAgAAAAAAAgAAAAAAHAAAAAABHAAAAAABAgAAAAAAHAAAAAADAgAAAAAAAAAAAAAABwAAAAAAFgAAAAAABwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BQAAAAABAwAAAAABAgAAAAAACAAAAAADCgAAAAADCQAAAAAACgAAAAADCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABQAAAAACAwAAAAAAAgAAAAAACAAAAAABCgAAAAADCgAAAAACCgAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAwAAAAACAgAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAABHAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAFgAAAAAABwAAAAABAgAAAAAABwAAAAACAgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAABAgAAAAAAHAAAAAADHAAAAAAAAgAAAAAAHAAAAAADAgAAAAAAAAAAAAAABwAAAAADBwAAAAAAAgAAAAAAFgAAAAAGFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAAgAAAAAAHAAAAAADAgAAAAAAAAAAAAAABwAAAAABAgAAAAAABwAAAAAABwAAAAAAFAAAAAAAAgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAFgAAAAAAFgAAAAAABwAAAAABFAAAAAAAHAAAAAACAgAAAAAAHAAAAAABAgAAAAAAAgAAAAAAHAAAAAADHAAAAAAAAgAAAAAAHAAAAAAAAgAAAAAAAAAAAAAABwAAAAACFgAAAAAGBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,2: ind: 7,2 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAABEAAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAADEAAAAAACAgAAAAAAAwAAAAADBQAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAAB + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAADAgAAAAAAAwAAAAABBQAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAC version: 6 7,3: ind: 7,3 - tiles: AgAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAAAAgAAAAAAAwAAAAADBQAAAAACAwAAAAACAgAAAAAAAwAAAAADBQAAAAABAgAAAAAAEAAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAABEAAAAAACEAAAAAAAEAAAAAADAgAAAAAAAwAAAAACBQAAAAABAwAAAAABAgAAAAAAAwAAAAADBQAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAACAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAAABQAAAAADAgAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAEAAAAAABEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAABBQAAAAABBQAAAAADBQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADBwAAAAAABwAAAAADBwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABGgAAAAAAGgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADBwAAAAADBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAC + tiles: AgAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAACAgAAAAAAAwAAAAACBQAAAAAAAwAAAAACAgAAAAAAAwAAAAABBQAAAAADAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACAgAAAAAAAwAAAAABBQAAAAABAwAAAAAAAgAAAAAAAwAAAAAABQAAAAADAgAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAgAAAAAAEAAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAABEAAAAAADEAAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADBQAAAAADBQAAAAABBQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABBwAAAAADBwAAAAADBwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADGgAAAAAAGgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADBwAAAAABBwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAD version: 6 7,4: ind: 7,4 - tiles: AwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADFAAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAAAFAAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAADFAAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAABFAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAABFAAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAD + tiles: AwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACFAAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACFAAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAADAgAAAAAAAgAAAAAAAwAAAAAD version: 6 7,5: ind: 7,5 - tiles: AwAAAAABAwAAAAADAwAAAAAAAgAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAAAEAAAAAABEAAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAgAAAAAAEAAAAAAAEQAAAAADEQAAAAACEQAAAAABEQAAAAABEAAAAAACEAAAAAADEAAAAAACEAAAAAABEAAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAEAAAAAACEQAAAAADEQAAAAACEQAAAAAAEQAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAACEAAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAEAAAAAAAEQAAAAABEQAAAAAAEQAAAAADEQAAAAADEAAAAAADEAAAAAAAEAAAAAABEAAAAAACEAAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAEAAAAAAAEQAAAAACEQAAAAABEQAAAAACEQAAAAABEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAgAAAAAAEAAAAAAAEQAAAAAAEQAAAAADEQAAAAAAEQAAAAAAEAAAAAAAEAAAAAACAgAAAAAAEAAAAAABEAAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAACEAAAAAABAgAAAAAAEAAAAAADEAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADCwAAAAABCwAAAAABAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABCwAAAAACCwAAAAABAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABCwAAAAAACwAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABCwAAAAABCwAAAAABAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACwAAAAACCwAAAAABAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAA + tiles: AwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAACEAAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAEAAAAAADEQAAAAABEQAAAAABEQAAAAABEQAAAAACEAAAAAABEAAAAAAAEAAAAAACEAAAAAADEAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAEAAAAAADEQAAAAADEQAAAAACEQAAAAABEQAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAEAAAAAAAEQAAAAAAEQAAAAABEQAAAAADEQAAAAADEAAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAEAAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEAAAAAAAEAAAAAABAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAEAAAAAAAEQAAAAACEQAAAAADEQAAAAADEQAAAAABEAAAAAABEAAAAAADAgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAgAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAACEAAAAAABEAAAAAABEAAAAAACAgAAAAAAEAAAAAADEAAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACwAAAAAACwAAAAACAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABCwAAAAABCwAAAAABAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACCwAAAAAACwAAAAACAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACCwAAAAABCwAAAAACAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADCwAAAAADCwAAAAACAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAB version: 6 7,6: ind: 7,6 - tiles: AwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAADwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAADwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAABwAAAAACAwAAAAACHAAAAAACHAAAAAABHAAAAAADHAAAAAAAAwAAAAABAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABBwAAAAAAAwAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABAwAAAAAAAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABBwAAAAACAwAAAAABHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAAAAwAAAAACAwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAADAgAAAAAAAwAAAAADAwAAAAACHAAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAAAAwAAAAADAgAAAAAABwAAAAABPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAADAgAAAAAAAwAAAAAD + tiles: AwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACDwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACDwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAABwAAAAACAwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAwAAAAABAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAABwAAAAACAwAAAAADHAAAAAADHAAAAAABHAAAAAABHAAAAAACAwAAAAAAAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABBwAAAAABAwAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAABAwAAAAACAwAAAAACBwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAwAAAAACAwAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAABAwAAAAAAAgAAAAAABwAAAAACPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAADAgAAAAAAAwAAAAAB version: 6 7,7: ind: 7,7 - tiles: HAAAAAADHAAAAAABHAAAAAACHAAAAAABHAAAAAACHAAAAAACAwAAAAAAAgAAAAAABwAAAAADPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAACFAAAAAAAAwAAAAADHAAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAAAAwAAAAADAgAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAADFAAAAAAAAwAAAAABHAAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAABAwAAAAADAwAAAAABAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABFAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABAgAAAAAAAwAAAAABFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADFAAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACFAAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADFAAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAAABQAAAAADBQAAAAABBQAAAAABAwAAAAABAwAAAAABAwAAAAACBQAAAAACBQAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAABQAAAAACBQAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAAABQAAAAACBQAAAAADBQAAAAADAwAAAAACBQAAAAABBQAAAAAABQAAAAABAwAAAAADAgAAAAAAAwAAAAAABQAAAAABBQAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAADBQAAAAACBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAACBQAAAAADBQAAAAAD + tiles: HAAAAAACHAAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAADAwAAAAAAAgAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAACFAAAAAAAAwAAAAACHAAAAAABHAAAAAADHAAAAAAAHAAAAAABHAAAAAADHAAAAAAAAwAAAAAAAgAAAAAABwAAAAABPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAACFAAAAAAAAwAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAABAwAAAAAAAwAAAAADAgAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAACBwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACAgAAAAAAAwAAAAADFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACFAAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACFAAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAABBQAAAAACAwAAAAADAwAAAAAAAwAAAAADBQAAAAAABQAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAACBQAAAAACBQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACBQAAAAAABQAAAAACBQAAAAABAwAAAAAABQAAAAACBQAAAAACBQAAAAABAwAAAAACAgAAAAAAAwAAAAABBQAAAAADBQAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACBQAAAAACBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACBQAAAAADBQAAAAAA version: 6 7,8: ind: 7,8 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAABQAAAAACBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAABQAAAAABBQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAACCgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAABQAAAAACAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADBQAAAAABAwAAAAADAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACBQAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAADBQAAAAABAwAAAAACAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAAABQAAAAABBQAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAACCgAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAACCAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAABQAAAAADBQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAAABQAAAAABBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAACCgAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAACAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAADBQAAAAADAwAAAAADAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAADBQAAAAACAwAAAAABAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAADBQAAAAACAwAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAACBQAAAAACBQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAADCgAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAACAAAAAACCAAAAAADCAAAAAAC version: 6 7,9: ind: 7,9 - tiles: AQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAgAAAAAACAAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAADBQAAAAADBQAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAABQAAAAADBQAAAAADBQAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAADAwAAAAABAgAAAAAACAAAAAACCgAAAAACCgAAAAACCgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA + tiles: AQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAACAAAAAACCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABBQAAAAAABQAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACBQAAAAABBQAAAAAABQAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAADAwAAAAABAgAAAAAACAAAAAACCgAAAAACCgAAAAADCgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA version: 6 8,2: ind: 8,2 - tiles: AQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAAABQAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAAABQAAAAABAwAAAAACBQAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAADCAAAAAABAgAAAAAAAwAAAAADAwAAAAAABQAAAAADAwAAAAADBQAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAAACAAAAAAAAgAAAAAA + tiles: AQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAACAwAAAAACBQAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAwAAAAADBQAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAADBQAAAAADAwAAAAAABQAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAAACAAAAAACAgAAAAAA version: 6 8,3: ind: 8,3 - tiles: AwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAAAwAAAAABAwAAAAACBQAAAAAAAwAAAAADBQAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABBQAAAAAAAwAAAAACBQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAABQAAAAACAwAAAAACBQAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADFAAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADFAAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAFAAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADFAAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAgAAAAAACAAAAAABAwAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAgAAAAAACAAAAAACFAAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAABCAAAAAABCAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAgAAAAAACAAAAAACAwAAAAACAgAAAAAACAAAAAABCgAAAAADCAAAAAACCAAAAAAACgAAAAADCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAACAAAAAACAgAAAAAAAgAAAAAA + tiles: AwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAwAAAAACAwAAAAAABQAAAAAAAwAAAAABBQAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACBQAAAAABAwAAAAADBQAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABBQAAAAAAAwAAAAADBQAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABFAAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABFAAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAADFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABFAAAAAAACAAAAAADCAAAAAACCAAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADFAAAAAAACAAAAAADCAAAAAACCAAAAAADCAAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABFAAAAAAACAAAAAADCAAAAAADCAAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAACAwAAAAADAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAgAAAAAACAAAAAACFAAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAACAAAAAADAwAAAAAAAgAAAAAACAAAAAAACgAAAAADCAAAAAAACAAAAAACCgAAAAACCAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAACAAAAAADAgAAAAAAAgAAAAAA version: 6 8,4: ind: 8,4 - tiles: AwAAAAADAgAAAAAACAAAAAADCgAAAAAACAAAAAAACAAAAAAACgAAAAACCAAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAACAwAAAAABAgAAAAAACAAAAAACCgAAAAACCAAAAAACCAAAAAACCgAAAAACCAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAADAwAAAAACAgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAACAAAAAADCgAAAAACCAAAAAACCAAAAAAACgAAAAABCAAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACCAAAAAACCAAAAAACCgAAAAACCAAAAAACCAAAAAADCgAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAACCgAAAAACCAAAAAABCAAAAAACCgAAAAABCAAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAAACAAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAAAAgAAAAAACAAAAAACCgAAAAABCAAAAAACCAAAAAACCgAAAAABCAAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADAwAAAAABAgAAAAAACAAAAAADCgAAAAADCAAAAAADCAAAAAACCgAAAAAACAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABAwAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAAACAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAACAAAAAACCAAAAAACCAAAAAAAAwAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAADCAAAAAABCAAAAAABCAAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAACCAAAAAADCAAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAACAAAAAACCgAAAAABCAAAAAADCAAAAAAACgAAAAACCAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAACAAAAAADCAAAAAAACgAAAAACCAAAAAAACAAAAAABCgAAAAABCAAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADAgAAAAAACAAAAAABCgAAAAABCAAAAAAACAAAAAADCgAAAAABCAAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 8,5: ind: 8,5 - tiles: AwAAAAACAwAAAAADAgAAAAAACwAAAAAACwAAAAAACwAAAAABCwAAAAABCwAAAAAACwAAAAACCwAAAAACCwAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAACwAAAAADCwAAAAABCwAAAAABCwAAAAADCwAAAAADCwAAAAABCwAAAAACCwAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAwAAAAABAwAAAAAAAgAAAAAACwAAAAADCwAAAAABCwAAAAAACwAAAAABCwAAAAACCwAAAAAACwAAAAAACwAAAAACAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAACwAAAAACCwAAAAAACwAAAAACCwAAAAAACwAAAAAACwAAAAABCwAAAAACCwAAAAABAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAACAwAAAAABAwAAAAABAgAAAAAACAAAAAABCAAAAAADDgAAAAAADgAAAAABDgAAAAABDgAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAABAwAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAABDgAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAABAwAAAAABAwAAAAAACAAAAAAACAAAAAABCAAAAAABDgAAAAADCAAAAAACCgAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAADCAAAAAAADgAAAAABCAAAAAAACAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAAACAAAAAADDgAAAAAADgAAAAAADgAAAAADDgAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACFAAAAAAAFAAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAB + tiles: AwAAAAADAwAAAAADAgAAAAAACwAAAAABCwAAAAABCwAAAAABCwAAAAABCwAAAAADCwAAAAACCwAAAAABCwAAAAACAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAACwAAAAACCwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAADCwAAAAABCwAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAwAAAAABAwAAAAAAAgAAAAAACwAAAAACCwAAAAADCwAAAAAACwAAAAABCwAAAAADCwAAAAABCwAAAAACCwAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAACwAAAAADCwAAAAAACwAAAAADCwAAAAADCwAAAAAACwAAAAADCwAAAAAACwAAAAACAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAABCAAAAAABDgAAAAADDgAAAAADDgAAAAADDgAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAAACAAAAAADDgAAAAACCAAAAAADCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAACAwAAAAACCAAAAAADCAAAAAACCAAAAAABDgAAAAAACAAAAAABCgAAAAADCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAACAAAAAADCAAAAAABDgAAAAADCAAAAAADCAAAAAAACAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAADDgAAAAADDgAAAAABDgAAAAACDgAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABFAAAAAAAFAAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAB version: 6 8,6: ind: 8,6 - tiles: AwAAAAACAwAAAAACFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADFAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAgAAAAAACAAAAAACCAAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAACCAAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAACAAAAAADCAAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAABCAAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAACAAAAAADCAAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAAAAwAAAAABFAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAFAAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAACAAAAAACCAAAAAADAwAAAAAAAwAAAAABFAAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABFAAAAAAAAwAAAAACBQAAAAAAAwAAAAAABQAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAAAAwAAAAABBQAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAABAwAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABFAAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAACAAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAACAAAAAACCAAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAABCAAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAACAAAAAABCAAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAACAAAAAACCAAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAACAAAAAADCAAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAACAwAAAAAAFAAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAABCAAAAAABAwAAAAABAwAAAAABFAAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAADCAAAAAACAwAAAAACAwAAAAADFAAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABFAAAAAAAAwAAAAACBQAAAAAAAwAAAAADBQAAAAACAwAAAAADAgAAAAAACAAAAAAACAAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAACAwAAAAAABQAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAA version: 6 8,7: ind: 8,7 - tiles: AwAAAAAAAwAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAACAwAAAAAABQAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADFAAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACFAAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAACgAAAAACCAAAAAAACAAAAAAACAAAAAADCgAAAAADAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABQAAAAAAAwAAAAADAgAAAAAACgAAAAAACAAAAAACCAAAAAACCAAAAAADCgAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBQAAAAACAwAAAAACAgAAAAAACgAAAAADCAAAAAADCAAAAAABCAAAAAADCgAAAAABAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBQAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBQAAAAAAAwAAAAABAwAAAAAAAwAAAAADBQAAAAACAwAAAAADBQAAAAACAwAAAAABBQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAACAwAAAAACAgAAAAAAAwAAAAACBQAAAAADAwAAAAADBQAAAAABAwAAAAAABQAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAD + tiles: AwAAAAACAwAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAABBQAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAAAFAAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAACgAAAAABCAAAAAAACAAAAAAACAAAAAABCgAAAAADAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBQAAAAACAwAAAAACAgAAAAAACgAAAAAACAAAAAAACAAAAAAACAAAAAAACgAAAAADAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABQAAAAAAAwAAAAAAAgAAAAAACgAAAAABCAAAAAADCAAAAAAACAAAAAACCgAAAAACAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBQAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBQAAAAACAwAAAAABAwAAAAABAwAAAAABBQAAAAABAwAAAAABBQAAAAADAwAAAAAABQAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAADAwAAAAACAgAAAAAAAwAAAAAABQAAAAACAwAAAAABBQAAAAABAwAAAAACBQAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAD version: 6 8,8: ind: 8,8 - tiles: BQAAAAADAwAAAAADAgAAAAAAAwAAAAACBQAAAAABAwAAAAAABQAAAAACAwAAAAADBQAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABBQAAAAAABQAAAAACBQAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABBQAAAAABBQAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACQAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAABQAAAAAAAwAAAAADBQAAAAABBQAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABBQAAAAACAwAAAAACBQAAAAAABQAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADBQAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAABQAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAABQAAAAACAwAAAAACBQAAAAACBQAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAADBwAAAAACAwAAAAADAgAAAAAA + tiles: BQAAAAAAAwAAAAADAgAAAAAAAwAAAAADBQAAAAADAwAAAAAABQAAAAAAAwAAAAADBQAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABBQAAAAADBQAAAAADBQAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAABBQAAAAACBQAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABBQAAAAACAwAAAAAABQAAAAADBQAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADBQAAAAABAwAAAAABBQAAAAAABQAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACBQAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAABBQAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAABQAAAAAAAwAAAAABBQAAAAAABQAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACAwAAAAADAgAAAAAA version: 6 8,9: ind: 8,9 - tiles: CAAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAACBwAAAAAAAwAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAABAgAAAAAACAAAAAACAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAABCAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CAAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAABAwAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAAAgAAAAAACAAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 9,2: ind: 9,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 9,3: ind: 9,3 - tiles: AwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAABQAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACBQAAAAACAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAABCAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAABQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABBQAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADCAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAAACAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAABCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAA version: 6 9,4: ind: 9,4 - tiles: CAAAAAACCAAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAACCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAADAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAB + tiles: CAAAAAABCAAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAABCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAAACAAAAAACCAAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAB version: 6 9,5: ind: 9,5 - tiles: HQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: HQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 9,6: ind: 9,6 - tiles: AwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAADFAAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAFAAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAACAAAAAADCAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAACAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAACAAAAAAACAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADCAAAAAAACAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAACCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAA + tiles: AwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAADFAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAFAAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAACAAAAAABCAAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAACAAAAAACCAAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAACAAAAAADCAAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAACAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADCAAAAAAACAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABCAAAAAACCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAA version: 6 9,7: ind: 9,7 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAAABwAAAAADBwAAAAACBwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADBwAAAAABBwAAAAACBwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADBwAAAAACBwAAAAABBwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABBwAAAAADBwAAAAADBwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAABwAAAAABBwAAAAADBwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAC + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACBwAAAAAABwAAAAACBwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABBwAAAAAABwAAAAADBwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADBwAAAAAABwAAAAACBwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACBwAAAAABBwAAAAADBwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABBwAAAAACBwAAAAACBwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAD version: 6 9,8: ind: 9,8 - tiles: BwAAAAABBwAAAAABBwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAABwAAAAAABwAAAAACAgAAAAAABwAAAAAABwAAAAADAgAAAAAABwAAAAADBwAAAAACAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAABwAAAAACBwAAAAABAgAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAABwAAAAABBwAAAAAAAgAAAAAABwAAAAABBwAAAAACAgAAAAAABwAAAAADBwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAAABwAAAAACBwAAAAACBwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACBwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAABBwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAADFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAABwAAAAABBwAAAAACAgAAAAAABwAAAAACBwAAAAADAgAAAAAABwAAAAAABwAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAAAAgAAAAAABwAAAAACBwAAAAACAgAAAAAABwAAAAACBwAAAAADAgAAAAAABwAAAAAABwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAABwAAAAADBwAAAAADAgAAAAAABwAAAAABBwAAAAADAgAAAAAABwAAAAABBwAAAAAB + tiles: BwAAAAADBwAAAAACBwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAACAgAAAAAAHQAAAAAAHQAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAADBwAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAABBwAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAABFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAABwAAAAACBwAAAAADAgAAAAAABwAAAAADBwAAAAADAgAAAAAABwAAAAADBwAAAAADAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAABAgAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAAABwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAAAAgAAAAAABwAAAAABBwAAAAACAgAAAAAABwAAAAABBwAAAAABAgAAAAAABwAAAAACBwAAAAAB version: 6 9,9: ind: 9,9 - tiles: AwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,6: ind: 0,6 @@ -12136,7 +12136,6 @@ entities: 8660: 115,171 9637: 142,145 10599: 159,143 - 10600: 159,135 10601: 156,135 10602: 153,135 10603: 153,143 @@ -12219,7 +12218,6 @@ entities: 8654: 115,167 10590: 156,133 10591: 153,133 - 10592: 159,133 10660: 107,44 10675: 108,38 12095: 125,110 @@ -12259,7 +12257,6 @@ entities: 10586: 158,141 10587: 152,133 10588: 155,133 - 10589: 158,133 10661: 104,44 10665: 104,38 13270: 143,121 @@ -12377,10 +12374,8 @@ entities: 10578: 153,142 10579: 156,142 10580: 159,142 - 10581: 159,134 10582: 156,134 10583: 153,134 - 10593: 159,134 10594: 156,134 10595: 153,134 10596: 153,142 @@ -12654,7 +12649,6 @@ entities: 10572: 152,142 10573: 155,142 10574: 158,142 - 10575: 158,134 10576: 155,134 10577: 152,134 10652: 104,45 @@ -19504,13 +19498,6 @@ entities: - type: Transform pos: 81.5,69.5 parent: 1 - - uid: 29740 - components: - - type: MetaData - name: dorm six airlock - - type: Transform - pos: 158.5,136.5 - parent: 1 - uid: 29741 components: - type: MetaData @@ -21620,6 +21607,13 @@ entities: rot: 1.5707963267948966 rad pos: 149.5,140.5 parent: 1 + - uid: 29787 + components: + - type: MetaData + name: dressing room glass airlock + - type: Transform + pos: 158.5,136.5 + parent: 1 - uid: 29824 components: - type: Transform @@ -27966,11 +27960,6 @@ entities: - type: Transform pos: 113.5,49.5 parent: 1 - - uid: 29764 - components: - - type: Transform - pos: 159.5,134.5 - parent: 1 - uid: 29765 components: - type: Transform @@ -28222,11 +28211,6 @@ entities: - type: Transform pos: 136.5,52.5 parent: 1 - - uid: 29760 - components: - - type: Transform - pos: 159.5,134.5 - parent: 1 - proto: BedsheetYellow entities: - uid: 22821 @@ -29844,11 +29828,6 @@ entities: - type: Transform pos: 156.5,136.5 parent: 1 - - uid: 29748 - components: - - type: Transform - pos: 159.5,136.5 - parent: 1 - uid: 29749 components: - type: Transform @@ -36731,6 +36710,11 @@ entities: - type: Transform pos: 81.5,126.5 parent: 1 + - uid: 15803 + components: + - type: Transform + pos: 93.5,130.5 + parent: 1 - uid: 15819 components: - type: Transform @@ -56634,11 +56618,6 @@ entities: - type: Transform pos: 69.5,49.5 parent: 1 - - uid: 2740 - components: - - type: Transform - pos: 102.5,149.5 - parent: 1 - uid: 2825 components: - type: Transform @@ -68584,11 +68563,6 @@ entities: - type: Transform pos: 102.5,144.5 parent: 1 - - uid: 26877 - components: - - type: Transform - pos: 100.5,149.5 - parent: 1 - uid: 26923 components: - type: Transform @@ -68639,11 +68613,6 @@ entities: - type: Transform pos: 145.5,114.5 parent: 1 - - uid: 29074 - components: - - type: Transform - pos: 101.5,149.5 - parent: 1 - uid: 29181 components: - type: Transform @@ -69779,6 +69748,21 @@ entities: - type: Transform pos: 103.5,127.5 parent: 1 + - uid: 37691 + components: + - type: Transform + pos: 99.5,148.5 + parent: 1 + - uid: 37692 + components: + - type: Transform + pos: 100.5,148.5 + parent: 1 + - uid: 37693 + components: + - type: Transform + pos: 101.5,148.5 + parent: 1 - proto: CableMV entities: - uid: 32 @@ -70081,6 +70065,11 @@ entities: - type: Transform pos: 62.5,84.5 parent: 1 + - uid: 2740 + components: + - type: Transform + pos: 122.5,122.5 + parent: 1 - uid: 2929 components: - type: Transform @@ -70736,6 +70725,11 @@ entities: - type: Transform pos: 45.5,126.5 parent: 1 + - uid: 6945 + components: + - type: Transform + pos: 122.5,123.5 + parent: 1 - uid: 6952 components: - type: Transform @@ -73131,6 +73125,11 @@ entities: - type: Transform pos: 135.5,85.5 parent: 1 + - uid: 13703 + components: + - type: Transform + pos: 127.5,136.5 + parent: 1 - uid: 13773 components: - type: Transform @@ -73289,7 +73288,7 @@ entities: - uid: 13918 components: - type: Transform - pos: 95.5,124.5 + pos: 125.5,136.5 parent: 1 - uid: 13920 components: @@ -73299,22 +73298,22 @@ entities: - uid: 13921 components: - type: Transform - pos: 94.5,124.5 + pos: 126.5,136.5 parent: 1 - uid: 13923 components: - type: Transform - pos: 94.5,125.5 + pos: 95.5,132.5 parent: 1 - uid: 13924 components: - type: Transform - pos: 94.5,126.5 + pos: 95.5,131.5 parent: 1 - uid: 13925 components: - type: Transform - pos: 94.5,127.5 + pos: 107.5,154.5 parent: 1 - uid: 13926 components: @@ -73324,17 +73323,17 @@ entities: - uid: 13927 components: - type: Transform - pos: 94.5,129.5 + pos: 100.5,154.5 parent: 1 - uid: 13928 components: - type: Transform - pos: 94.5,130.5 + pos: 106.5,154.5 parent: 1 - uid: 13929 components: - type: Transform - pos: 94.5,131.5 + pos: 103.5,154.5 parent: 1 - uid: 13930 components: @@ -73349,7 +73348,7 @@ entities: - uid: 13932 components: - type: Transform - pos: 95.5,136.5 + pos: 102.5,154.5 parent: 1 - uid: 13933 components: @@ -73379,7 +73378,7 @@ entities: - uid: 13938 components: - type: Transform - pos: 94.5,128.5 + pos: 101.5,154.5 parent: 1 - uid: 13939 components: @@ -73464,12 +73463,12 @@ entities: - uid: 13970 components: - type: Transform - pos: 121.5,136.5 + pos: 99.5,130.5 parent: 1 - uid: 13972 components: - type: Transform - pos: 121.5,138.5 + pos: 104.5,154.5 parent: 1 - uid: 13974 components: @@ -73509,17 +73508,17 @@ entities: - uid: 13981 components: - type: Transform - pos: 121.5,155.5 + pos: 115.5,137.5 parent: 1 - uid: 13982 components: - type: Transform - pos: 120.5,155.5 + pos: 116.5,137.5 parent: 1 - uid: 13983 components: - type: Transform - pos: 119.5,155.5 + pos: 102.5,132.5 parent: 1 - uid: 13984 components: @@ -73529,67 +73528,67 @@ entities: - uid: 13986 components: - type: Transform - pos: 118.5,155.5 + pos: 102.5,133.5 parent: 1 - uid: 13987 components: - type: Transform - pos: 115.5,155.5 + pos: 102.5,134.5 parent: 1 - uid: 13988 components: - type: Transform - pos: 113.5,155.5 + pos: 102.5,135.5 parent: 1 - uid: 13989 components: - type: Transform - pos: 116.5,155.5 + pos: 102.5,137.5 parent: 1 - uid: 13990 components: - type: Transform - pos: 112.5,155.5 + pos: 102.5,139.5 parent: 1 - uid: 13991 components: - type: Transform - pos: 111.5,155.5 + pos: 102.5,136.5 parent: 1 - uid: 13992 components: - type: Transform - pos: 105.5,155.5 + pos: 102.5,140.5 parent: 1 - uid: 13993 components: - type: Transform - pos: 110.5,155.5 + pos: 94.5,127.5 parent: 1 - uid: 13994 components: - type: Transform - pos: 109.5,155.5 + pos: 95.5,124.5 parent: 1 - uid: 13995 components: - type: Transform - pos: 107.5,155.5 + pos: 94.5,125.5 parent: 1 - uid: 13996 components: - type: Transform - pos: 108.5,155.5 + pos: 94.5,124.5 parent: 1 - uid: 13997 components: - type: Transform - pos: 106.5,155.5 + pos: 94.5,126.5 parent: 1 - uid: 13998 components: - type: Transform - pos: 104.5,155.5 + pos: 94.5,128.5 parent: 1 - uid: 13999 components: @@ -73599,27 +73598,22 @@ entities: - uid: 14000 components: - type: Transform - pos: 103.5,155.5 + pos: 94.5,129.5 parent: 1 - uid: 14001 components: - type: Transform - pos: 101.5,155.5 - parent: 1 - - uid: 14002 - components: - - type: Transform - pos: 102.5,155.5 + pos: 93.5,129.5 parent: 1 - uid: 14003 components: - type: Transform - pos: 100.5,155.5 + pos: 93.5,130.5 parent: 1 - uid: 14004 components: - type: Transform - pos: 99.5,155.5 + pos: 93.5,131.5 parent: 1 - uid: 14005 components: @@ -73629,32 +73623,32 @@ entities: - uid: 14006 components: - type: Transform - pos: 98.5,155.5 + pos: 99.5,154.5 parent: 1 - uid: 14007 components: - type: Transform - pos: 97.5,155.5 + pos: 98.5,154.5 parent: 1 - uid: 14008 components: - type: Transform - pos: 96.5,155.5 + pos: 97.5,154.5 parent: 1 - uid: 14009 components: - type: Transform - pos: 95.5,155.5 + pos: 96.5,154.5 parent: 1 - uid: 14010 components: - type: Transform - pos: 95.5,138.5 + pos: 100.5,130.5 parent: 1 - uid: 14011 components: - type: Transform - pos: 94.5,155.5 + pos: 95.5,154.5 parent: 1 - uid: 14012 components: @@ -73679,7 +73673,7 @@ entities: - uid: 14016 components: - type: Transform - pos: 96.5,136.5 + pos: 102.5,130.5 parent: 1 - uid: 14017 components: @@ -73704,7 +73698,7 @@ entities: - uid: 14021 components: - type: Transform - pos: 96.5,138.5 + pos: 101.5,130.5 parent: 1 - uid: 14022 components: @@ -73744,12 +73738,12 @@ entities: - uid: 14036 components: - type: Transform - pos: 120.5,136.5 + pos: 118.5,137.5 parent: 1 - uid: 14037 components: - type: Transform - pos: 120.5,138.5 + pos: 117.5,137.5 parent: 1 - uid: 14038 components: @@ -73886,6 +73880,11 @@ entities: - type: Transform pos: 120.5,151.5 parent: 1 + - uid: 14267 + components: + - type: Transform + pos: 102.5,138.5 + parent: 1 - uid: 14279 components: - type: Transform @@ -73899,7 +73898,7 @@ entities: - uid: 14356 components: - type: Transform - pos: 114.5,155.5 + pos: 95.5,133.5 parent: 1 - uid: 14357 components: @@ -73919,7 +73918,7 @@ entities: - uid: 14362 components: - type: Transform - pos: 94.5,132.5 + pos: 105.5,143.5 parent: 1 - uid: 14363 components: @@ -74511,6 +74510,11 @@ entities: - type: Transform pos: 92.5,47.5 parent: 1 + - uid: 15360 + components: + - type: Transform + pos: 106.5,143.5 + parent: 1 - uid: 15388 components: - type: Transform @@ -74664,137 +74668,122 @@ entities: - uid: 15790 components: - type: Transform - pos: 89.5,147.5 + pos: 107.5,143.5 parent: 1 - uid: 15791 components: - type: Transform - pos: 89.5,146.5 + pos: 108.5,143.5 parent: 1 - uid: 15792 components: - type: Transform - pos: 89.5,145.5 + pos: 109.5,143.5 parent: 1 - uid: 15793 components: - type: Transform - pos: 89.5,144.5 + pos: 110.5,143.5 parent: 1 - uid: 15794 components: - type: Transform - pos: 89.5,143.5 + pos: 111.5,143.5 parent: 1 - uid: 15795 components: - type: Transform - pos: 89.5,142.5 + pos: 112.5,143.5 parent: 1 - uid: 15796 components: - type: Transform - pos: 89.5,141.5 + pos: 113.5,143.5 parent: 1 - uid: 15797 components: - type: Transform - pos: 89.5,140.5 + pos: 114.5,142.5 parent: 1 - uid: 15798 components: - type: Transform - pos: 89.5,139.5 + pos: 114.5,141.5 parent: 1 - uid: 15799 components: - type: Transform - pos: 89.5,137.5 + pos: 114.5,140.5 parent: 1 - uid: 15800 components: - type: Transform - pos: 89.5,136.5 + pos: 114.5,138.5 parent: 1 - uid: 15801 components: - type: Transform - pos: 89.5,135.5 + pos: 114.5,139.5 parent: 1 - uid: 15802 components: - type: Transform - pos: 89.5,134.5 - parent: 1 - - uid: 15803 - components: - - type: Transform - pos: 89.5,133.5 + pos: 114.5,137.5 parent: 1 - uid: 15804 components: - type: Transform - pos: 89.5,132.5 - parent: 1 - - uid: 15805 - components: - - type: Transform - pos: 89.5,131.5 + pos: 114.5,143.5 parent: 1 - uid: 15806 components: - type: Transform - pos: 89.5,138.5 + pos: 102.5,141.5 parent: 1 - uid: 15807 components: - type: Transform - pos: 89.5,129.5 + pos: 104.5,143.5 parent: 1 - uid: 15808 components: - type: Transform - pos: 89.5,128.5 + pos: 102.5,143.5 parent: 1 - uid: 15809 components: - type: Transform - pos: 89.5,127.5 + pos: 103.5,143.5 parent: 1 - uid: 15810 components: - type: Transform - pos: 89.5,126.5 + pos: 102.5,142.5 parent: 1 - uid: 15811 components: - type: Transform - pos: 89.5,125.5 + pos: 124.5,122.5 parent: 1 - uid: 15812 components: - type: Transform - pos: 88.5,125.5 - parent: 1 - - uid: 15813 - components: - - type: Transform - pos: 88.5,124.5 + pos: 123.5,122.5 parent: 1 - uid: 15814 components: - type: Transform - pos: 88.5,123.5 + pos: 127.5,125.5 parent: 1 - uid: 15815 components: - type: Transform - pos: 88.5,122.5 + pos: 125.5,128.5 parent: 1 - uid: 15817 components: - type: Transform - pos: 92.5,130.5 + pos: 125.5,129.5 parent: 1 - uid: 15830 components: @@ -74804,27 +74793,27 @@ entities: - uid: 15831 components: - type: Transform - pos: 87.5,122.5 + pos: 125.5,125.5 parent: 1 - uid: 15832 components: - type: Transform - pos: 86.5,122.5 + pos: 125.5,126.5 parent: 1 - uid: 15833 components: - type: Transform - pos: 84.5,122.5 + pos: 125.5,127.5 parent: 1 - uid: 15834 components: - type: Transform - pos: 85.5,122.5 + pos: 126.5,125.5 parent: 1 - uid: 15835 components: - type: Transform - pos: 83.5,122.5 + pos: 123.5,128.5 parent: 1 - uid: 15836 components: @@ -76071,6 +76060,11 @@ entities: - type: Transform pos: 88.5,43.5 parent: 1 + - uid: 18199 + components: + - type: Transform + pos: 124.5,128.5 + parent: 1 - uid: 18237 components: - type: Transform @@ -82041,6 +82035,11 @@ entities: - type: Transform pos: 99.5,74.5 parent: 1 + - uid: 26729 + components: + - type: Transform + pos: 125.5,124.5 + parent: 1 - uid: 26865 components: - type: Transform @@ -83001,6 +83000,11 @@ entities: - type: Transform pos: 92.5,73.5 parent: 1 + - uid: 29074 + components: + - type: Transform + pos: 109.5,154.5 + parent: 1 - uid: 29078 components: - type: Transform @@ -83336,6 +83340,21 @@ entities: - type: Transform pos: 144.5,123.5 parent: 1 + - uid: 29740 + components: + - type: Transform + pos: 108.5,154.5 + parent: 1 + - uid: 29760 + components: + - type: Transform + pos: 125.5,122.5 + parent: 1 + - uid: 29786 + components: + - type: Transform + pos: 125.5,123.5 + parent: 1 - uid: 29852 components: - type: Transform @@ -83601,6 +83620,11 @@ entities: - type: Transform pos: 140.5,144.5 parent: 1 + - uid: 30211 + components: + - type: Transform + pos: 110.5,154.5 + parent: 1 - uid: 30358 components: - type: Transform @@ -83906,6 +83930,11 @@ entities: - type: Transform pos: 99.5,73.5 parent: 1 + - uid: 32021 + components: + - type: Transform + pos: 100.5,156.5 + parent: 1 - uid: 32094 components: - type: Transform @@ -84156,6 +84185,16 @@ entities: - type: Transform pos: 132.5,93.5 parent: 1 + - uid: 32418 + components: + - type: Transform + pos: 101.5,156.5 + parent: 1 + - uid: 32419 + components: + - type: Transform + pos: 102.5,156.5 + parent: 1 - uid: 32423 components: - type: Transform @@ -85496,6 +85535,26 @@ entities: - type: Transform pos: 156.5,131.5 parent: 1 + - uid: 37153 + components: + - type: Transform + pos: 103.5,156.5 + parent: 1 + - uid: 37178 + components: + - type: Transform + pos: 104.5,156.5 + parent: 1 + - uid: 37187 + components: + - type: Transform + pos: 106.5,156.5 + parent: 1 + - uid: 37192 + components: + - type: Transform + pos: 107.5,156.5 + parent: 1 - uid: 37223 components: - type: Transform @@ -85981,6 +86040,356 @@ entities: - type: Transform pos: 45.5,106.5 parent: 1 + - uid: 37610 + components: + - type: Transform + pos: 108.5,156.5 + parent: 1 + - uid: 37611 + components: + - type: Transform + pos: 109.5,156.5 + parent: 1 + - uid: 37649 + components: + - type: Transform + pos: 110.5,156.5 + parent: 1 + - uid: 37650 + components: + - type: Transform + pos: 111.5,156.5 + parent: 1 + - uid: 37651 + components: + - type: Transform + pos: 112.5,156.5 + parent: 1 + - uid: 37652 + components: + - type: Transform + pos: 88.5,137.5 + parent: 1 + - uid: 37653 + components: + - type: Transform + pos: 88.5,136.5 + parent: 1 + - uid: 37654 + components: + - type: Transform + pos: 88.5,135.5 + parent: 1 + - uid: 37655 + components: + - type: Transform + pos: 88.5,134.5 + parent: 1 + - uid: 37656 + components: + - type: Transform + pos: 88.5,133.5 + parent: 1 + - uid: 37657 + components: + - type: Transform + pos: 88.5,132.5 + parent: 1 + - uid: 37658 + components: + - type: Transform + pos: 88.5,130.5 + parent: 1 + - uid: 37659 + components: + - type: Transform + pos: 88.5,131.5 + parent: 1 + - uid: 37660 + components: + - type: Transform + pos: 102.5,131.5 + parent: 1 + - uid: 37661 + components: + - type: Transform + pos: 103.5,131.5 + parent: 1 + - uid: 37662 + components: + - type: Transform + pos: 104.5,131.5 + parent: 1 + - uid: 37663 + components: + - type: Transform + pos: 105.5,131.5 + parent: 1 + - uid: 37664 + components: + - type: Transform + pos: 106.5,131.5 + parent: 1 + - uid: 37665 + components: + - type: Transform + pos: 107.5,131.5 + parent: 1 + - uid: 37666 + components: + - type: Transform + pos: 108.5,131.5 + parent: 1 + - uid: 37667 + components: + - type: Transform + pos: 109.5,131.5 + parent: 1 + - uid: 37668 + components: + - type: Transform + pos: 110.5,131.5 + parent: 1 + - uid: 37669 + components: + - type: Transform + pos: 111.5,131.5 + parent: 1 + - uid: 37670 + components: + - type: Transform + pos: 112.5,131.5 + parent: 1 + - uid: 37671 + components: + - type: Transform + pos: 113.5,131.5 + parent: 1 + - uid: 37672 + components: + - type: Transform + pos: 114.5,131.5 + parent: 1 + - uid: 37673 + components: + - type: Transform + pos: 114.5,132.5 + parent: 1 + - uid: 37674 + components: + - type: Transform + pos: 114.5,133.5 + parent: 1 + - uid: 37675 + components: + - type: Transform + pos: 114.5,134.5 + parent: 1 + - uid: 37676 + components: + - type: Transform + pos: 114.5,135.5 + parent: 1 + - uid: 37677 + components: + - type: Transform + pos: 114.5,136.5 + parent: 1 + - uid: 37678 + components: + - type: Transform + pos: 101.5,137.5 + parent: 1 + - uid: 37679 + components: + - type: Transform + pos: 100.5,137.5 + parent: 1 + - uid: 37680 + components: + - type: Transform + pos: 99.5,137.5 + parent: 1 + - uid: 37681 + components: + - type: Transform + pos: 98.5,137.5 + parent: 1 + - uid: 37682 + components: + - type: Transform + pos: 98.5,130.5 + parent: 1 + - uid: 37683 + components: + - type: Transform + pos: 97.5,130.5 + parent: 1 + - uid: 37684 + components: + - type: Transform + pos: 96.5,130.5 + parent: 1 + - uid: 37685 + components: + - type: Transform + pos: 95.5,130.5 + parent: 1 + - uid: 37686 + components: + - type: Transform + pos: 99.5,153.5 + parent: 1 + - uid: 37687 + components: + - type: Transform + pos: 99.5,152.5 + parent: 1 + - uid: 37688 + components: + - type: Transform + pos: 99.5,151.5 + parent: 1 + - uid: 37689 + components: + - type: Transform + pos: 99.5,150.5 + parent: 1 + - uid: 37690 + components: + - type: Transform + pos: 99.5,149.5 + parent: 1 + - uid: 37694 + components: + - type: Transform + pos: 99.5,148.5 + parent: 1 + - uid: 37695 + components: + - type: Transform + pos: 100.5,148.5 + parent: 1 + - uid: 37696 + components: + - type: Transform + pos: 101.5,148.5 + parent: 1 + - uid: 37697 + components: + - type: Transform + pos: 102.5,148.5 + parent: 1 + - uid: 37698 + components: + - type: Transform + pos: 102.5,147.5 + parent: 1 + - uid: 37699 + components: + - type: Transform + pos: 102.5,146.5 + parent: 1 + - uid: 37700 + components: + - type: Transform + pos: 102.5,145.5 + parent: 1 + - uid: 37701 + components: + - type: Transform + pos: 102.5,144.5 + parent: 1 + - uid: 37702 + components: + - type: Transform + pos: 124.5,136.5 + parent: 1 + - uid: 37703 + components: + - type: Transform + pos: 123.5,136.5 + parent: 1 + - uid: 37704 + components: + - type: Transform + pos: 112.5,155.5 + parent: 1 + - uid: 37705 + components: + - type: Transform + pos: 113.5,155.5 + parent: 1 + - uid: 37706 + components: + - type: Transform + pos: 114.5,155.5 + parent: 1 + - uid: 37707 + components: + - type: Transform + pos: 115.5,155.5 + parent: 1 + - uid: 37708 + components: + - type: Transform + pos: 116.5,155.5 + parent: 1 + - uid: 37709 + components: + - type: Transform + pos: 118.5,155.5 + parent: 1 + - uid: 37710 + components: + - type: Transform + pos: 119.5,155.5 + parent: 1 + - uid: 37711 + components: + - type: Transform + pos: 120.5,155.5 + parent: 1 + - uid: 37712 + components: + - type: Transform + pos: 121.5,155.5 + parent: 1 + - uid: 37713 + components: + - type: Transform + pos: 88.5,138.5 + parent: 1 + - uid: 37714 + components: + - type: Transform + pos: 88.5,139.5 + parent: 1 + - uid: 37715 + components: + - type: Transform + pos: 89.5,139.5 + parent: 1 + - uid: 37716 + components: + - type: Transform + pos: 90.5,139.5 + parent: 1 + - uid: 37717 + components: + - type: Transform + pos: 91.5,139.5 + parent: 1 + - uid: 37718 + components: + - type: Transform + pos: 92.5,139.5 + parent: 1 + - uid: 37719 + components: + - type: Transform + pos: 93.5,139.5 + parent: 1 - proto: CableTerminal entities: - uid: 6147 @@ -87561,28 +87970,6 @@ entities: - type: Transform pos: 152.5,133.5 parent: 1 -- proto: CarpetWhite - entities: - - uid: 29786 - components: - - type: Transform - pos: 159.5,134.5 - parent: 1 - - uid: 29787 - components: - - type: Transform - pos: 159.5,133.5 - parent: 1 - - uid: 29788 - components: - - type: Transform - pos: 158.5,134.5 - parent: 1 - - uid: 29789 - components: - - type: Transform - pos: 158.5,133.5 - parent: 1 - proto: CartridgeCap entities: - uid: 35849 @@ -88582,12 +88969,6 @@ entities: rot: 3.141592653589793 rad pos: 89.5,80.5 parent: 1 - - uid: 12065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 165.5,136.5 - parent: 1 - uid: 12425 components: - type: Transform @@ -88699,12 +89080,6 @@ entities: rot: 1.5707963267948966 rad pos: 95.5,56.5 parent: 1 - - uid: 13703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 162.5,138.5 - parent: 1 - uid: 14118 components: - type: Transform @@ -89193,12 +89568,6 @@ entities: - type: Transform pos: 60.5,128.5 parent: 1 - - uid: 18199 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 165.5,135.5 - parent: 1 - uid: 18231 components: - type: Transform @@ -89853,12 +90222,6 @@ entities: - type: Transform pos: 153.5,131.5 parent: 1 - - uid: 28791 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 165.5,134.5 - parent: 1 - uid: 29041 components: - type: Transform @@ -90128,11 +90491,6 @@ entities: - type: Transform pos: 164.5,141.5 parent: 1 - - uid: 30211 - components: - - type: Transform - pos: 164.5,138.5 - parent: 1 - uid: 30373 components: - type: Transform @@ -92700,16 +93058,6 @@ entities: rot: 3.141592653589793 rad pos: 71.5,158.5 parent: 1 - - uid: 32418 - components: - - type: Transform - pos: 164.5,136.5 - parent: 1 - - uid: 32419 - components: - - type: Transform - pos: 164.5,137.5 - parent: 1 - uid: 32420 components: - type: Transform @@ -98233,35 +98581,11 @@ entities: - type: Transform pos: 172.5,133.5 parent: 1 - - uid: 37153 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 165.5,131.5 - parent: 1 - uid: 37163 components: - type: Transform pos: 152.5,146.5 parent: 1 - - uid: 37178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 165.5,132.5 - parent: 1 - - uid: 37187 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 165.5,133.5 - parent: 1 - - uid: 37192 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 164.5,131.5 - parent: 1 - uid: 37193 components: - type: Transform @@ -103159,6 +103483,24 @@ entities: - type: Transform pos: 91.5,131.5 parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 35442 components: - type: Transform @@ -104982,15 +105324,21 @@ entities: - uid: 24662 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: 102.5,150.5 parent: 1 + - type: Physics + bodyType: Dynamic - uid: 26980 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad pos: 102.5,149.5 parent: 1 + - type: Physics + bodyType: Dynamic - proto: ConveyorBelt entities: - uid: 1438 @@ -106091,6 +106439,13 @@ entities: - type: Transform pos: 74.5,91.5 parent: 1 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 14002 + components: + - type: Transform + pos: 149.5,142.5 + parent: 1 - proto: DefaultStationBeaconDetectiveRoom entities: - uid: 13538 @@ -106105,6 +106460,13 @@ entities: - type: Transform pos: 158.5,80.5 parent: 1 +- proto: DefaultStationBeaconDorms + entities: + - uid: 15805 + components: + - type: Transform + pos: 155.5,138.5 + parent: 1 - proto: DefaultStationBeaconEngineering entities: - uid: 9021 @@ -119074,11 +119436,6 @@ entities: - type: Transform pos: 156.5,133.5 parent: 1 - - uid: 29796 - components: - - type: Transform - pos: 159.5,133.5 - parent: 1 - uid: 29797 components: - type: Transform @@ -120901,15 +121258,25 @@ entities: - uid: 24346 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 102.5,152.5 parent: 1 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 - uid: 29056 components: - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: 102.5,151.5 parent: 1 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 - proto: EncryptionKeyCommon entities: - uid: 25187 @@ -183991,6 +184358,11 @@ entities: rot: 1.5707963267948966 rad pos: 58.5,35.5 parent: 1 + - uid: 28791 + components: + - type: Transform + pos: 159.5,136.5 + parent: 1 - uid: 28903 components: - type: Transform @@ -200272,18 +200644,51 @@ entities: - uid: 2521 components: - type: Transform + anchored: False pos: 100.5,147.5 parent: 1 + - type: Physics + bodyType: Dynamic - uid: 10229 components: - type: Transform + anchored: False pos: 100.5,148.5 parent: 1 + - type: Physics + bodyType: Dynamic - uid: 15404 components: - type: Transform + anchored: False pos: 99.5,147.5 parent: 1 + - type: Physics + bodyType: Dynamic + - uid: 29788 + components: + - type: Transform + anchored: False + pos: 99.5,148.5 + parent: 1 + - type: Physics + bodyType: Dynamic + - uid: 29789 + components: + - type: Transform + anchored: False + pos: 99.5,149.5 + parent: 1 + - type: Physics + bodyType: Dynamic + - uid: 29796 + components: + - type: Transform + anchored: False + pos: 100.5,149.5 + parent: 1 + - type: Physics + bodyType: Dynamic - proto: RadioHandheld entities: - uid: 5205 @@ -207287,15 +207692,6 @@ entities: linkedPorts: 29745: - Pressed: DoorBolt - - uid: 29755 - components: - - type: Transform - pos: 159.5,136.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 29740: - - Pressed: DoorBolt - uid: 29756 components: - type: Transform @@ -208852,13 +209248,6 @@ entities: - type: Transform pos: 104.5,170.5 parent: 1 -- proto: SignRedSix - entities: - - uid: 32021 - components: - - type: Transform - pos: 159.49802,136.56282 - parent: 1 - proto: SignRedThree entities: - uid: 22845 @@ -209194,8 +209583,11 @@ entities: - uid: 29055 components: - type: Transform + anchored: False pos: 97.5,151.5 parent: 1 + - type: Physics + bodyType: Dynamic - proto: Sink entities: - uid: 34543 @@ -212572,6 +212964,12 @@ entities: rot: 3.141592653589793 rad pos: 61.5,23.5 parent: 1 + - uid: 15813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 164.5,131.5 + parent: 1 - uid: 20890 components: - type: Transform @@ -218958,11 +219356,6 @@ entities: - type: Transform pos: 71.5,61.5 parent: 1 - - uid: 29800 - components: - - type: Transform - pos: 158.5,133.5 - parent: 1 - uid: 29801 components: - type: Transform @@ -219359,18 +219752,15 @@ entities: - type: Transform pos: 101.5,139.5 parent: 1 - - uid: 14267 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 98.5,150.5 - parent: 1 - uid: 15368 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 97.5,149.5 parent: 1 + - type: Physics + bodyType: Dynamic - uid: 23877 components: - type: Transform @@ -219391,11 +219781,22 @@ entities: - type: Transform pos: 110.5,130.5 parent: 1 - - uid: 26729 + - uid: 29748 + components: + - type: Transform + anchored: False + pos: 97.5,147.5 + parent: 1 + - type: Physics + bodyType: Dynamic + - uid: 29800 components: - type: Transform - pos: 97.5,150.5 + anchored: False + pos: 97.5,148.5 parent: 1 + - type: Physics + bodyType: Dynamic - uid: 34032 components: - type: Transform @@ -219410,24 +219811,15 @@ entities: parent: 1 - proto: TeslaGroundingRod entities: - - uid: 2518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,147.5 - parent: 1 - uid: 14268 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 98.5,147.5 parent: 1 - - uid: 15360 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,148.5 - parent: 1 + - type: Physics + bodyType: Dynamic - uid: 23852 components: - type: Transform @@ -219448,6 +219840,22 @@ entities: - type: Transform pos: 112.5,130.5 parent: 1 + - uid: 29755 + components: + - type: Transform + anchored: False + pos: 98.5,148.5 + parent: 1 + - type: Physics + bodyType: Dynamic + - uid: 29802 + components: + - type: Transform + anchored: False + pos: 98.5,149.5 + parent: 1 + - type: Physics + bodyType: Dynamic - proto: TimpaniInstrument entities: - uid: 26782 @@ -219882,11 +220290,6 @@ entities: - type: Transform pos: 122.5,108.5 parent: 1 - - uid: 29802 - components: - - type: Transform - pos: 158.5,133.5 - parent: 1 - uid: 29807 components: - type: Transform @@ -220470,10 +220873,10 @@ entities: - type: Transform pos: 109.5,64.5 parent: 1 - - uid: 37611 + - uid: 26877 components: - type: Transform - pos: 148.5,142.5 + pos: 159.5,135.5 parent: 1 - proto: VendingMachineCoffee entities: @@ -220644,10 +221047,10 @@ entities: parent: 1 - proto: VendingMachinePride entities: - - uid: 37610 + - uid: 29764 components: - type: Transform - pos: 160.5,139.5 + pos: 159.5,134.5 parent: 1 - proto: VendingMachineRobotics entities: @@ -220777,6 +221180,13 @@ entities: - type: Transform pos: 93.5,58.5 parent: 1 +- proto: VendingMachineWinter + entities: + - uid: 2518 + components: + - type: Transform + pos: 159.5,133.5 + parent: 1 - proto: VendingMachineYouTool entities: - uid: 16049 @@ -232830,11 +233240,6 @@ entities: - type: Transform pos: 159.5,144.5 parent: 1 - - uid: 6945 - components: - - type: Transform - pos: 159.5,136.5 - parent: 1 - uid: 6946 components: - type: Transform @@ -240036,6 +240441,11 @@ entities: - type: Transform pos: 107.5,23.5 parent: 1 + - uid: 12065 + components: + - type: Transform + pos: 159.5,136.5 + parent: 1 - uid: 12512 components: - type: Transform diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index b46b44b7040..d5f7599a008 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -128,7 +128,7 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: HwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACHwAAAAABHwAAAAAANAAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAA + tiles: HwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACHwAAAAABHwAAAAAANAAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAA version: 6 -1,-2: ind: -1,-2 @@ -148,7 +148,7 @@ entities: version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAALgAAAAAAeQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAeQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAALgAAAAAAeQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAeQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAeQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAALgAAAAAAeQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAB version: 6 -3,-1: ind: -3,-1 @@ -160,7 +160,7 @@ entities: version: 6 -3,0: ind: -3,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAeQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAeQAAAAACAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAABAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAeQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAXQAAAAACZAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADZAAAAAAAXQAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAD + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAeQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAeQAAAAACAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAABAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAeQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAXQAAAAACZAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADZAAAAAAAXQAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAD version: 6 -4,0: ind: -4,0 @@ -192,15 +192,15 @@ entities: version: 6 -1,4: ind: -1,4 - tiles: HwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAcAAAAAACcAAAAAAAHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAPwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAA + tiles: HwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAcAAAAAACcAAAAAAAHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAPwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAA version: 6 -2,4: ind: -2,4 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAQAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAHwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACTwAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADTwAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAACTwAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAGAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAQAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAHwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACTwAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADTwAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAACTwAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAGAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAA version: 6 -3,4: ind: -3,4 - tiles: AAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAATQAAAAABTQAAAAADfgAAAAAAfgAAAAAATQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAQAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAQAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAATQAAAAABTQAAAAADfgAAAAAAfgAAAAAATQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAQAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAQAAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAATwAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATwAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAA version: 6 -2,5: ind: -2,5 @@ -208,7 +208,7 @@ entities: version: 6 -3,5: ind: -3,5 - tiles: AAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,4: ind: -4,4 @@ -224,7 +224,7 @@ entities: version: 6 0,4: ind: 0,4 - tiles: cAAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANAAAAAABcAAAAAAAHwAAAAAAcAAAAAABcAAAAAACfgAAAAAAcAAAAAACbAAAAAAAXQAAAAABXQAAAAACXQAAAAADHwAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAABcAAAAAABfgAAAAAAcAAAAAACfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAADcAAAAAAAfgAAAAAAcAAAAAACfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACHwAAAAACcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAFBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAAAAAAAAAA + tiles: cAAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANAAAAAABcAAAAAAAHwAAAAAAcAAAAAABcAAAAAACfgAAAAAAcAAAAAACbAAAAAAAXQAAAAABXQAAAAACXQAAAAADHwAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAABcAAAAAABfgAAAAAAcAAAAAACfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAADcAAAAAAAfgAAAAAAcAAAAAACfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACHwAAAAACcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAGBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 @@ -232,7 +232,7 @@ entities: version: 6 1,0: ind: 1,0 - tiles: HwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACbAAAAAAAHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAACbAAAAAAAHwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAACbAAAAAAAHwAAAAADfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAADbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABHwAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADbAAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAADMQAAAAAAMQAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACbAAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAA + tiles: HwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACbAAAAAAAHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAACbAAAAAAAHwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAACbAAAAAAAHwAAAAADfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAADbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABHwAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADbAAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAADMQAAAAAAMQAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACbAAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAACbAAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAA version: 6 2,1: ind: 2,1 @@ -240,7 +240,7 @@ entities: version: 6 2,0: ind: 2,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAADcAAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAADbAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAADcAAAAAABcAAAAAABbAAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAABcAAAAAADcAAAAAABbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAHwAAAAABMQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAbAAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAABbAAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADLgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAAALgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAACfgAAAAAAHwAAAAAAHwAAAAACLgAAAAAAHwAAAAACfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAAAbAAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABLgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAD + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAADcAAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAADbAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAADcAAAAAABcAAAAAABbAAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAABcAAAAAADcAAAAAABbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAHwAAAAABMQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAbAAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAABbAAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADLgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAAALgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAACfgAAAAAAHwAAAAAAHwAAAAACLgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABLgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAD version: 6 2,-1: ind: 2,-1 @@ -256,7 +256,7 @@ entities: version: 6 1,4: ind: 1,4 - tiles: fgAAAAAAcAAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAcAAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,2: ind: 2,2 @@ -280,7 +280,7 @@ entities: version: 6 2,-2: ind: 2,-2 - tiles: bAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAXQAAAAADcAAAAAAAXQAAAAACfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABOAAAAAAAHwAAAAAAUQAAAAAAUQAAAAAAHwAAAAACXQAAAAAAcAAAAAACXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABOAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAXQAAAAACcAAAAAABXQAAAAADfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABbAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAATQAAAAABeQAAAAAATQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADcAAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABeQAAAAAAeQAAAAAAeQAAAAACeQAAAAADfgAAAAAAXQAAAAABcAAAAAACcAAAAAABcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAABcAAAAAABcAAAAAABcAAAAAABeQAAAAABeQAAAAACeQAAAAADeQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABHwAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAATQAAAAACTQAAAAAATQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAADHwAAAAACXQAAAAABfgAAAAAATQAAAAADTQAAAAADTQAAAAADXQAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABHwAAAAADXQAAAAADfgAAAAAATQAAAAADTQAAAAAATQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAXQAAAAADMQAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAADXQAAAAADXQAAAAABXQAAAAADbAAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAADcAAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAAAXQAAAAAAXQAAAAADXQAAAAABbAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAACcAAAAAADcAAAAAAD + tiles: bAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAXQAAAAADcAAAAAAAXQAAAAACfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABOAAAAAAAHwAAAAAAUQAAAAAAUQAAAAAAHwAAAAACXQAAAAAAcAAAAAACXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABOAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAXQAAAAACcAAAAAABXQAAAAADfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABbAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAATQAAAAABeQAAAAAATQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADcAAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAeQAAAAAAeQAAAAACeQAAAAADfgAAAAAAXQAAAAABcAAAAAACcAAAAAABcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAABcAAAAAABcAAAAAABcAAAAAABXQAAAAAAeQAAAAACeQAAAAADeQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABHwAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAATQAAAAACTQAAAAAATQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAADHwAAAAACXQAAAAABfgAAAAAATQAAAAADTQAAAAADTQAAAAADXQAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABHwAAAAADXQAAAAADfgAAAAAATQAAAAADTQAAAAAATQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAXQAAAAADMQAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAADXQAAAAADXQAAAAABXQAAAAADbAAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAADcAAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAAAXQAAAAAAXQAAAAADXQAAAAABbAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAACcAAAAAADcAAAAAAD version: 6 3,-2: ind: 3,-2 @@ -308,27 +308,27 @@ entities: version: 6 -3,-3: ind: -3,-3 - tiles: BwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABBwAAAAADBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABBwAAAAADBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAADHwAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: fgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: fgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAbAAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAbAAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACXQAAAAABXQAAAAACXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACXQAAAAADXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADXQAAAAADXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACXQAAAAABXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAbAAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAbAAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACXQAAAAABXQAAAAACXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACXQAAAAADXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADXQAAAAADXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACXQAAAAABXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-6: ind: -3,-6 @@ -344,11 +344,11 @@ entities: version: 6 -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAGBwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAHBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAGBwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAHBwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-2: ind: 4,-2 @@ -368,7 +368,7 @@ entities: version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATQAAAAAATQAAAAACTQAAAAAAfgAAAAAATQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAATQAAAAAATQAAAAADTQAAAAADTQAAAAADTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAAAMQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADTQAAAAABXQAAAAACfgAAAAAAbQAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAABbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAATQAAAAACTQAAAAABXQAAAAACfgAAAAAAbQAAAAAAcAAAAAACXQAAAAADXQAAAAABXQAAAAACcAAAAAADbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAcAAAAAACXQAAAAABbQAAAAAAXQAAAAADcAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAATQAAAAAATQAAAAACTQAAAAAAfgAAAAAATQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAADTQAAAAADTQAAAAADTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAAAMQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADTQAAAAABXQAAAAACfgAAAAAAbQAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAABbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAATQAAAAACTQAAAAABXQAAAAACfgAAAAAAbQAAAAAAcAAAAAACXQAAAAADXQAAAAABXQAAAAACcAAAAAADbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAcAAAAAACXQAAAAABbQAAAAAAXQAAAAADcAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 1,-4: ind: 1,-4 @@ -376,11 +376,11 @@ entities: version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAFBwAAAAAABwAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAGBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACTQAAAAABTQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAALgAAAAAALgAAAAAATQAAAAABTQAAAAAATQAAAAAATQAAAAABfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAbQAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAATQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAATQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAFBwAAAAAAfgAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAGBwAAAAADBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAABwAAAAAEBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACTQAAAAABTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAALgAAAAAALgAAAAAATQAAAAABTQAAAAAATQAAAAAATQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAbQAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAATQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAATQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAGBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAABwAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAADfgAAAAAAcAAAAAABcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAACfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAACfgAAAAAAcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAcAAAAAADfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAABegAAAAABegAAAAABegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAGBwAAAAAGBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAABwAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAADfgAAAAAAcAAAAAABcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAACfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAACfgAAAAAAcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAcAAAAAADfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAABegAAAAABegAAAAABegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAegAAAAAA version: 6 8,1: ind: 8,1 @@ -392,7 +392,7 @@ entities: version: 6 5,-4: ind: 5,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAAEBwAAAAAGBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMgAAAAABMgAAAAAAMgAAAAAAMgAAAAACMgAAAAADMgAAAAACMgAAAAABMgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAMgAAAAAAMgAAAAACMgAAAAADMgAAAAABMgAAAAAAMgAAAAADMgAAAAACMgAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMgAAAAACMgAAAAADMgAAAAACMgAAAAADMgAAAAABMgAAAAAAMgAAAAADMgAAAAACBwAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAfgAAAAAAegAAAAABfgAAAAAAMgAAAAAAMgAAAAABMgAAAAABMgAAAAADMgAAAAABMgAAAAABMgAAAAABMgAAAAACfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAABfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAABegAAAAADegAAAAACfgAAAAAAegAAAAADegAAAAABegAAAAABfgAAAAAAegAAAAABfgAAAAAAegAAAAABfgAAAAAAegAAAAABegAAAAACegAAAAADegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAAEBwAAAAAGBwAAAAAFBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMgAAAAABMgAAAAAAMgAAAAAAMgAAAAACMgAAAAADMgAAAAACMgAAAAABMgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAMgAAAAAAMgAAAAACMgAAAAADMgAAAAABMgAAAAAAMgAAAAADMgAAAAACMgAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMgAAAAACMgAAAAADMgAAAAACMgAAAAADMgAAAAABMgAAAAAAMgAAAAADMgAAAAACBwAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAfgAAAAAAegAAAAABfgAAAAAAMgAAAAAAMgAAAAABMgAAAAABMgAAAAADMgAAAAABMgAAAAABMgAAAAABMgAAAAACfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAABfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAABegAAAAADegAAAAACfgAAAAAAegAAAAADegAAAAABegAAAAABfgAAAAAAegAAAAABfgAAAAAAegAAAAABfgAAAAAAegAAAAABegAAAAACegAAAAADegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 5,-3: ind: 5,-3 @@ -408,7 +408,7 @@ entities: version: 6 6,-4: ind: 6,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAADfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAADfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAABBwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAA version: 6 6,-5: ind: 6,-5 @@ -424,23 +424,23 @@ entities: version: 6 7,-2: ind: 7,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACfgAAAAAATwAAAAAAHwAAAAABHwAAAAACHwAAAAADTwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAADAAAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAADTwAAAAAAHwAAAAAAHwAAAAACHwAAAAACTwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAACBwAAAAAHfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAABBwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAACAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAfgAAAAAAZAAAAAAAXQAAAAACZAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACfgAAAAAATwAAAAAAHwAAAAABHwAAAAACHwAAAAADTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADAAAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAADTwAAAAAAHwAAAAAAHwAAAAACHwAAAAACTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAHfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAABBwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAfgAAAAAAZAAAAAAAXQAAAAACZAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,-3: ind: 7,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAA version: 6 8,-2: ind: 8,-2 - tiles: BwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACfgAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 8,-3: ind: 8,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,-1: ind: 7,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAZAAAAAAAXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZAAAAAAAXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAABBwAAAAADBwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAZAAAAAAAXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZAAAAAAAXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 6,-1: ind: 6,-1 @@ -448,11 +448,11 @@ entities: version: 6 8,-1: ind: 8,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 8,0: ind: 8,0 - tiles: BwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADfwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACfwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAABwAAAAAAfwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAADfwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,0: ind: 7,0 @@ -468,7 +468,7 @@ entities: version: 6 7,1: ind: 7,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfwAAAAAABwAAAAAEfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAABwAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAABwAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfwAAAAAABwAAAAADfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAegAAAAACegAAAAAAfgAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAegAAAAABegAAAAADfgAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQAAAAAAAegAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQAAAAAAAegAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQAAAAAAAegAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfwAAAAAABwAAAAAEfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAADfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQAAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQAAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQAAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAA version: 6 6,1: ind: 6,1 @@ -480,7 +480,7 @@ entities: version: 6 7,2: ind: 7,2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACfwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACfwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAGBwAAAAAAfwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAHBwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAHwAAAAAB + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAABwAAAAAAfwAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACfwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAACfwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAGBwAAAAAAfwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAHBwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAHwAAAAAB version: 6 6,2: ind: 6,2 @@ -488,19 +488,19 @@ entities: version: 6 8,2: ind: 8,2 - tiles: fgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAACBwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAABwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAFBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAHBwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 8,3: ind: 8,3 - tiles: EQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: EQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,3: ind: 7,3 - tiles: HwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAOAAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAADOAAAAAAAfgAAAAAATwAAAAAAEQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAACOAAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAABOAAAAAAAOAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAHBwAAAAAFBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAF + tiles: HwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAOAAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAADOAAAAAAAfgAAAAAATwAAAAAAEQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAACOAAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAABOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAHBwAAAAAFBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAF version: 6 8,4: ind: 8,4 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,4: ind: 7,4 @@ -508,11 +508,11 @@ entities: version: 6 6,3: ind: 6,3 - tiles: HwAAAAAAHwAAAAADfgAAAAAAHwAAAAADEQAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAABfgAAAAAAHwAAAAADEQAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACEQAAAAAAEQAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAACfgAAAAAABwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAADHwAAAAABfgAAAAAABwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAA + tiles: HwAAAAAAHwAAAAADfgAAAAAAHwAAAAADEQAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAABfgAAAAAAHwAAAAADEQAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACEQAAAAAAEQAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAA version: 6 6,4: ind: 6,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,3: ind: 5,3 @@ -536,15 +536,15 @@ entities: version: 6 3,3: ind: 3,3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAACegAAAAACegAAAAADegAAAAADegAAAAADBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAABwAAAAAGBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAHwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAAegAAAAABegAAAAADHwAAAAABHwAAAAACHwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAACegAAAAABegAAAAADegAAAAADegAAAAADegAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAABLwAAAAADLwAAAAAAJwAAAAADLwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAbQAAAAAAHwAAAAADegAAAAACLwAAAAAALwAAAAACJwAAAAADLwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAegAAAAABLwAAAAABLwAAAAAAEQAAAAAALwAAAAADBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAHwAAAAAAegAAAAAALwAAAAACLwAAAAADLwAAAAADLwAAAAABBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAADLwAAAAADLwAAAAAALwAAAAACLwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAABegAAAAADegAAAAABegAAAAACegAAAAAAegAAAAABDgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAAADgAAAAADfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAACbQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAACegAAAAACegAAAAADegAAAAADegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAABwAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAHwAAAAABBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAAegAAAAABegAAAAADHwAAAAABHwAAAAACHwAAAAABBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAACegAAAAABegAAAAADegAAAAADegAAAAADegAAAAACBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAABLwAAAAADLwAAAAAAJwAAAAADLwAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAbQAAAAAAHwAAAAADegAAAAACLwAAAAAALwAAAAACJwAAAAADLwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAegAAAAABLwAAAAABLwAAAAAAEQAAAAAALwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAHwAAAAAAegAAAAAALwAAAAACLwAAAAADLwAAAAADLwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAADLwAAAAADLwAAAAAALwAAAAACLwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAABegAAAAADegAAAAABegAAAAACegAAAAAAegAAAAABDgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAAADgAAAAADfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAACbQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: cAAAAAAAcAAAAAACfgAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAABfgAAAAAAcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAcAAAAAAAcAAAAAADfgAAAAAAcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAADfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAADgAAAAABfgAAAAAAfgAAAAAAfgAAAAAADgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAADDgAAAAAADgAAAAACDgAAAAABDgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAABDgAAAAABDgAAAAACfgAAAAAADgAAAAAADgAAAAACDgAAAAAB + tiles: cAAAAAAAcAAAAAACfgAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAABfgAAAAAAcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAABBwAAAAAABwAAAAAAcAAAAAAAcAAAAAADfgAAAAAAcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAADfgAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAACBwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAADgAAAAABfgAAAAAAfgAAAAAAfgAAAAAADgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAADDgAAAAAADgAAAAACDgAAAAABDgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAABDgAAAAABDgAAAAACfgAAAAAADgAAAAAADgAAAAACDgAAAAAB version: 6 3,4: ind: 3,4 - tiles: DgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAA + tiles: DgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAA version: 6 4,4: ind: 4,4 @@ -552,7 +552,7 @@ entities: version: 6 2,4: ind: 2,4 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAADgAAAAABDgAAAAACDgAAAAAADgAAAAADfgAAAAAAfgAAAAAAfgAAAAAADgAAAAABfgAAAAAADgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAADgAAAAABDgAAAAACDgAAAAAADgAAAAADfgAAAAAAfgAAAAAAfgAAAAAADgAAAAABfgAAAAAADgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAABBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 6,-6: ind: 6,-6 @@ -576,7 +576,7 @@ entities: version: 6 0,5: ind: 0,5 - tiles: AAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAABwAAAAAABwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,5: ind: 1,5 @@ -618,7 +618,6 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 1598: 38,13 3591: 58,-30 4105: 30,50 5749: 91,1 @@ -776,11 +775,6 @@ entities: 1181: 4,21 1182: 7,25 1183: 7,26 - 1537: 33,3 - 1538: 30,3 - 1539: 27,3 - 1550: 36,2 - 1551: 36,3 1570: 30,14 1571: 31,10 1572: 31,11 @@ -795,8 +789,6 @@ entities: 1593: 33,14 1594: 34,12 1595: 33,12 - 1669: 14,9 - 1670: 14,10 1708: 33,21 1709: 33,22 1726: 12,-26 @@ -935,7 +927,6 @@ entities: 3713: 52,-17 3714: 52,-18 3826: 22,36 - 3827: 23,36 3844: 18,38 3845: 18,36 3846: 17,36 @@ -956,7 +947,6 @@ entities: 4650: 45,-40 4651: 45,-39 4652: 45,-38 - 4708: 32,-27 4709: 37,-22 4710: 36,-22 4711: 34,-22 @@ -1093,6 +1083,22 @@ entities: 8772: 120,49 8773: 96,49 8774: 89,47 + 8813: 36,12 + 8814: 36,11 + 8840: 37,12 + 8841: 38,12 + 8842: 39,12 + 8843: 38,14 + 8844: 37,14 + 8855: 14,13 + 8856: 14,14 + 8858: 27,14 + 8859: 36,1 + 8860: 33,1 + 8861: 30,1 + 8862: 27,1 + 8873: 32,-27 + 8874: 4,30 - node: cleanable: True color: '#FFFFFFFF' @@ -1192,6 +1198,9 @@ entities: 8767: 93,2 8768: 92,2 8769: 91,2 + 8851: 14,11 + 8852: 14,10 + 8853: 14,9 - node: color: '#FFFFFFFF' id: BoxGreyscale @@ -1415,12 +1424,12 @@ entities: color: '#DE3A3A96' id: BrickTileSteelCornerNw decals: - 1509: 36,3 - 1510: 33,3 - 1511: 30,3 - 1512: 27,3 1553: 27,14 5715: 17,19 + 8864: 27,3 + 8865: 30,3 + 8866: 33,3 + 8867: 36,3 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw @@ -1742,11 +1751,11 @@ entities: 1522: 27,2 1523: 30,2 1524: 33,2 - 1525: 36,2 1559: 27,10 1560: 27,12 1561: 27,13 5718: 17,18 + 8868: 36,2 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW @@ -2029,12 +2038,12 @@ entities: 1692: 27,16 1853: 41,9 1970: 15,9 - 1974: 14,12 2572: 11,-13 3505: 41,-24 4131: 21,53 4142: 26,53 4979: 71,-11 + 8857: 14,12 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw @@ -2168,7 +2177,7 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteInnerSw decals: - 1973: 15,12 + 8849: 15,12 - node: color: '#FF81C996' id: BrickTileWhiteInnerSw @@ -2944,7 +2953,6 @@ entities: 1772: 23,27 1855: 41,10 1971: 15,10 - 1972: 15,11 1976: 14,13 2038: 27,29 2052: 23,29 @@ -2953,6 +2961,7 @@ entities: 2574: 11,-11 3507: 41,-23 3508: 41,-22 + 8847: 15,11 - node: color: '#EFB34196' id: BrickTileWhiteLineW @@ -3451,7 +3460,6 @@ entities: 3790: 24,38 3791: 23,38 3792: 23,37 - 3793: 23,36 3794: 24,37 3795: 25,37 3796: 25,36 @@ -3480,6 +3488,7 @@ entities: 4398: 29,43 4399: 28,43 4400: 27,43 + 8870: 23,36 - node: color: '#A4610696' id: CheckerNESW @@ -4128,7 +4137,6 @@ entities: 3325: 45,-16 3326: 44,-16 3797: 25,36 - 3798: 23,36 3799: 22,36 3800: 21,36 3801: 20,36 @@ -4172,6 +4180,7 @@ entities: 7914: 122,6 7915: 121,6 7916: 121,7 + 8869: 23,36 - node: color: '#D4D4D428' id: CheckerNWSE @@ -4373,7 +4382,6 @@ entities: 1536: 37,4 1569: 27,11 1652: 38,8 - 1671: 14,11 1707: 29,26 1710: 6,-26 1711: 6,-25 @@ -4450,7 +4458,6 @@ entities: 4715: 36,-20 4716: 35,-20 4717: 34,-20 - 4718: 32,-20 4783: -6,68 5075: 66,-19 5076: 71,-17 @@ -6511,9 +6518,6 @@ entities: color: '#DE3A3A60' id: FullTileOverlayGreyscale decals: - 1404: 37,13 - 1405: 36,14 - 1406: 36,13 1407: 36,12 1408: 36,11 1409: 36,10 @@ -6574,6 +6578,13 @@ entities: 3359: 42,-19 4977: 70,-10 4978: 72,-12 + 8832: 37,12 + 8833: 38,12 + 8834: 39,12 + 8835: 39,14 + 8838: 38,14 + 8839: 37,14 + 8846: 36,14 - node: color: '#EFB34137' id: FullTileOverlayGreyscale @@ -9743,11 +9754,6 @@ entities: decals: 2690: 15,-11 7512: 65,-54 - - node: - color: '#646464A1' - id: ThreeQuarterTileOverlayGreyscale - decals: - 4707: 32,-26 - node: color: '#79150096' id: ThreeQuarterTileOverlayGreyscale @@ -9902,11 +9908,6 @@ entities: decals: 2692: 15,-14 7514: 65,-52 - - node: - color: '#646464A1' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 4706: 32,-27 - node: color: '#79150096' id: ThreeQuarterTileOverlayGreyscale270 @@ -11451,9 +11452,6 @@ entities: 1583: 23,20 1584: 24,20 1585: 25,20 - 1596: 39,12 - 1597: 38,12 - 1672: 14,11 1823: 42,25 1880: 46,7 2146: -2,40 @@ -12226,7 +12224,8 @@ entities: 1,1: 0: 1919 1,2: - 0: 16315 + 0: 16187 + 1: 128 1,3: 0: 61559 1,-1: @@ -12262,9 +12261,11 @@ entities: 4,1: 0: 49081 4,2: - 0: 65520 + 0: 65488 + 1: 32 4,3: - 0: 65535 + 0: 61439 + 1: 4096 -5,0: 0: 61006 -4,1: @@ -12361,19 +12362,19 @@ entities: 0: 65535 -2,6: 0: 47 - 1: 60928 + 2: 60928 -2,7: 0: 61441 - 1: 238 + 2: 238 -2,8: 0: 65295 -1,5: 0: 53247 -1,6: 0: 52429 - 1: 4352 + 2: 4352 -1,7: - 1: 17 + 2: 17 0: 56524 -1,8: 0: 65487 @@ -12491,9 +12492,9 @@ entities: 0: 61152 -8,-3: 0: 41504 - 2: 128 + 3: 128 -9,-3: - 2: 240 + 3: 240 0: 61440 -8,-2: 0: 65522 @@ -12502,14 +12503,14 @@ entities: -9,-1: 0: 46065 -7,-3: - 2: 116 + 3: 116 0: 28672 -7,-2: 0: 65520 -7,-4: - 2: 17476 + 3: 17476 -7,-5: - 2: 17476 + 3: 17476 -6,-4: 0: 32759 -6,-3: @@ -12756,9 +12757,9 @@ entities: 0: 65527 -5,-8: 0: 34944 - 3: 768 + 4: 768 -4,-8: - 3: 1536 + 4: 1536 -4,-7: 0: 32624 -5,-7: @@ -12788,9 +12789,9 @@ entities: 0,-6: 0: 65295 0,-8: - 3: 3276 + 4: 3276 0,-9: - 3: 49152 + 4: 49152 0: 206 1,-7: 0: 61422 @@ -12855,7 +12856,7 @@ entities: 8,-5: 0: 65295 -8,-8: - 3: 768 + 4: 768 0: 34944 -8,-7: 0: 65528 @@ -12863,19 +12864,19 @@ entities: 0: 65524 -8,-6: 0: 8866 - 2: 32768 + 3: 32768 -9,-6: 0: 255 - 2: 61440 + 3: 61440 -7,-7: 0: 65534 -7,-6: 0: 112 - 2: 28672 + 3: 28672 -7,-8: - 3: 1604 + 4: 1604 -7,-9: - 3: 17476 + 4: 17476 0: 34952 -6,-8: 0: 10098 @@ -12884,7 +12885,7 @@ entities: -6,-6: 0: 30583 -6,-9: - 3: 8738 + 4: 8738 0: 34952 -11,8: 0: 3084 @@ -12909,210 +12910,210 @@ entities: -9,4: 0: 30576 -12,-4: - 3: 4369 - 2: 17476 + 4: 4369 + 3: 17476 -12,-5: - 3: 4369 - 2: 17476 + 4: 4369 + 3: 17476 -12,-3: - 3: 4369 - 2: 52420 + 4: 4369 + 3: 52420 -13,-3: - 3: 240 + 4: 240 -12,-2: - 3: 273 - 2: 3272 + 4: 273 + 3: 3272 -12,-1: 0: 20206 -13,-1: - 3: 61440 + 4: 61440 -12,0: 0: 3838 -11,-3: - 2: 65520 + 3: 65520 -11,-2: - 2: 4087 + 3: 4087 0: 16384 -11,-1: 0: 25702 -11,0: 0: 3830 -10,-3: - 2: 4368 + 3: 4368 0: 17472 -10,-1: 0: 32624 -10,-2: 0: 61156 -12,-6: - 3: 4368 - 2: 52416 + 4: 4368 + 3: 52416 -13,-6: - 3: 192 + 4: 192 -11,-6: - 2: 65520 + 3: 65520 -11,-8: - 3: 4368 + 4: 4368 0: 34952 -11,-9: 0: 63692 - 3: 17 + 4: 17 -11,-7: - 3: 4369 + 4: 4369 0: 52424 -10,-8: 0: 13107 - 3: 34952 + 4: 34952 -10,-7: 0: 65523 -10,-6: - 2: 4368 + 3: 4368 0: 17476 -10,-9: 0: 13107 - 3: 34952 + 4: 34952 -9,-8: - 3: 256 + 4: 256 0: 17472 -13,0: 0: 192 - 3: 62002 + 4: 62002 -12,2: - 3: 3840 + 4: 3840 -13,2: - 3: 3840 + 4: 3840 -12,1: 0: 2246 -11,1: 0: 25344 -11,2: - 3: 256 + 4: 256 0: 52462 -10,0: 0: 65520 -10,2: 0: 1537 -16,0: - 3: 36349 + 4: 36349 0: 20480 -16,-1: 0: 21845 - 3: 34952 + 4: 34952 -17,0: - 3: 36349 + 4: 36349 0: 20480 -16,1: 0: 21845 - 3: 34952 + 4: 34952 -17,1: - 3: 34952 + 4: 34952 0: 21845 -16,2: 0: 21845 - 3: 34952 + 4: 34952 -17,2: - 3: 34952 + 4: 34952 0: 21845 -16,3: - 3: 248 + 4: 248 -17,3: - 3: 248 + 4: 248 -15,0: - 3: 36349 + 4: 36349 0: 20480 -15,1: 0: 21845 - 3: 34952 + 4: 34952 -15,2: 0: 21845 - 3: 34952 + 4: 34952 -15,3: - 3: 248 + 4: 248 -15,-1: 0: 21845 - 3: 34952 + 4: 34952 -14,0: - 3: 50677 + 4: 50677 0: 4096 -14,1: 0: 4369 - 3: 17476 + 4: 17476 -14,2: 0: 4369 - 3: 19524 + 4: 19524 -14,3: - 3: 116 + 4: 116 -14,-1: 0: 4369 - 3: 50244 + 4: 50244 -16,-3: - 3: 35056 + 4: 35056 0: 20480 -17,-3: - 3: 35056 + 4: 35056 0: 20480 -16,-2: 0: 21845 - 3: 34952 + 4: 34952 -17,-2: - 3: 34952 + 4: 34952 0: 21845 -17,-1: - 3: 34952 + 4: 34952 0: 21845 -15,-3: - 3: 35056 + 4: 35056 0: 20480 -15,-2: 0: 21845 - 3: 34952 + 4: 34952 -14,-3: - 3: 17648 + 4: 17648 0: 4096 -14,-2: 0: 4369 - 3: 17476 + 4: 17476 -19,0: - 3: 63929 + 4: 63929 0: 64 -19,-1: - 3: 63624 + 4: 63624 -18,0: - 3: 36092 + 4: 36092 0: 16384 -19,1: - 3: 34952 + 4: 34952 -19,2: - 3: 34952 + 4: 34952 -19,3: - 3: 136 + 4: 136 -18,3: - 3: 248 + 4: 248 -18,-1: 0: 17476 - 3: 34952 + 4: 34952 -18,1: 0: 17476 - 3: 34952 + 4: 34952 -18,2: 0: 17476 - 3: 34952 + 4: 34952 -19,-3: - 3: 34944 + 4: 34944 -18,-3: - 3: 35056 + 4: 35056 0: 16384 -19,-2: - 3: 34952 + 4: 34952 -18,-2: 0: 17476 - 3: 34952 + 4: 34952 -11,9: - 3: 3148 + 4: 3148 -11,10: 0: 35852 -10,9: - 3: 273 + 4: 273 0: 52428 -10,10: 0: 57231 @@ -13121,21 +13122,21 @@ entities: -10,12: 0: 3276 -12,14: - 3: 17648 + 4: 17648 -13,14: - 3: 240 + 4: 240 -12,15: - 3: 17476 + 4: 17476 -12,16: - 3: 17476 + 4: 17476 -11,14: - 3: 240 + 4: 240 -11,15: 0: 43136 -11,16: 0: 57898 -10,14: - 3: 16 + 4: 16 0: 52428 -10,15: 0: 65520 @@ -13170,7 +13171,7 @@ entities: -2,18: 0: 56793 -2,19: - 3: 16 + 4: 16 0: 8 -1,17: 0: 53757 @@ -13194,11 +13195,11 @@ entities: 0: 15289 -8,19: 0: 960 - 3: 8192 + 4: 8192 -9,19: 0: 2279 -8,20: - 3: 8738 + 4: 8738 -7,18: 0: 3838 -7,19: @@ -13246,13 +13247,13 @@ entities: -10,20: 0: 18019 -8,21: - 3: 12834 + 4: 12834 -9,21: - 3: 32768 + 4: 32768 -8,22: - 3: 8738 + 4: 8738 -8,23: - 3: 34 + 4: 34 -12,21: 0: 204 -11,21: @@ -13260,13 +13261,13 @@ entities: -10,21: 0: 47104 -10,22: - 3: 4 + 4: 4 -16,14: - 3: 224 + 4: 224 -15,14: - 3: 240 + 4: 240 -14,14: - 3: 240 + 4: 240 1,13: 0: 65485 1,14: @@ -13344,7 +13345,8 @@ entities: 5,7: 0: 35771 5,3: - 0: 48123 + 0: 35835 + 1: 12288 5,8: 0: 4095 6,4: @@ -13565,7 +13567,7 @@ entities: 0: 3003 8,13: 0: 65280 - 3: 4 + 4: 4 8,14: 0: 47931 8,15: @@ -13576,11 +13578,11 @@ entities: 0: 65504 5,19: 0: 11 - 3: 17472 + 4: 17472 5,16: 0: 61152 5,20: - 3: 17476 + 4: 17476 6,17: 0: 273 6,18: @@ -13600,7 +13602,7 @@ entities: 10,11: 0: 65294 10,9: - 3: 546 + 4: 546 10,10: 0: 61166 10,12: @@ -13610,7 +13612,7 @@ entities: 11,11: 0: 65291 11,9: - 3: 546 + 4: 546 0: 34952 12,8: 0: 4095 @@ -13821,7 +13823,7 @@ entities: 15,-6: 0: 56607 15,-9: - 3: 29952 + 4: 29952 0: 519 16,-8: 0: 43691 @@ -13833,9 +13835,9 @@ entities: 0: 46079 4,-10: 0: 4096 - 3: 32768 + 4: 32768 5,-10: - 3: 4096 + 4: 4096 0: 43144 5,-12: 0: 35498 @@ -13876,7 +13878,7 @@ entities: 2,-10: 0: 30576 3,-10: - 3: 28672 + 4: 28672 8,-13: 0: 56797 9,-12: @@ -13991,13 +13993,13 @@ entities: 0: 3313 -11,-12: 0: 35007 - 3: 4096 + 4: 4096 -11,-11: - 3: 17 + 4: 17 0: 43144 -11,-10: 0: 52367 - 3: 4352 + 4: 4352 -11,-13: 0: 36863 -10,-12: @@ -14006,7 +14008,7 @@ entities: 0: 64443 -10,-10: 0: 13115 - 3: 34816 + 4: 34816 -10,-13: 0: 13107 -9,-12: @@ -14015,19 +14017,19 @@ entities: 0: 30591 -9,-10: 0: 7 - 3: 3840 + 4: 3840 -8,-12: 0: 28775 -8,-11: 0: 30503 -8,-10: 0: 7 - 3: 3840 + 4: 3840 -8,-13: 0: 16384 -7,-10: 0: 32769 - 3: 20224 + 4: 20224 -7,-11: 0: 9836 -7,-13: @@ -14036,19 +14038,19 @@ entities: 0: 32768 -6,-12: 0: 4108 - 3: 16384 + 4: 16384 -6,-10: - 3: 12100 + 4: 12100 0: 32768 -6,-13: 0: 4096 - 3: 16384 + 4: 16384 -6,-11: - 3: 17476 + 4: 17476 -5,-12: 0: 1 -8,-16: - 3: 102 + 4: 102 0: 24576 -9,-16: 0: 65419 @@ -14057,7 +14059,7 @@ entities: -9,-15: 0: 15 -8,-17: - 3: 25668 + 4: 25668 -7,-16: 0: 1 -7,-15: @@ -14068,17 +14070,17 @@ entities: 0: 18028 -6,-15: 0: 6 - 3: 64 + 4: 64 -6,-17: 0: 51328 -12,-17: 0: 4352 - 3: 17648 + 4: 17648 -13,-16: 0: 4478 -12,-16: 0: 60992 - 3: 4 + 4: 4 -12,-15: 0: 3812 -13,-15: @@ -14093,42 +14095,42 @@ entities: 0: 63711 -11,-17: 0: 4352 - 3: 34968 + 4: 34968 -11,-16: - 3: 136 + 4: 136 0: 32768 -10,-16: - 3: 17 + 4: 17 0: 64580 -10,-15: 0: 13119 -10,-14: 0: 13107 -10,-17: - 3: 4096 + 4: 4096 0: 16384 -9,-17: 0: 32768 -13,-17: 0: 51200 -11,-18: - 3: 34824 + 4: 34824 -11,-20: - 3: 34952 + 4: 34952 -11,-21: - 3: 34816 + 4: 34816 -11,-19: - 3: 34952 + 4: 34952 -8,-20: - 3: 17476 + 4: 17476 -8,-21: - 3: 17408 + 4: 17408 -8,-19: - 3: 17476 + 4: 17476 -8,-18: - 3: 17412 + 4: 17412 -7,-18: - 3: 112 + 4: 112 0: 34816 -6,-18: 0: 2 @@ -14139,17 +14141,17 @@ entities: -5,-19: 0: 8960 -15,-15: - 3: 128 + 4: 128 -14,-15: - 3: 48 + 4: 48 0: 52428 -15,-14: - 3: 128 + 4: 128 -14,-14: - 3: 4400 + 4: 4400 0: 52428 -14,-13: - 3: 4369 + 4: 4369 0: 17608 -14,-12: 0: 140 @@ -14196,12 +14198,12 @@ entities: 17,-13: 0: 65535 17,-11: - 4: 52416 + 5: 52416 18,-12: 0: 255 18,-11: - 4: 4368 - 5: 52416 + 5: 4368 + 6: 52416 18,-10: 0: 65520 18,-13: @@ -14209,7 +14211,7 @@ entities: 19,-12: 0: 255 19,-11: - 5: 4368 + 6: 4368 0: 52416 19,-10: 0: 65520 @@ -14317,7 +14319,7 @@ entities: 0: 15135 7,-16: 0: 4096 - 3: 50176 + 4: 50176 7,-15: 0: 30576 7,-14: @@ -14372,84 +14374,84 @@ entities: 0: 65481 32,4: 0: 21845 - 3: 8738 + 4: 8738 32,3: - 3: 62196 + 4: 62196 32,5: 0: 1365 - 3: 61986 + 4: 61986 32,6: - 3: 65535 + 4: 65535 31,5: - 3: 61986 + 4: 61986 0: 1365 31,6: - 3: 65535 + 4: 65535 32,7: 0: 21845 - 3: 8738 + 4: 8738 32,8: 0: 21845 - 3: 41506 + 4: 41506 33,5: - 3: 61994 + 4: 61994 0: 1365 33,6: - 3: 63479 + 4: 63479 33,4: 0: 21845 - 3: 8746 + 4: 8746 33,3: - 3: 29424 + 4: 29424 33,7: 0: 21845 - 3: 10786 + 4: 10786 33,8: 0: 21845 - 3: 10786 + 4: 10786 34,4: - 3: 4369 + 4: 4369 34,5: - 3: 61713 + 4: 61713 34,6: - 3: 63961 + 4: 63961 0: 32 34,7: - 3: 4369 + 4: 4369 34,3: - 3: 4368 + 4: 4368 34,8: - 3: 4369 + 4: 4369 22,-20: - 3: 8750 + 4: 8750 22,-19: - 3: 8738 + 4: 8738 22,-18: - 3: 8738 + 4: 8738 22,-17: - 3: 8738 + 4: 8738 22,-16: - 3: 34 + 4: 34 0: 64768 23,-20: - 3: 50255 + 4: 50255 23,-19: - 3: 50244 + 4: 50244 23,-18: - 3: 50244 + 4: 50244 23,-17: - 3: 3140 + 4: 3140 24,-20: - 3: 61455 + 4: 61455 0: 3840 24,-19: - 3: 61440 + 4: 61440 0: 3855 24,-18: - 3: 61440 + 4: 61440 0: 3855 24,-17: - 3: 3840 + 4: 3840 0: 15 21,-16: 0: 65280 @@ -14497,21 +14499,21 @@ entities: 0: 65535 22,-11: 0: 13107 - 2: 2184 + 3: 2184 22,-10: 0: 13107 - 2: 2184 + 3: 2184 22,-9: 0: 13107 - 6: 2184 + 7: 2184 22,-8: 0: 16383 23,-11: - 2: 819 + 3: 819 23,-10: - 2: 819 + 3: 819 23,-9: - 6: 819 + 7: 819 23,-8: 0: 4095 24,-12: @@ -14532,7 +14534,7 @@ entities: 0: 30503 22,-7: 0: 13107 - 2: 2184 + 3: 2184 22,-6: 0: 64387 22,-5: @@ -14540,7 +14542,7 @@ entities: 22,-4: 0: 61883 23,-7: - 2: 819 + 3: 819 0: 2184 23,-6: 0: 65392 @@ -14612,71 +14614,71 @@ entities: 0: 3581 26,-17: 0: 57345 - 3: 3918 + 4: 3918 27,-16: 0: 4368 - 3: 17476 + 4: 17476 27,-15: 0: 4369 - 3: 17476 + 4: 17476 27,-13: 0: 256 - 3: 17476 + 4: 17476 27,-12: - 3: 18022 + 4: 18022 0: 16 27,-17: - 3: 20224 + 4: 20224 0: 15 27,-14: - 3: 17476 + 4: 17476 25,-20: - 3: 61455 + 4: 61455 0: 3840 25,-19: 0: 3855 - 3: 61440 + 4: 61440 25,-18: 0: 3855 - 3: 61440 + 4: 61440 25,-17: 0: 15 - 3: 3840 + 4: 3840 26,-20: - 3: 65103 + 4: 65103 0: 256 26,-19: 0: 257 - 3: 65102 + 4: 65102 26,-18: 0: 257 - 3: 65102 + 4: 65102 26,-21: - 3: 5616 + 4: 5616 0: 16384 27,-20: - 3: 61455 + 4: 61455 0: 3840 27,-19: 0: 3855 - 3: 61440 + 4: 61440 27,-18: 0: 3855 - 3: 61440 + 4: 61440 27,-21: - 3: 4368 + 4: 4368 28,-20: - 3: 61455 + 4: 61455 0: 3840 28,-19: 0: 3855 - 3: 61440 + 4: 61440 28,-18: 0: 3855 - 3: 61440 + 4: 61440 28,-17: 0: 15 - 3: 3840 + 4: 3840 25,-11: 0: 3003 25,-10: @@ -14687,33 +14689,33 @@ entities: 0: 1423 26,-11: 0: 10239 - 3: 49152 + 4: 49152 26,-10: 0: 2 - 2: 60928 - 3: 12 + 3: 60928 + 4: 12 26,-9: - 2: 14 + 3: 14 0: 58880 - 3: 2048 + 4: 2048 26,-8: 0: 119 27,-11: 0: 17 - 3: 62532 + 4: 62532 27,-10: - 3: 239 + 4: 239 0: 26112 27,-9: - 3: 18272 + 4: 18272 0: 6 27,-8: - 3: 22357 + 4: 22357 0: 32768 28,-11: - 3: 12288 + 4: 12288 28,-10: - 3: 51 + 4: 51 0: 34944 25,-6: 0: 62259 @@ -14721,10 +14723,10 @@ entities: 0: 64399 25,-4: 0: 40715 - 3: 16384 + 4: 16384 26,-6: 0: 61440 - 3: 128 + 4: 128 26,-5: 0: 64799 26,-4: @@ -14734,7 +14736,7 @@ entities: 27,-5: 0: 63247 27,-7: - 3: 1877 + 4: 1877 0: 10376 27,-4: 0: 65287 @@ -14748,7 +14750,7 @@ entities: 0: 61152 28,-4: 0: 16167 - 3: 16384 + 4: 16384 29,-8: 0: 247 29,-7: @@ -14775,16 +14777,16 @@ entities: 0: 12556 31,-6: 0: 78 - 3: 3072 + 4: 3072 31,-7: 0: 50244 31,-9: 0: 26146 32,-8: 0: 51 - 3: 34952 + 4: 34952 32,-6: - 3: 256 + 4: 256 0: 58444 28,-9: 0: 2180 @@ -14792,11 +14794,11 @@ entities: 0: 2527 30,-10: 0: 10096 - 3: 32768 + 4: 32768 30,-9: 0: 54 31,-10: - 3: 12288 + 4: 12288 0: 1224 31,-11: 0: 32768 @@ -14804,11 +14806,11 @@ entities: 0: 61168 32,-9: 0: 29832 - 3: 32768 + 4: 32768 32,-5: 0: 204 32,-7: - 3: 8 + 4: 8 0: 34816 33,-7: 0: 36310 @@ -14817,24 +14819,24 @@ entities: 33,-8: 0: 8192 28,-3: - 3: 5389 + 4: 5389 0: 43762 27,-3: 0: 241 - 3: 7938 + 4: 7938 28,-2: - 3: 20817 + 4: 20817 0: 44714 27,-2: - 3: 7953 + 4: 7953 28,-1: - 3: 1297 + 4: 1297 0: 64170 27,-1: - 3: 3857 + 4: 3857 0: 61440 28,0: - 3: 77 + 4: 77 0: 3890 29,-3: 0: 56797 @@ -14856,7 +14858,7 @@ entities: 0: 28945 31,-3: 0: 28915 - 3: 8 + 4: 8 31,-2: 0: 63351 31,-1: @@ -14873,30 +14875,30 @@ entities: 0: 24687 25,-3: 0: 48121 - 3: 1030 + 4: 1030 25,-2: 0: 49083 - 3: 16448 + 4: 16448 25,-1: 0: 64443 - 3: 1024 + 4: 1024 25,0: 0: 3993 - 3: 70 + 4: 70 26,-3: - 3: 7945 + 4: 7945 0: 240 26,-2: - 3: 7953 + 4: 7953 26,-1: - 3: 3857 + 4: 3857 0: 61440 26,0: - 3: 9 + 4: 9 0: 4080 27,0: 0: 4081 - 3: 2 + 4: 2 32,0: 0: 51340 33,-3: @@ -14913,12 +14915,12 @@ entities: 0: 49072 32,2: 0: 3 - 3: 17480 + 4: 17480 31,2: 0: 8 - 3: 4368 + 4: 4368 31,3: - 3: 62193 + 4: 62193 33,1: 0: 16 28,1: @@ -14941,24 +14943,24 @@ entities: 0: 64256 29,3: 0: 30475 - 3: 32768 + 4: 32768 29,4: 0: 26231 - 3: 34952 + 4: 34952 30,2: 0: 29440 - 3: 34816 + 4: 34816 30,3: 0: 3 - 3: 61960 + 4: 61960 30,1: 0: 28262 30,4: 0: 21845 - 3: 8738 + 4: 8738 31,4: 0: 21845 - 3: 8738 + 4: 8738 24,1: 0: 32766 23,1: @@ -15025,33 +15027,33 @@ entities: 0: 59142 29,7: 0: 30020 - 3: 34952 + 4: 34952 29,5: 0: 26214 - 3: 34952 + 4: 34952 29,8: 0: 26181 - 3: 34952 + 4: 34952 29,6: 0: 19660 - 3: 32768 + 4: 32768 30,5: 0: 1365 - 3: 61986 + 4: 61986 30,6: - 3: 65535 + 4: 65535 30,7: 0: 21845 - 3: 8738 + 4: 8738 30,8: 0: 21845 - 3: 41506 + 4: 41506 31,7: 0: 21845 - 3: 8738 + 4: 8738 31,8: 0: 21845 - 3: 41506 + 4: 41506 24,5: 0: 61695 23,5: @@ -15128,7 +15130,7 @@ entities: 0: 52701 30,9: 0: 65024 - 3: 226 + 4: 226 30,10: 0: 3854 30,11: @@ -15136,7 +15138,7 @@ entities: 30,12: 0: 64443 31,9: - 3: 242 + 4: 242 0: 61440 31,10: 0: 3855 @@ -15145,7 +15147,7 @@ entities: 31,12: 0: 64732 32,9: - 3: 242 + 4: 242 0: 12288 32,10: 0: 14799 @@ -15186,18 +15188,18 @@ entities: 32,12: 0: 17749 33,9: - 3: 35058 + 4: 35058 33,10: 0: 29488 - 3: 8 + 4: 8 33,11: 0: 32767 33,12: 0: 13111 34,9: - 3: 17 + 4: 17 34,10: - 3: 16 + 4: 16 32,13: 0: 13893 31,13: @@ -15214,7 +15216,7 @@ entities: 0: 3 33,13: 0: 12595 - 3: 32768 + 4: 32768 33,14: 0: 16247 33,15: @@ -15247,7 +15249,7 @@ entities: 0: 63628 29,17: 0: 256 - 3: 8192 + 4: 8192 28,18: 0: 8 29,18: @@ -15294,22 +15296,22 @@ entities: 0: 61668 20,14: 0: 255 - 3: 8192 + 4: 8192 19,14: 0: 255 20,15: - 3: 8946 + 4: 8946 19,15: - 3: 240 + 4: 240 20,16: - 3: 65522 + 4: 65522 21,13: 0: 61440 21,14: 0: 31 - 3: 3072 + 4: 3072 21,15: - 3: 240 + 4: 240 21,12: 0: 34952 21,11: @@ -15320,31 +15322,31 @@ entities: 0: 61472 22,14: 0: 52367 - 3: 256 + 4: 256 22,15: - 3: 16 + 4: 16 0: 52428 22,11: 0: 65282 22,16: 0: 52428 - 3: 4368 + 4: 4368 23,15: 0: 4593 23,16: 0: 7953 19,16: - 3: 65520 + 4: 65520 20,17: - 3: 15 + 4: 15 19,17: - 3: 15 + 4: 15 21,16: - 3: 65520 + 4: 65520 21,17: - 3: 15 + 4: 15 22,17: - 3: 1 + 4: 1 0: 36044 22,18: 0: 2252 @@ -15382,11 +15384,11 @@ entities: 0: 65535 16,15: 0: 11 - 3: 4352 + 4: 4352 15,15: 0: 15 16,16: - 3: 65521 + 4: 65521 17,12: 0: 65535 17,13: @@ -15405,11 +15407,11 @@ entities: 0: 13175 18,15: 0: 3 - 3: 13184 + 4: 13184 18,11: 0: 30707 18,16: - 3: 65523 + 4: 65523 17,9: 0: 65359 17,10: @@ -15448,10 +15450,10 @@ entities: 0: 56799 14,15: 0: 4381 - 3: 17408 + 4: 17408 14,16: 0: 12305 - 3: 2244 + 4: 2244 9,13: 0: 65484 9,14: @@ -15471,156 +15473,156 @@ entities: 11,16: 0: 28879 12,18: - 3: 33012 + 4: 33012 0: 28672 11,18: - 3: 240 + 4: 240 0: 61440 12,19: - 3: 32911 + 4: 32911 0: 28784 11,19: - 3: 15 + 4: 15 0: 61680 12,20: - 3: 32911 + 4: 32911 0: 28784 12,17: 0: 8 - 3: 17408 + 4: 17408 13,17: 0: 4379 - 3: 19456 + 4: 19456 13,18: - 3: 12789 + 4: 12789 0: 49152 13,19: - 3: 12607 + 4: 12607 0: 49344 13,20: - 3: 12607 + 4: 12607 0: 49344 14,17: - 3: 12032 + 4: 12032 0: 34 14,18: - 3: 754 + 4: 754 0: 61440 14,19: - 3: 15 + 4: 15 0: 61680 14,20: - 3: 15 + 4: 15 0: 61680 15,16: - 3: 4080 + 4: 4080 15,17: - 3: 3840 + 4: 3840 15,18: - 3: 240 + 4: 240 0: 28672 15,19: - 3: 15 + 4: 15 0: 28784 15,20: - 3: 15 + 4: 15 0: 28784 16,17: - 3: 4383 + 4: 4383 16,18: - 3: 4369 + 4: 4369 16,19: - 3: 4369 + 4: 4369 16,20: - 3: 4369 + 4: 4369 17,16: - 3: 65520 + 4: 65520 17,17: - 3: 15 + 4: 15 18,17: - 3: 15 + 4: 15 8,17: 0: 24584 9,17: 0: 717 10,17: 0: 239 - 3: 4352 + 4: 4352 10,18: - 3: 4593 + 4: 4593 0: 49152 10,19: - 3: 4383 + 4: 4383 0: 49344 10,20: - 3: 4383 + 4: 4383 0: 49344 11,17: 0: 7 11,20: - 3: 15 + 4: 15 0: 61680 29,-20: - 3: 29767 + 4: 29767 0: 256 29,-19: 0: 257 - 3: 29764 + 4: 29764 29,-18: 0: 257 - 3: 29764 + 4: 29764 29,-17: 0: 1 - 3: 1860 + 4: 1860 12,21: - 3: 61583 + 4: 61583 0: 112 11,21: - 3: 61455 + 4: 61455 0: 240 12,22: - 3: 3140 + 4: 3140 13,21: - 3: 61759 + 4: 61759 0: 192 13,22: - 3: 1860 + 4: 1860 0: 1 14,21: - 3: 61455 + 4: 61455 0: 240 15,21: - 3: 61455 + 4: 61455 0: 112 16,21: - 3: 4369 + 4: 4369 8,21: - 3: 61440 + 4: 61440 7,21: - 3: 61440 + 4: 61440 9,21: - 3: 61440 + 4: 61440 10,21: - 3: 61727 + 4: 61727 0: 192 0,21: - 3: 61440 + 4: 61440 -1,21: - 3: 49152 + 4: 49152 1,20: 0: 57232 1,21: - 3: 61986 + 4: 61986 2,21: - 3: 61440 + 4: 61440 3,21: - 3: 61440 + 4: 61440 4,21: - 3: 61440 + 4: 61440 5,21: - 3: 62532 + 4: 62532 6,21: - 3: 61440 + 4: 61440 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -15637,6 +15639,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: 235 moles: @@ -15738,13 +15755,23 @@ entities: - uid: 13351 components: - type: Transform - pos: 31.45508,12.761587 - parent: 13329 + parent: 32207 + - type: Physics + canCollide: False - uid: 26234 components: - type: Transform pos: 86.510315,-15.505127 parent: 13329 +- proto: ActionToggleBlock + entities: + - uid: 10647 + components: + - type: Transform + parent: 10646 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 10646 - proto: AirAlarm entities: - uid: 609 @@ -17736,11 +17763,6 @@ entities: parent: 13329 - proto: AirlockArmoryGlassLocked entities: - - uid: 9361 - components: - - type: Transform - pos: 37.5,13.5 - parent: 13329 - uid: 9362 components: - type: Transform @@ -19486,7 +19508,7 @@ entities: pos: -15.5,-4.5 parent: 13329 - type: Door - secondsUntilStateChange: -4273.221 + secondsUntilStateChange: -10469.685 state: Opening - type: DeviceLinkSource lastSignals: @@ -21808,13 +21830,6 @@ entities: - type: Transform pos: 19.5,27.5 parent: 13329 - - uid: 8925 - components: - - type: MetaData - name: Security Locker Room APC - - type: Transform - pos: 34.5,15.5 - parent: 13329 - uid: 9991 components: - type: MetaData @@ -21845,6 +21860,14 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-15.5 parent: 13329 + - uid: 10644 + components: + - type: MetaData + name: Security Lockers APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,10.5 + parent: 13329 - uid: 10792 components: - type: MetaData @@ -28575,7 +28598,7 @@ entities: parent: 13329 - proto: BannerSecurity entities: - - uid: 9442 + - uid: 2198 components: - type: Transform pos: 36.5,14.5 @@ -28876,16 +28899,6 @@ entities: - type: Transform pos: 39.5,1.5 parent: 13329 - - uid: 9646 - components: - - type: Transform - pos: 42.5,1.5 - parent: 13329 - - uid: 9651 - components: - - type: Transform - pos: 44.5,1.5 - parent: 13329 - uid: 10302 components: - type: Transform @@ -29217,6 +29230,16 @@ entities: parent: 13329 - proto: BedsheetMedical entities: + - uid: 1653 + components: + - type: Transform + pos: 9.5,50.5 + parent: 13329 + - uid: 8780 + components: + - type: Transform + pos: 15.5,51.5 + parent: 13329 - uid: 9647 components: - type: Transform @@ -29228,12 +29251,22 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,1.5 parent: 13329 + - uid: 15511 + components: + - type: Transform + pos: 15.5,50.5 + parent: 13329 - uid: 17402 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,57.5 parent: 13329 + - uid: 18587 + components: + - type: Transform + pos: 9.5,51.5 + parent: 13329 - uid: 18727 components: - type: Transform @@ -29475,12 +29508,7 @@ entities: - type: Transform pos: -46.5,-10.5 parent: 13329 - - uid: 8641 - components: - - type: Transform - pos: 22.5,10.5 - parent: 13329 - - uid: 8642 + - uid: 7239 components: - type: Transform pos: 22.5,11.5 @@ -29556,8 +29584,61 @@ entities: rot: 1.5707963267948966 rad pos: 129.5,-3.5 parent: 13329 + - uid: 35939 + components: + - type: Transform + pos: 22.5,10.5 + parent: 13329 - proto: BlastDoorOpen entities: + - uid: 9391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,0.5 + parent: 13329 + - uid: 9392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,0.5 + parent: 13329 + - uid: 9393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,0.5 + parent: 13329 + - uid: 9394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,0.5 + parent: 13329 + - uid: 9395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,0.5 + parent: 13329 + - uid: 9396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,0.5 + parent: 13329 + - uid: 9397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,0.5 + parent: 13329 + - uid: 9398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,0.5 + parent: 13329 - uid: 9400 components: - type: Transform @@ -29583,6 +29664,18 @@ entities: - type: Transform pos: 52.5,24.5 parent: 13329 + - uid: 10638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,0.5 + parent: 13329 + - uid: 10645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,0.5 + parent: 13329 - uid: 14605 components: - type: Transform @@ -30129,15 +30222,30 @@ entities: parent: 13329 - proto: BoxBeanbag entities: + - uid: 7314 + components: + - type: Transform + pos: 16.481295,11.471256 + parent: 13329 + - uid: 8640 + components: + - type: Transform + pos: 16.61324,11.471256 + parent: 13329 - uid: 10642 components: - type: Transform - pos: 19.441084,9.497059 + pos: 31.342075,13.304442 parent: 13329 - - uid: 10643 + - uid: 18486 + components: + - type: Transform + pos: 16.557684,11.471256 + parent: 13329 + - uid: 18500 components: - type: Transform - pos: 19.441084,9.700184 + pos: 16.41185,11.464312 parent: 13329 - uid: 29510 components: @@ -30161,6 +30269,11 @@ entities: - type: Transform pos: 7.559045,47.574802 parent: 13329 + - uid: 35992 + components: + - type: Transform + pos: 45.68641,3.780618 + parent: 13329 - proto: BoxBottle entities: - uid: 18489 @@ -30220,7 +30333,7 @@ entities: - uid: 10688 components: - type: Transform - pos: 19.137007,15.606925 + pos: 19.610106,15.633911 parent: 13329 - proto: BoxFolderBlack entities: @@ -30475,15 +30588,30 @@ entities: parent: 13329 - proto: BoxLethalshot entities: - - uid: 10634 + - uid: 8667 components: - type: Transform - pos: 17.534834,11.575184 + pos: 16.66185,11.429589 parent: 13329 - - uid: 10635 + - uid: 8669 + components: + - type: Transform + pos: 16.606295,11.429589 + parent: 13329 + - uid: 8674 + components: + - type: Transform + pos: 16.557684,11.429589 + parent: 13329 + - uid: 8819 + components: + - type: Transform + pos: 16.446573,11.429589 + parent: 13329 + - uid: 9340 components: - type: Transform - pos: 17.519209,11.684559 + pos: 31.685825,13.288817 parent: 13329 - proto: BoxLightMixed entities: @@ -30527,6 +30655,18 @@ entities: - type: Transform pos: 122.54931,-2.3429494 parent: 13329 +- proto: BoxMagazinePistol + entities: + - uid: 10778 + components: + - type: Transform + pos: 31.581856,17.594582 + parent: 13329 + - uid: 16654 + components: + - type: Transform + pos: 29.863941,22.58788 + parent: 13329 - proto: BoxMousetrap entities: - uid: 1645 @@ -30553,18 +30693,6 @@ entities: - type: Transform pos: 19.561905,38.478992 parent: 13329 -- proto: BoxShotgunSlug - entities: - - uid: 10633 - components: - - type: Transform - pos: 17.066084,11.684559 - parent: 13329 - - uid: 10644 - components: - - type: Transform - pos: 17.066084,11.559559 - parent: 13329 - proto: BoxSterileMask entities: - uid: 18905 @@ -30609,12 +30737,7 @@ entities: - uid: 10694 components: - type: Transform - pos: 18.829138,15.606031 - parent: 13329 - - uid: 10695 - components: - - type: Transform - pos: 31.688059,12.85841 + pos: 19.040033,15.5982 parent: 13329 - proto: BriefcaseBrown entities: @@ -30774,12 +30897,38 @@ entities: parent: 13329 - proto: ButtonFrameCaution entities: + - uid: 10692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,38.5 + parent: 13329 + - uid: 20066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 13329 - uid: 27081 components: - type: Transform rot: -1.5707963267948966 rad pos: 127.5,-2.5 parent: 13329 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 8648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.484993,12.760994 + parent: 13329 + - uid: 8666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.478048,12.226272 + parent: 13329 - proto: ButtonFrameExit entities: - uid: 20552 @@ -34670,6 +34819,11 @@ entities: - type: Transform pos: -1.5,45.5 parent: 13329 + - uid: 8664 + components: + - type: Transform + pos: 36.5,13.5 + parent: 13329 - uid: 8687 components: - type: Transform @@ -35065,11 +35219,6 @@ entities: - type: Transform pos: 19.5,27.5 parent: 13329 - - uid: 8766 - components: - - type: Transform - pos: 19.5,26.5 - parent: 13329 - uid: 8767 components: - type: Transform @@ -35135,11 +35284,6 @@ entities: - type: Transform pos: 18.5,26.5 parent: 13329 - - uid: 8780 - components: - - type: Transform - pos: 17.5,26.5 - parent: 13329 - uid: 8781 components: - type: Transform @@ -35330,11 +35474,6 @@ entities: - type: Transform pos: 20.5,14.5 parent: 13329 - - uid: 8819 - components: - - type: Transform - pos: 22.5,12.5 - parent: 13329 - uid: 8820 components: - type: Transform @@ -35890,16 +36029,6 @@ entities: - type: Transform pos: 34.5,13.5 parent: 13329 - - uid: 8932 - components: - - type: Transform - pos: 34.5,14.5 - parent: 13329 - - uid: 8933 - components: - - type: Transform - pos: 34.5,15.5 - parent: 13329 - uid: 8934 components: - type: Transform @@ -35915,21 +36044,6 @@ entities: - type: Transform pos: 35.5,9.5 parent: 13329 - - uid: 8937 - components: - - type: Transform - pos: 35.5,12.5 - parent: 13329 - - uid: 8938 - components: - - type: Transform - pos: 36.5,12.5 - parent: 13329 - - uid: 8939 - components: - - type: Transform - pos: 37.5,12.5 - parent: 13329 - uid: 8940 components: - type: Transform @@ -35940,11 +36054,6 @@ entities: - type: Transform pos: 44.5,6.5 parent: 13329 - - uid: 8942 - components: - - type: Transform - pos: 37.5,14.5 - parent: 13329 - uid: 8943 components: - type: Transform @@ -36465,6 +36574,21 @@ entities: - type: Transform pos: 46.5,22.5 parent: 13329 + - uid: 9420 + components: + - type: Transform + pos: 35.5,13.5 + parent: 13329 + - uid: 9433 + components: + - type: Transform + pos: 32.5,10.5 + parent: 13329 + - uid: 9445 + components: + - type: Transform + pos: 33.5,10.5 + parent: 13329 - uid: 10794 components: - type: Transform @@ -59246,15 +59370,10 @@ entities: - type: Transform pos: 17.5,-21.5 parent: 13329 - - uid: 10291 - components: - - type: Transform - pos: 23.5,12.5 - parent: 13329 - - uid: 10292 + - uid: 10696 components: - type: Transform - pos: 22.5,12.5 + pos: 28.5,0.5 parent: 13329 - uid: 11012 components: @@ -68456,6 +68575,51 @@ entities: - type: Transform pos: 86.5,3.5 parent: 13329 + - uid: 35979 + components: + - type: Transform + pos: 27.5,0.5 + parent: 13329 + - uid: 35980 + components: + - type: Transform + pos: 30.5,0.5 + parent: 13329 + - uid: 35981 + components: + - type: Transform + pos: 31.5,0.5 + parent: 13329 + - uid: 35982 + components: + - type: Transform + pos: 33.5,0.5 + parent: 13329 + - uid: 35983 + components: + - type: Transform + pos: 34.5,0.5 + parent: 13329 + - uid: 35984 + components: + - type: Transform + pos: 36.5,0.5 + parent: 13329 + - uid: 35985 + components: + - type: Transform + pos: 37.5,0.5 + parent: 13329 + - uid: 35986 + components: + - type: Transform + pos: 38.5,0.5 + parent: 13329 + - uid: 35987 + components: + - type: Transform + pos: 39.5,0.5 + parent: 13329 - proto: CableHVStack entities: - uid: 26657 @@ -68740,6 +68904,11 @@ entities: - type: Transform pos: -19.5,32.5 parent: 13329 + - uid: 1348 + components: + - type: Transform + pos: 32.5,10.5 + parent: 13329 - uid: 1898 components: - type: Transform @@ -70790,31 +70959,6 @@ entities: - type: Transform pos: 43.5,16.5 parent: 13329 - - uid: 9119 - components: - - type: Transform - pos: 34.5,15.5 - parent: 13329 - - uid: 9120 - components: - - type: Transform - pos: 34.5,14.5 - parent: 13329 - - uid: 9121 - components: - - type: Transform - pos: 34.5,13.5 - parent: 13329 - - uid: 9122 - components: - - type: Transform - pos: 34.5,12.5 - parent: 13329 - - uid: 9123 - components: - - type: Transform - pos: 34.5,11.5 - parent: 13329 - uid: 9124 components: - type: Transform @@ -71260,6 +71404,11 @@ entities: - type: Transform pos: 22.5,19.5 parent: 13329 + - uid: 10643 + components: + - type: Transform + pos: 33.5,10.5 + parent: 13329 - uid: 10823 components: - type: Transform @@ -89220,12 +89369,6 @@ entities: - type: Transform pos: 39.5,10.5 parent: 13329 - - uid: 9653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,1.5 - parent: 13329 - uid: 10153 components: - type: Transform @@ -89342,24 +89485,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-24.5 parent: 13329 - - uid: 15501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-29.5 - parent: 13329 - - uid: 15508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-15.5 - parent: 13329 - - uid: 15511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-16.5 - parent: 13329 - uid: 15538 components: - type: Transform @@ -90037,6 +90162,12 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,56.5 parent: 13329 + - uid: 6968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5223,-29.434305 + parent: 13329 - uid: 9384 components: - type: Transform @@ -90312,11 +90443,6 @@ entities: - type: Transform pos: 83.5,-41.5 parent: 13329 - - uid: 35339 - components: - - type: Transform - pos: 31.5,7.5 - parent: 13329 - proto: ChairOfficeLight entities: - uid: 15343 @@ -90851,6 +90977,11 @@ entities: parent: 13329 - proto: ChemistryHotplate entities: + - uid: 10636 + components: + - type: Transform + pos: 21.5,39.5 + parent: 13329 - uid: 18362 components: - type: Transform @@ -91024,11 +91155,6 @@ entities: parent: 13329 - proto: CircuitImprinter entities: - - uid: 15309 - components: - - type: Transform - pos: 35.5,-19.5 - parent: 13329 - uid: 15506 components: - type: Transform @@ -91050,29 +91176,11 @@ entities: parent: 13329 - proto: ClosetBombFilled entities: - - uid: 9440 + - uid: 10640 components: - type: Transform - pos: 36.5,11.5 + pos: 38.5,12.5 parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 15366 components: - type: Transform @@ -93270,33 +93378,10 @@ entities: - 0 - 0 - 0 - - uid: 9441 - components: - - type: Transform - pos: 36.5,12.5 - parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13391 + - uid: 10695 components: - type: Transform - pos: 16.5,15.5 + pos: 39.5,12.5 parent: 13329 - uid: 18692 components: @@ -93925,6 +94010,11 @@ entities: - 0 - proto: ClosetRadiationSuitFilled entities: + - uid: 15308 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 13329 - uid: 15367 components: - type: Transform @@ -93971,6 +94061,11 @@ entities: - 0 - 0 - 0 + - uid: 23565 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 13329 - uid: 23568 components: - type: Transform @@ -94722,6 +94817,13 @@ entities: - type: Transform pos: 76.55065,10.666498 parent: 13329 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 14372 + components: + - type: Transform + pos: 35.60128,-23.42127 + parent: 13329 - proto: ClothingBackpackSatchelLeather entities: - uid: 6580 @@ -94872,16 +94974,6 @@ entities: parent: 13329 - proto: ClothingEyesGlassesSunglasses entities: - - uid: 10696 - components: - - type: Transform - pos: 21.021912,9.466003 - parent: 13329 - - uid: 10697 - components: - - type: Transform - pos: 21.021912,9.591003 - parent: 13329 - uid: 32535 components: - type: Transform @@ -95034,11 +95126,6 @@ entities: parent: 13329 - proto: ClothingHandsGlovesColorYellow entities: - - uid: 6968 - components: - - type: Transform - pos: 4.403781,30.501423 - parent: 13329 - uid: 26249 components: - type: Transform @@ -95066,11 +95153,6 @@ entities: - type: Transform pos: 77.503525,-25.483427 parent: 13329 - - uid: 33812 - components: - - type: Transform - pos: 37.542885,36.57493 - parent: 13329 - proto: ClothingHandsGlovesFingerless entities: - uid: 32126 @@ -95235,13 +95317,6 @@ entities: - type: Transform pos: -17.52614,16.568653 parent: 13329 -- proto: ClothingHeadHatCardborg - entities: - - uid: 20066 - components: - - type: Transform - pos: 33.52294,-26.147404 - parent: 13329 - proto: ClothingHeadHatChef entities: - uid: 10446 @@ -95491,6 +95566,48 @@ entities: - type: Transform pos: 112.55392,23.481916 parent: 13329 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 8942 + components: + - type: Transform + pos: 17.435272,13.586082 + parent: 13329 + - uid: 10292 + components: + - type: Transform + pos: 17.612356,13.315249 + parent: 13329 + - uid: 10525 + components: + - type: Transform + pos: 17.60194,13.429832 + parent: 13329 + - uid: 10593 + components: + - type: Transform + pos: 17.60194,13.523582 + parent: 13329 + - uid: 10673 + components: + - type: Transform + pos: 17.424856,13.690249 + parent: 13329 + - uid: 10674 + components: + - type: Transform + pos: 17.435272,13.523582 + parent: 13329 + - uid: 10682 + components: + - type: Transform + pos: 17.612356,13.627749 + parent: 13329 + - uid: 13323 + components: + - type: Transform + pos: 17.435272,13.419415 + parent: 13329 - proto: ClothingHeadHelmetEVA entities: - uid: 5415 @@ -95506,20 +95623,35 @@ entities: parent: 13329 - proto: ClothingHeadHelmetRiot entities: - - uid: 10654 + - uid: 35958 components: - type: Transform - pos: 18.486015,13.337078 + pos: 18.374508,13.634324 parent: 13329 - - uid: 10655 + - uid: 35959 components: - type: Transform - pos: 18.486015,13.337078 + pos: 18.374508,13.519741 parent: 13329 - - uid: 10656 + - uid: 35960 + components: + - type: Transform + pos: 18.374508,13.415574 + parent: 13329 + - uid: 35961 + components: + - type: Transform + pos: 18.759924,13.655157 + parent: 13329 + - uid: 35962 + components: + - type: Transform + pos: 18.759924,13.561407 + parent: 13329 + - uid: 35963 components: - type: Transform - pos: 18.486015,13.337078 + pos: 18.759924,13.436407 parent: 13329 - proto: ClothingHeadHelmetTemplar entities: @@ -95554,18 +95686,6 @@ entities: - type: Transform pos: 12.429535,-32.530125 parent: 13329 -- proto: ClothingHeadsetRobotics - entities: - - uid: 32207 - components: - - type: Transform - pos: 36.660496,-23.34851 - parent: 13329 - - uid: 34244 - components: - - type: Transform - pos: 36.64324,-23.319489 - parent: 13329 - proto: ClothingHeadsetScience entities: - uid: 15494 @@ -95627,21 +95747,6 @@ entities: - type: Transform pos: -1.4137464,49.175823 parent: 13329 - - uid: 18484 - components: - - type: Transform - pos: 21.404108,39.529633 - parent: 13329 - - uid: 18485 - components: - - type: Transform - pos: 21.435358,39.607758 - parent: 13329 - - uid: 18486 - components: - - type: Transform - pos: 21.332224,39.46711 - parent: 13329 - uid: 31660 components: - type: Transform @@ -95708,16 +95813,6 @@ entities: parent: 13329 - proto: ClothingMaskGasSecurity entities: - - uid: 9445 - components: - - type: Transform - pos: 38.406982,14.572508 - parent: 13329 - - uid: 9446 - components: - - type: Transform - pos: 38.610107,14.463133 - parent: 13329 - uid: 10155 components: - type: Transform @@ -95873,37 +95968,77 @@ entities: parent: 13329 - proto: ClothingOuterArmorBasic entities: - - uid: 16653 + - uid: 7313 components: - type: Transform - pos: 19.353907,13.4972 + pos: 17.28944,13.346499 parent: 13329 - - uid: 16654 + - uid: 9418 components: - type: Transform - pos: 19.353907,13.4972 + pos: 17.799856,13.544415 parent: 13329 - - uid: 16655 + - uid: 10649 + components: + - type: Transform + pos: 17.799856,13.471499 + parent: 13329 + - uid: 10669 + components: + - type: Transform + pos: 17.268606,13.440249 + parent: 13329 + - uid: 13339 + components: + - type: Transform + pos: 17.78944,13.658999 + parent: 13329 + - uid: 35954 + components: + - type: Transform + pos: 17.810272,13.356915 + parent: 13329 + - uid: 35955 components: - type: Transform - pos: 19.353907,13.4972 + pos: 17.247772,13.669415 + parent: 13329 + - uid: 35956 + components: + - type: Transform + pos: 17.25819,13.565249 parent: 13329 - proto: ClothingOuterArmorBulletproof entities: - - uid: 10663 + - uid: 1349 components: - type: Transform - pos: 19.548515,13.446453 + pos: 19.343298,13.405157 parent: 13329 - - uid: 10664 + - uid: 8637 components: - type: Transform - pos: 19.548515,13.446453 + pos: 19.332882,13.603074 parent: 13329 - - uid: 10665 + - uid: 8642 + components: + - type: Transform + pos: 19.655758,13.603074 + parent: 13329 + - uid: 10697 components: - type: Transform - pos: 19.548515,13.446453 + pos: 19.343298,13.519741 + parent: 13329 + - uid: 35870 + components: + - type: Transform + pos: 19.655758,13.394741 + parent: 13329 + - uid: 35940 + components: + - type: Transform + pos: 19.655758,13.488491 parent: 13329 - proto: ClothingOuterArmorReflective entities: @@ -95924,27 +96059,35 @@ entities: parent: 13329 - proto: ClothingOuterArmorRiot entities: - - uid: 10657 + - uid: 9121 components: - type: Transform - pos: 18.68914,13.524578 + pos: 18.36409,13.363491 parent: 13329 - - uid: 10658 + - uid: 9434 components: - type: Transform - pos: 18.68914,13.524578 + pos: 18.77034,13.373907 parent: 13329 - - uid: 10659 + - uid: 9435 components: - type: Transform - pos: 18.68914,13.524578 + pos: 18.36409,13.540574 parent: 13329 -- proto: ClothingOuterCardborg - entities: - - uid: 20065 + - uid: 10641 components: - type: Transform - pos: 33.538567,-26.459904 + pos: 18.77034,13.478074 + parent: 13329 + - uid: 10676 + components: + - type: Transform + pos: 18.77034,13.571824 + parent: 13329 + - uid: 18358 + components: + - type: Transform + pos: 18.353674,13.446824 parent: 13329 - proto: ClothingOuterCoatBomber entities: @@ -95987,28 +96130,6 @@ entities: - type: Transform pos: 53.592335,-42.45482 parent: 13329 -- proto: ClothingOuterHardsuitSecurity - entities: - - uid: 9436 - components: - - type: Transform - pos: 39.420284,12.540021 - parent: 13329 - - uid: 9437 - components: - - type: Transform - pos: 39.576534,12.461896 - parent: 13329 - - uid: 9438 - components: - - type: Transform - pos: 38.40466,12.602521 - parent: 13329 - - uid: 9439 - components: - - type: Transform - pos: 38.607784,12.508771 - parent: 13329 - proto: ClothingOuterPonchoClassic entities: - uid: 32178 @@ -96267,6 +96388,45 @@ entities: - type: Transform pos: 29.434042,-31.389341 parent: 13329 +- proto: ClothingUniformJumpskirtJanimaid + entities: + - uid: 10780 + components: + - type: Transform + parent: 10779 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11848 + components: + - type: Transform + parent: 10779 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtJanimaidmini + entities: + - uid: 13795 + components: + - type: Transform + parent: 10779 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14000 + components: + - type: Transform + parent: 10779 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtTacticalMaid + entities: + - uid: 18630 + components: + - type: Transform + pos: 15.520247,17.554167 + parent: 13329 - proto: ClothingUniformJumpsuitAncient entities: - uid: 32231 @@ -97297,11 +97457,11 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,10.5 parent: 13329 - - uid: 9374 + - uid: 9441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,14.5 + rot: 3.141592653589793 rad + pos: 21.5,1.5 parent: 13329 - uid: 10148 components: @@ -97417,12 +97577,6 @@ entities: parent: 13329 - proto: ComputerMedicalRecords entities: - - uid: 9648 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,3.5 - parent: 13329 - uid: 18561 components: - type: Transform @@ -97629,6 +97783,12 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,11.5 parent: 13329 + - uid: 15501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,28.5 + parent: 13329 - uid: 18927 components: - type: Transform @@ -97748,6 +97908,31 @@ entities: parent: 13329 - proto: ComputerTelevision entities: + - uid: 9338 + components: + - type: Transform + pos: 15.5,39.5 + parent: 13329 + - uid: 10771 + components: + - type: Transform + pos: 30.5,3.5 + parent: 13329 + - uid: 10772 + components: + - type: Transform + pos: 27.5,3.5 + parent: 13329 + - uid: 10773 + components: + - type: Transform + pos: 33.5,3.5 + parent: 13329 + - uid: 10774 + components: + - type: Transform + pos: 36.5,3.5 + parent: 13329 - uid: 26083 components: - type: Transform @@ -98725,11 +98910,6 @@ entities: - type: Transform pos: 12.5,-25.5 parent: 13329 - - uid: 31726 - components: - - type: Transform - pos: 7.5,9.5 - parent: 13329 - uid: 32741 components: - type: Transform @@ -98765,6 +98945,11 @@ entities: - 0 - 0 - 0 + - uid: 9379 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 13329 - uid: 18647 components: - type: Transform @@ -99088,12 +99273,19 @@ entities: showEnts: False occludes: True ent: null -- proto: CrateSecurityNonlethal +- proto: CrateSecurityTrackingMindshieldImplants entities: - - uid: 10607 + - uid: 10637 components: - type: Transform - pos: 15.5,9.5 + pos: 14.5,12.5 + parent: 13329 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 1445 + components: + - type: Transform + pos: -16.5,34.5 parent: 13329 - type: EntityStorage air: @@ -99113,28 +99305,21 @@ entities: - 0 - 0 - 0 -- proto: CrateSecurityTrackingMindshieldImplants - entities: - - uid: 10597 - components: - - type: Transform - pos: 14.5,13.5 - parent: 13329 -- proto: CrateServiceJanitorialSupplies +- proto: CrateTrashCartJani entities: - - uid: 1445 + - uid: 10779 components: - type: Transform - pos: -16.5,34.5 + pos: 7.5,9.5 parent: 13329 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.1495 + temperature: 293.14673 moles: - - 3.0981817 - - 11.655066 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -99145,6 +99330,20 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10780 + - 11848 + - 13795 + - 14000 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrayonBox entities: - uid: 1126 @@ -99950,6 +100149,11 @@ entities: text: Lab - proto: DefaultStationBeaconSecurity entities: + - uid: 8937 + components: + - type: Transform + pos: 35.5,12.5 + parent: 13329 - uid: 23731 components: - type: Transform @@ -99981,13 +100185,6 @@ entities: parent: 13329 - type: NavMapBeacon text: Solitary - - uid: 26292 - components: - - type: Transform - pos: 36.5,12.5 - parent: 13329 - - type: NavMapBeacon - text: Sec Gear - uid: 26293 components: - type: Transform @@ -110305,6 +110502,25 @@ entities: - type: Transform pos: 52.5,-37.5 parent: 13329 +- proto: DresserWardenFilled + entities: + - uid: 32207 + components: + - type: Transform + pos: 31.5,12.5 + parent: 13329 + - type: Storage + storedItems: + 13351: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 13351 - proto: DrinkAbsintheBottleFull entities: - uid: 1176 @@ -110997,10 +111213,15 @@ entities: canCollide: False - proto: EncryptionKeyRobo entities: + - uid: 10270 + components: + - type: Transform + pos: 39.726936,-19.8334 + parent: 13329 - uid: 20061 components: - type: Transform - pos: 32.491222,-19.448307 + pos: 39.289436,-19.8334 parent: 13329 - proto: EncryptionKeyScience entities: @@ -111028,15 +111249,10 @@ entities: canCollide: False - proto: ExosuitFabricator entities: - - uid: 15307 - components: - - type: Transform - pos: 34.5,-19.5 - parent: 13329 - - uid: 15308 + - uid: 8766 components: - type: Transform - pos: 36.5,-19.5 + pos: 35.5,-19.5 parent: 13329 - proto: ExplosivesSignMed entities: @@ -111576,11 +111792,6 @@ entities: - type: Transform pos: 30.5,14.5 parent: 13329 - - uid: 9454 - components: - - type: Transform - pos: 21.5,1.5 - parent: 13329 - uid: 11662 components: - type: Transform @@ -111601,6 +111812,11 @@ entities: - type: Transform pos: 11.5,-10.5 parent: 13329 + - uid: 15309 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 13329 - uid: 15310 components: - type: Transform @@ -111721,11 +111937,6 @@ entities: - type: Transform pos: -28.5,17.5 parent: 13329 - - uid: 35194 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 13329 - proto: filingCabinetRandom entities: - uid: 2211 @@ -111788,11 +111999,6 @@ entities: - type: Transform pos: 41.5,42.5 parent: 13329 - - uid: 35193 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 13329 - proto: filingCabinetTallRandom entities: - uid: 6571 @@ -111800,11 +112006,6 @@ entities: - type: Transform pos: -28.5,55.5 parent: 13329 - - uid: 10270 - components: - - type: Transform - pos: 28.5,28.5 - parent: 13329 - uid: 11720 components: - type: Transform @@ -115135,11 +115336,6 @@ entities: - type: Transform pos: 27.50318,19.856941 parent: 13329 - - uid: 10698 - components: - - type: Transform - pos: 20.110102,9.557616 - parent: 13329 - uid: 31493 components: - type: Transform @@ -115276,11 +115472,6 @@ entities: - type: Transform pos: -40.346107,75.63652 parent: 13329 - - uid: 10780 - components: - - type: Transform - pos: 15.496946,17.498087 - parent: 13329 - uid: 34735 components: - type: Transform @@ -115478,20 +115669,6 @@ entities: parent: 13329 - type: Fixtures fixtures: {} - - uid: 23564 - components: - - type: Transform - pos: 85.5,-3.5 - parent: 13329 - - type: Fixtures - fixtures: {} - - uid: 23565 - components: - - type: Transform - pos: 87.5,-3.5 - parent: 13329 - - type: Fixtures - fixtures: {} - uid: 26360 components: - type: Transform @@ -115544,6 +115721,13 @@ entities: parent: 13329 - type: Fixtures fixtures: {} + - uid: 35998 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 13329 + - type: Fixtures + fixtures: {} - proto: FloorTileItemBar entities: - uid: 34161 @@ -116341,13 +116525,6 @@ entities: - type: Transform pos: 46.5,29.5 parent: 13329 -- proto: FoodDonutJellyChocolate - entities: - - uid: 10267 - components: - - type: Transform - pos: 31.501001,17.616497 - parent: 13329 - proto: FoodFrozenSnowconeClown entities: - uid: 34796 @@ -156780,16 +156957,6 @@ entities: - type: Transform pos: 34.5,8.5 parent: 13329 - - uid: 7313 - components: - - type: Transform - pos: 37.5,12.5 - parent: 13329 - - uid: 7314 - components: - - type: Transform - pos: 37.5,14.5 - parent: 13329 - uid: 7315 components: - type: Transform @@ -156940,11 +157107,6 @@ entities: - type: Transform pos: 19.5,23.5 parent: 13329 - - uid: 8637 - components: - - type: Transform - pos: 22.5,12.5 - parent: 13329 - uid: 9242 components: - type: Transform @@ -157116,11 +157278,6 @@ entities: - type: Transform pos: 20.5,-33.5 parent: 13329 - - uid: 10779 - components: - - type: Transform - pos: 14.5,17.5 - parent: 13329 - uid: 11000 components: - type: Transform @@ -157456,12 +157613,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,-25.5 parent: 13329 - - uid: 14372 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-25.5 - parent: 13329 - uid: 14377 components: - type: Transform @@ -161857,12 +162008,6 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,17.5 parent: 13329 - - uid: 31759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,17.5 - parent: 13329 - uid: 31820 components: - type: Transform @@ -161918,9 +162063,93 @@ entities: entities: - uid: 27875 components: + - type: MetaData + desc: A standard-issue Nanotrasen storage unit, containing 10 disabler pistols. - type: Transform + anchored: True pos: 20.5,15.5 parent: 13329 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8645 + - 9646 + - 9476 + - 9475 + - 9473 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafePistolMk58 + entities: + - uid: 10650 + components: + - type: MetaData + desc: A standard-issue Nanotrasen storage unit, containing 6 Mk58 pistols. + - type: Transform + anchored: True + pos: 21.5,15.5 + parent: 13329 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10651 + - 10652 + - 10653 + - 10654 + - 10655 + - 10656 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: Gyroscope entities: - uid: 31777 @@ -162226,22 +162455,11 @@ entities: parent: 13329 - proto: HolopadCargoBay entities: - - uid: 35866 - components: - - type: Transform - pos: 10.5,-22.5 - parent: 13329 - - uid: 35870 + - uid: 9653 components: - - type: MetaData - name: holopad (Cargo - Cargo Bay Secondary) - type: Transform - pos: -1.5,-13.5 + pos: 6.5,-17.5 parent: 13329 - - type: Label - currentLabel: Cargo - Cargo Bay Secondary - - type: NameModifier - baseName: holopad - uid: 35926 components: - type: MetaData @@ -162255,10 +162473,10 @@ entities: baseName: holopad - proto: HolopadCargoBayLongRange entities: - - uid: 35865 + - uid: 9648 components: - type: Transform - pos: 10.5,-24.5 + pos: 10.5,-23.5 parent: 13329 - proto: HolopadCargoBreakroom entities: @@ -162269,10 +162487,10 @@ entities: parent: 13329 - proto: HolopadCargoFront entities: - - uid: 35863 + - uid: 10267 components: - type: Transform - pos: 6.5,-17.5 + pos: 6.5,-11.5 parent: 13329 - proto: HolopadCargoSalvageBay entities: @@ -162774,17 +162992,11 @@ entities: currentLabel: Security - Front North - type: NameModifier baseName: holopad - - uid: 35864 + - uid: 35996 components: - - type: MetaData - name: holopad (Security - Front South) - type: Transform - pos: 20.5,2.5 + pos: 24.5,-1.5 parent: 13329 - - type: Label - currentLabel: Security - Front South - - type: NameModifier - baseName: holopad - proto: HolopadSecurityInterrogation entities: - uid: 35860 @@ -162981,11 +163193,6 @@ entities: - type: Transform pos: 33.5,-24.5 parent: 13329 - - uid: 20040 - components: - - type: Transform - pos: 35.5,-24.5 - parent: 13329 - uid: 20041 components: - type: Transform @@ -163491,6 +163698,28 @@ entities: - type: Transform pos: 52.65521,42.350925 parent: 13329 +- proto: JetpackSecurityFilled + entities: + - uid: 9122 + components: + - type: Transform + pos: 16.58022,15.48953 + parent: 13329 + - uid: 9123 + components: + - type: Transform + pos: 16.309385,15.499947 + parent: 13329 + - uid: 9419 + components: + - type: Transform + pos: 16.601051,15.73953 + parent: 13329 + - uid: 10648 + components: + - type: Transform + pos: 16.351051,15.749947 + parent: 13329 - proto: Jukebox entities: - uid: 32340 @@ -163961,6 +164190,114 @@ entities: - type: Transform pos: 109.51193,52.554314 parent: 13329 +- proto: LockableButtonArmory + entities: + - uid: 7262 + components: + - type: MetaData + name: lockable button (Open Armory) + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.479801,12.762985 + parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 10681: + - Pressed: Open + - Pressed: AutoClose + 10680: + - Pressed: Open + - Pressed: AutoClose + 10679: + - Pressed: Open + - Pressed: AutoClose + 10678: + - Pressed: Open + - Pressed: AutoClose + 10685: + - Pressed: Open + - Pressed: AutoClose + 10684: + - Pressed: Open + - Pressed: AutoClose + 10683: + - Pressed: Open + - Pressed: AutoClose + 10687: + - Pressed: Open + - Pressed: AutoClose + 10686: + - Pressed: Open + - Pressed: AutoClose + 26338: + - Pressed: Open + - Pressed: AutoClose + 35939: + - Pressed: Open + 35970: + - Pressed: Open + - Pressed: AutoClose + 35969: + - Pressed: Open + - Pressed: AutoClose + 9361: + - Pressed: Open + - Pressed: AutoClose + 10677: + - Pressed: Open + - Pressed: AutoClose + 7239: + - Pressed: Open + - type: Label + currentLabel: Open Armory + - type: NameModifier + baseName: lockable button + - uid: 9454 + components: + - type: MetaData + name: lockable button (Close Armory) + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.478048,12.226272 + parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 26338: + - Pressed: Close + 10681: + - Pressed: Close + 10680: + - Pressed: Close + 10679: + - Pressed: Close + 10678: + - Pressed: Close + 10685: + - Pressed: Close + 10684: + - Pressed: Close + 10683: + - Pressed: Close + 10687: + - Pressed: Close + 10686: + - Pressed: Close + 35970: + - Pressed: Close + 35969: + - Pressed: Close + 35939: + - Pressed: Close + 10677: + - Pressed: Close + 9361: + - Pressed: Close + 7239: + - Pressed: Close + - type: Label + currentLabel: Close Armory + - type: NameModifier + baseName: lockable button - proto: LockerAtmosphericsFilledHardsuit entities: - uid: 23864 @@ -164523,6 +164860,17 @@ entities: - 0 - 0 - 0 + - uid: 8933 + components: + - type: MetaData + name: evidence locker (Cell 3) + - type: Transform + pos: 33.5,7.5 + parent: 13329 + - type: Label + currentLabel: Cell 3 + - type: NameModifier + baseName: evidence locker - uid: 9515 components: - type: Transform @@ -164845,6 +165193,28 @@ entities: - 0 - 0 - 0 + - uid: 10670 + components: + - type: MetaData + name: evidence locker (Cell 1) + - type: Transform + pos: 31.5,7.5 + parent: 13329 + - type: Label + currentLabel: Cell 1 + - type: NameModifier + baseName: evidence locker + - uid: 10671 + components: + - type: MetaData + name: evidence locker (Cell 2) + - type: Transform + pos: 32.5,7.5 + parent: 13329 + - type: Label + currentLabel: Cell 2 + - type: NameModifier + baseName: evidence locker - uid: 15348 components: - type: Transform @@ -164914,6 +165284,17 @@ entities: - 0 - 0 - 0 + - uid: 35995 + components: + - type: MetaData + name: evidence locker (Cell 4) + - type: Transform + pos: 34.5,7.5 + parent: 13329 + - type: Label + currentLabel: Cell 4 + - type: NameModifier + baseName: evidence locker - proto: LockerFreezer entities: - uid: 1209 @@ -165154,29 +165535,8 @@ entities: - type: Transform pos: 43.5,3.5 parent: 13329 - - uid: 18358 - components: - - type: Transform - pos: 22.5,36.5 - parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + - type: Lock + locked: False - uid: 18592 components: - type: Transform @@ -165536,6 +165896,21 @@ entities: - 0 - 0 - 0 + - uid: 8662 + components: + - type: Transform + pos: 38.5,14.5 + parent: 13329 + - uid: 8663 + components: + - type: Transform + pos: 37.5,14.5 + parent: 13329 + - uid: 8938 + components: + - type: Transform + pos: 36.5,11.5 + parent: 13329 - uid: 9427 components: - type: Transform @@ -165674,6 +166049,11 @@ entities: - 0 - 0 - 0 + - uid: 9446 + components: + - type: Transform + pos: 37.5,12.5 + parent: 13329 - uid: 9453 components: - type: Transform @@ -166024,50 +166404,75 @@ entities: parent: 13329 - proto: MagazinePistol entities: - - uid: 10645 + - uid: 10651 components: - type: Transform - pos: 18.329765,15.572898 - parent: 13329 - - uid: 10646 + parent: 10650 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10652 components: - type: Transform - pos: 18.454765,15.572898 + parent: 10650 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10654 + components: + - type: Transform + parent: 10650 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10655 + components: + - type: Transform + parent: 10650 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazinePistolSubMachineGun + entities: + - uid: 10599 + components: + - type: Transform + pos: 19.56134,11.494171 parent: 13329 - - uid: 10647 + - uid: 10627 components: - type: Transform - pos: 18.611015,15.572898 + pos: 19.339119,11.466393 parent: 13329 - - uid: 10648 + - uid: 10628 components: - type: Transform - pos: 17.673515,13.447898 + pos: 19.290506,11.4455595 parent: 13329 - - uid: 10649 + - uid: 10629 components: - type: Transform - pos: 17.673515,13.447898 + pos: 19.401619,11.466393 parent: 13329 - - uid: 10650 + - uid: 10630 components: - type: Transform - pos: 17.673515,13.447898 + pos: 19.457174,11.473337 parent: 13329 - - uid: 10651 + - uid: 10634 components: - type: Transform - pos: 17.673515,13.447898 + pos: 19.51273,11.4872265 parent: 13329 - - uid: 10652 + - uid: 18484 components: - type: Transform - pos: 17.673515,13.447898 + pos: 19.62384,11.494171 parent: 13329 - - uid: 10653 + - uid: 35865 components: - type: Transform - pos: 17.673515,13.447898 + pos: 19.589119,11.494171 parent: 13329 - proto: MagazinePistolSubMachineGunTopMounted entities: @@ -166083,45 +166488,45 @@ entities: parent: 13329 - proto: MagazineRifle entities: - - uid: 10669 + - uid: 10597 components: - type: Transform - pos: 16.40789,12.540203 + pos: 16.408554,12.667782 parent: 13329 - - uid: 10670 + - uid: 10607 components: - type: Transform - pos: 16.517265,12.540203 + pos: 16.408554,12.417782 parent: 13329 - - uid: 10671 + - uid: 10622 components: - type: Transform - pos: 16.59539,12.524578 + pos: 16.408554,12.306671 parent: 13329 - - uid: 10672 + - uid: 10631 components: - type: Transform - pos: 16.72039,12.524578 + pos: 16.74883,12.515004 parent: 13329 - - uid: 10673 + - uid: 10632 components: - type: Transform - pos: 16.423515,12.383953 + pos: 16.74883,12.417782 parent: 13329 - - uid: 10674 + - uid: 18351 components: - type: Transform - pos: 16.53289,12.383953 + pos: 16.741886,12.327504 parent: 13329 - - uid: 10675 + - uid: 18464 components: - type: Transform - pos: 16.65789,12.383953 + pos: 16.755775,12.640004 parent: 13329 - - uid: 10676 + - uid: 18485 components: - type: Transform - pos: 16.75164,12.383953 + pos: 16.408554,12.515004 parent: 13329 - proto: MailingUnit entities: @@ -166403,6 +166808,11 @@ entities: parent: 13329 - proto: MaintenanceWeaponSpawner entities: + - uid: 9120 + components: + - type: Transform + pos: 37.5,36.5 + parent: 13329 - uid: 20553 components: - type: Transform @@ -166534,15 +166944,20 @@ entities: parent: 13329 - proto: MedicalBed entities: - - uid: 13321 + - uid: 7234 components: - type: Transform - pos: 9.5,50.5 + pos: 44.5,1.5 parent: 13329 - - uid: 18642 + - uid: 7238 components: - type: Transform - pos: 9.5,47.5 + pos: 42.5,1.5 + parent: 13329 + - uid: 13321 + components: + - type: Transform + pos: 9.5,50.5 parent: 13329 - uid: 18655 components: @@ -166574,6 +166989,16 @@ entities: - type: Transform pos: 15.5,55.5 parent: 13329 + - uid: 35193 + components: + - type: Transform + pos: 9.5,51.5 + parent: 13329 + - uid: 35997 + components: + - type: Transform + pos: 15.5,51.5 + parent: 13329 - proto: MedicalScanner entities: - uid: 26066 @@ -166607,12 +167032,17 @@ entities: - type: Transform pos: 4.605341,67.929634 parent: 13329 + - uid: 35993 + components: + - type: Transform + pos: 44.62391,3.593118 + parent: 13329 - proto: MedkitBurnFilled entities: - uid: 10566 components: - type: Transform - pos: 45.19371,3.579205 + pos: 44.90516,3.655618 parent: 13329 - uid: 18830 components: @@ -166651,7 +167081,7 @@ entities: - uid: 10565 components: - type: Transform - pos: 44.66246,3.579205 + pos: 44.452034,3.639993 parent: 13329 - uid: 11784 components: @@ -166724,6 +167154,11 @@ entities: - type: Transform pos: 4.636591,67.00776 parent: 13329 + - uid: 35994 + components: + - type: Transform + pos: 45.09266,3.530618 + parent: 13329 - proto: MicroManipulatorStockPart entities: - uid: 15531 @@ -167305,30 +167740,12 @@ entities: - 0 - 0 - 0 - - uid: 20045 + - uid: 20040 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-26.5 parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: MouseTimedSpawner entities: - uid: 32253 @@ -167343,11 +167760,6 @@ entities: - type: Transform pos: 3.467094,-17.544365 parent: 13329 - - uid: 13350 - components: - - type: Transform - pos: 29.328402,9.501672 - parent: 13329 - uid: 19752 components: - type: Transform @@ -167928,20 +168340,15 @@ entities: parent: 13329 - proto: PaperBin10 entities: - - uid: 9379 - components: - - type: Transform - pos: 31.5,12.5 - parent: 13329 - - uid: 10692 + - uid: 11872 components: - type: Transform - pos: 14.5,14.5 + pos: 21.5,-9.5 parent: 13329 - - uid: 11872 + - uid: 20046 components: - type: Transform - pos: 21.5,-9.5 + pos: 31.5,9.5 parent: 13329 - uid: 29476 components: @@ -168263,7 +168670,7 @@ entities: - uid: 9380 components: - type: Transform - pos: 31.499893,12.484022 + pos: 31.24836,9.434689 parent: 13329 - uid: 10322 components: @@ -168519,6 +168926,34 @@ entities: rot: 1.5707963267948966 rad pos: 99.5,-15.5 parent: 13329 +- proto: PlasmaWindoorSecureArmoryLocked + entities: + - uid: 26292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,13.5 + parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 32364: + - DoorStatus: Close +- proto: PlasmaWindoorSecureSecurityLocked + entities: + - uid: 32364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,13.5 + parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 26292: + - DoorStatus: Close - proto: PlasticFlapsAirtightClear entities: - uid: 11498 @@ -168614,11 +169049,6 @@ entities: - type: Transform pos: 76.471954,53.52606 parent: 13329 - - uid: 18555 - components: - - type: Transform - pos: 15.544871,39.57073 - parent: 13329 - proto: PlushieRGBee entities: - uid: 32722 @@ -168652,18 +169082,33 @@ entities: - uid: 9471 components: - type: Transform + anchored: False pos: 14.5,9.5 parent: 13329 + - type: TriggerOnProximity + enabled: False + - type: Physics + bodyType: Dynamic - uid: 9472 components: - type: Transform + anchored: False pos: 14.5,10.5 parent: 13329 - - uid: 9473 + - type: TriggerOnProximity + enabled: False + - type: Physics + bodyType: Dynamic + - uid: 10657 components: - type: Transform + anchored: False pos: 14.5,11.5 parent: 13329 + - type: TriggerOnProximity + enabled: False + - type: Physics + bodyType: Dynamic - proto: PortableGeneratorJrPacman entities: - uid: 10145 @@ -170114,6 +170559,11 @@ entities: - type: Transform pos: 51.5,40.5 parent: 13329 + - uid: 35194 + components: + - type: Transform + pos: 9.5,47.5 + parent: 13329 - uid: 35627 components: - type: Transform @@ -170936,14 +171386,6 @@ entities: parent: 13329 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,9.5 - parent: 13329 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11568 components: - type: Transform @@ -171504,6 +171946,12 @@ entities: parent: 13329 - type: ApcPowerReceiver powerLoad: 0 + - uid: 16655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,9.5 + parent: 13329 - uid: 18507 components: - type: Transform @@ -175555,20 +176003,10 @@ entities: - type: Transform pos: 19.5,13.5 parent: 13329 - - uid: 9377 - components: - - type: Transform - pos: 31.5,13.5 - parent: 13329 - - uid: 9434 - components: - - type: Transform - pos: 39.5,12.5 - parent: 13329 - - uid: 9435 + - uid: 9341 components: - type: Transform - pos: 38.5,12.5 + pos: 16.5,15.5 parent: 13329 - uid: 10618 components: @@ -175590,6 +176028,11 @@ entities: - type: Transform pos: 11.5,5.5 parent: 13329 + - uid: 11567 + components: + - type: Transform + pos: 20.5,9.5 + parent: 13329 - uid: 11669 components: - type: Transform @@ -175691,6 +176134,11 @@ entities: rot: 3.141592653589793 rad pos: 52.5,44.5 parent: 13329 + - uid: 18499 + components: + - type: Transform + pos: 19.5,9.5 + parent: 13329 - uid: 18663 components: - type: Transform @@ -175711,12 +176159,6 @@ entities: - type: Transform pos: 30.5,-46.5 parent: 13329 - - uid: 20035 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-19.5 - parent: 13329 - uid: 21324 components: - type: Transform @@ -180273,16 +180715,6 @@ entities: - type: Transform pos: 32.5,12.5 parent: 13329 - - uid: 7238 - components: - - type: Transform - pos: 37.5,12.5 - parent: 13329 - - uid: 7239 - components: - - type: Transform - pos: 37.5,14.5 - parent: 13329 - uid: 7240 components: - type: Transform @@ -180493,11 +180925,6 @@ entities: - type: Transform pos: 19.5,23.5 parent: 13329 - - uid: 8640 - components: - - type: Transform - pos: 22.5,12.5 - parent: 13329 - uid: 9246 components: - type: Transform @@ -183110,67 +183537,6 @@ entities: - type: Transform pos: 2.5444062,26.628166 parent: 13329 - - uid: 8645 - components: - - type: MetaData - name: Armory Blast Doors - - type: Transform - pos: 29.673782,9.548224 - parent: 13329 - - type: DeviceLinkSource - linkedPorts: - 8641: - - Pressed: Toggle - 8642: - - Pressed: Toggle - - uid: 9399 - components: - - type: MetaData - name: Perma Window Blast Doors - - type: Transform - pos: 31.745594,9.565589 - parent: 13329 - - type: DeviceLinkSource - linkedPorts: - 9405: - - Pressed: Toggle - 9404: - - Pressed: Toggle - 9403: - - Pressed: Toggle - 9401: - - Pressed: Toggle - 9400: - - Pressed: Toggle - - uid: 9406 - components: - - type: MetaData - name: Cell Window Shutters - - type: Transform - pos: 31.410873,9.561931 - parent: 13329 - - type: DeviceLinkSource - linkedPorts: - 9389: - - Pressed: Toggle - 9390: - - Pressed: Toggle - 9391: - - Pressed: Toggle - 9392: - - Pressed: Toggle - 9393: - - Pressed: Toggle - 9394: - - Pressed: Toggle - 9395: - - Pressed: Toggle - 9396: - - Pressed: Toggle - 9397: - - Pressed: Toggle - 9398: - - Pressed: Toggle - uid: 11854 components: - type: MetaData @@ -183203,22 +183569,79 @@ entities: - type: Transform pos: 52.512157,-5.393109 parent: 13329 +- proto: RiotBulletShield + entities: + - uid: 10594 + components: + - type: Transform + pos: 16.823153,13.388165 + parent: 13329 + - uid: 35949 + components: + - type: Transform + pos: 16.823153,13.586082 + parent: 13329 + - uid: 35952 + components: + - type: Transform + pos: 16.823153,13.492332 + parent: 13329 + - uid: 35953 + components: + - type: Transform + pos: 16.833569,13.336082 + parent: 13329 +- proto: RiotLaserShield + entities: + - uid: 10621 + components: + - type: Transform + pos: 16.333569,13.471499 + parent: 13329 + - uid: 10646 + components: + - type: Transform + pos: 16.323153,13.377749 + parent: 13329 + - type: Blocking + blockingToggleActionEntity: 10647 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 10647 + - uid: 13391 + components: + - type: Transform + pos: 16.343985,13.533999 + parent: 13329 + - uid: 35950 + components: + - type: Transform + pos: 16.343985,13.586082 + parent: 13329 - proto: RiotShield entities: - - uid: 10660 + - uid: 13392 components: - type: Transform - pos: 19.173515,13.383953 + pos: 16.573153,13.429832 parent: 13329 - - uid: 10661 + - uid: 35339 components: - type: Transform - pos: 19.173515,13.383953 + pos: 16.583569,13.346499 parent: 13329 - - uid: 10662 + - uid: 35866 components: - type: Transform - pos: 19.173515,13.383953 + pos: 16.562735,13.627749 + parent: 13329 + - uid: 35951 + components: + - type: Transform + pos: 16.573153,13.523582 parent: 13329 - proto: RobocopCircuitBoard entities: @@ -183467,15 +183890,15 @@ entities: parent: 13329 - proto: SecurityTechFab entities: - - uid: 10140 + - uid: 9381 components: - type: Transform - pos: 31.5,26.5 + pos: 15.5,15.5 parent: 13329 - - uid: 10778 + - uid: 10140 components: - type: Transform - pos: 21.5,15.5 + pos: 31.5,26.5 parent: 13329 - proto: SeedExtractor entities: @@ -183511,6 +183934,11 @@ entities: - type: Transform pos: 50.554005,-16.478584 parent: 13329 + - uid: 20065 + components: + - type: Transform + pos: 36.52436,-19.442776 + parent: 13329 - uid: 26132 components: - type: Transform @@ -183589,11 +184017,6 @@ entities: - type: Transform pos: -31.002823,-44.471146 parent: 13329 - - uid: 20067 - components: - - type: Transform - pos: 39.52294,-21.288029 - parent: 13329 - uid: 26546 components: - type: Transform @@ -183621,10 +184044,10 @@ entities: - type: Transform pos: 55.58817,-14.4869995 parent: 13329 - - uid: 18351 + - uid: 36003 components: - type: Transform - pos: 14.455807,14.614824 + pos: 39.58631,-21.255276 parent: 13329 - proto: SheetRGlass entities: @@ -183748,7 +184171,12 @@ entities: - uid: 27876 components: - type: Transform - pos: 14.455807,14.599199 + pos: 21.551386,9.52861 + parent: 13329 + - uid: 36002 + components: + - type: Transform + pos: 39.36756,-21.2709 parent: 13329 - proto: SheetUranium entities: @@ -183819,6 +184247,8 @@ entities: - type: Transform pos: 3.5,7.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 1493 components: - type: Transform @@ -184045,75 +184475,42 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,32.5 parent: 13329 - - uid: 9389 - components: - - type: Transform - pos: 27.5,0.5 - parent: 13329 - - uid: 9390 - components: - - type: Transform - pos: 28.5,0.5 - parent: 13329 - - uid: 9391 - components: - - type: Transform - pos: 30.5,0.5 - parent: 13329 - - uid: 9392 - components: - - type: Transform - pos: 31.5,0.5 - parent: 13329 - - uid: 9393 - components: - - type: Transform - pos: 33.5,0.5 - parent: 13329 - - uid: 9394 - components: - - type: Transform - pos: 34.5,0.5 - parent: 13329 - - uid: 9395 - components: - - type: Transform - pos: 36.5,0.5 - parent: 13329 - - uid: 9396 + - uid: 10588 components: - type: Transform - pos: 37.5,0.5 + pos: 42.5,16.5 parent: 13329 - - uid: 9397 + - uid: 10589 components: - type: Transform - pos: 38.5,0.5 + pos: 45.5,16.5 parent: 13329 - - uid: 9398 + - uid: 10590 components: - type: Transform - pos: 39.5,0.5 + pos: 47.5,16.5 parent: 13329 - - uid: 10588 + - uid: 10591 components: - type: Transform - pos: 42.5,16.5 + pos: 50.5,16.5 parent: 13329 - - uid: 10589 + - uid: 10658 components: - type: Transform - pos: 45.5,16.5 + rot: -1.5707963267948966 rad + pos: 22.5,42.5 parent: 13329 - - uid: 10590 + - uid: 10659 components: - type: Transform - pos: 47.5,16.5 + rot: 1.5707963267948966 rad + pos: 21.5,42.5 parent: 13329 - - uid: 10591 + - uid: 10661 components: - type: Transform - pos: 50.5,16.5 + pos: 16.5,37.5 parent: 13329 - uid: 10879 components: @@ -184176,21 +184573,6 @@ entities: - type: Transform pos: 20.5,42.5 parent: 13329 - - uid: 18499 - components: - - type: Transform - pos: 21.5,42.5 - parent: 13329 - - uid: 18500 - components: - - type: Transform - pos: 22.5,42.5 - parent: 13329 - - uid: 18501 - components: - - type: Transform - pos: 24.5,42.5 - parent: 13329 - uid: 18502 components: - type: Transform @@ -184202,12 +184584,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,36.5 parent: 13329 - - uid: 18504 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,37.5 - parent: 13329 - uid: 18505 components: - type: Transform @@ -184537,17 +184913,6 @@ entities: linkedPorts: 1432: - Pressed: Toggle - - uid: 1494 - components: - - type: Transform - pos: 6.5,11.5 - parent: 13329 - - type: DeviceLinkSource - linkedPorts: - 1493: - - Pressed: Toggle - 1492: - - Pressed: Toggle - uid: 4523 components: - type: Transform @@ -184683,37 +185048,6 @@ entities: - Pressed: Toggle 15303: - Pressed: Toggle - - uid: 18464 - components: - - type: Transform - pos: 26.5,38.5 - parent: 13329 - - type: DeviceLinkSource - linkedPorts: - 18463: - - Pressed: Toggle - 18462: - - Pressed: Toggle - 18461: - - Pressed: Toggle - 18460: - - Pressed: Toggle - 18502: - - Pressed: Toggle - 18501: - - Pressed: Toggle - 18500: - - Pressed: Toggle - 18499: - - Pressed: Toggle - 18498: - - Pressed: Toggle - 18503: - - Pressed: Toggle - 18504: - - Pressed: Toggle - 18505: - - Pressed: Toggle - uid: 20585 components: - type: Transform @@ -185010,6 +185344,252 @@ entities: - Pressed: Toggle 35590: - Pressed: Toggle +- proto: SignalSwitchDirectional + entities: + - uid: 6941 + components: + - type: MetaData + name: Switch (Front Shutters) (Front Shutters) + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 1493: + - On: Open + - Off: Close + 1492: + - On: Open + - Off: Close + 15508: + - On: Open + - On: AutoClose + - Off: Close + 9406: + - On: Open + - On: AutoClose + - Off: Close + - type: Label + currentLabel: Front Shutters + - type: NameModifier + baseName: Switch (Front Shutters) + - uid: 9389 + components: + - type: MetaData + name: Switch (Front Blast Doors) + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.571575,9.73718 + parent: 13329 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 10638: + - On: Open + - Off: Close + 10645: + - On: Open + - Off: Close + 9397: + - On: Open + - Off: Close + 9398: + - On: Open + - Off: Close + 9396: + - On: Open + - Off: Close + 9395: + - On: Open + - Off: Close + 9394: + - On: Open + - Off: Close + 9393: + - On: Open + - Off: Close + 9392: + - On: Open + - Off: Close + 9391: + - On: Open + - Off: Close + - type: Label + currentLabel: Front Blast Doors + - type: NameModifier + baseName: Switch + - uid: 9390 + components: + - type: MetaData + name: Switch (Perma Blast Doors) + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.571575,9.466347 + parent: 13329 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 9405: + - On: Open + - Off: Close + 9404: + - On: Open + - Off: Close + 9403: + - On: Open + - Off: Close + 9401: + - On: Open + - Off: Close + 9400: + - On: Open + - Off: Close + - type: Label + currentLabel: Perma Blast Doors + - type: NameModifier + baseName: Switch + - uid: 10662 + components: + - type: MetaData + name: Switch (Window Shutters) + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,38.5 + parent: 13329 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 18502: + - On: Open + - Off: Close + 10658: + - On: Open + - Off: Close + 10659: + - On: Open + - Off: Close + 18498: + - On: Open + - Off: Close + 18463: + - On: Open + - Off: Close + 18462: + - On: Open + - Off: Close + 18461: + - On: Open + - Off: Close + 18460: + - On: Open + - Off: Close + 18503: + - On: Open + - Off: Close + 10661: + - On: Open + - Off: Close + 18505: + - On: Open + - Off: Close + - type: Label + currentLabel: Window Shutters + - type: NameModifier + baseName: Switch + - uid: 13350 + components: + - type: MetaData + name: Switch (Cell Blast Doors) (Cell Blast Doors) + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,4.5 + parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 10638: + - On: Open + - Off: Close + 10645: + - On: Open + - Off: Close + - type: Label + currentLabel: Cell Blast Doors + - type: NameModifier + baseName: Switch (Cell Blast Doors) + - uid: 35971 + components: + - type: MetaData + name: Switch (Cell Blast Doors) (Cell Blast Doors) + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,4.5 + parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 9397: + - On: Open + - Off: Close + 9398: + - On: Open + - Off: Close + - type: Label + currentLabel: Cell Blast Doors + - type: NameModifier + baseName: Switch (Cell Blast Doors) + - uid: 35972 + components: + - type: MetaData + name: Switch (Cell Blast Doors) (Cell Blast Doors) + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,4.5 + parent: 13329 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 9396: + - On: Open + - Off: Close + 9395: + - On: Open + - Off: Close + - type: Label + currentLabel: Cell Blast Doors + - type: NameModifier + baseName: Switch (Cell Blast Doors) + - uid: 35973 + components: + - type: MetaData + name: Switch (Cell Blast Doors) (Cell Blast Doors) + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,4.5 + parent: 13329 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 9394: + - On: Open + - Off: Close + 9393: + - On: Open + - Off: Close + 9392: + - On: Open + - Off: Close + 9391: + - On: Open + - Off: Close + - type: Label + currentLabel: Cell Blast Doors + - type: NameModifier + baseName: Switch (Cell Blast Doors) - proto: SignAnomaly entities: - uid: 20083 @@ -185154,13 +185734,6 @@ entities: - type: Transform pos: 19.5,42.5 parent: 13329 -- proto: SignCloning - entities: - - uid: 18587 - components: - - type: Transform - pos: 16.5,47.5 - parent: 13329 - proto: SignConference entities: - uid: 31544 @@ -185405,14 +185978,6 @@ entities: rot: 3.141592653589793 rad pos: 53.5,-3.5 parent: 13329 -- proto: SignDirectionalJanitor - entities: - - uid: 1653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,7.5 - parent: 13329 - proto: SignDirectionalLibrary entities: - uid: 19107 @@ -185725,10 +186290,10 @@ entities: parent: 13329 - proto: SignExamroom entities: - - uid: 18747 + - uid: 20067 components: - type: Transform - pos: 16.5,56.5 + pos: 16.5,47.5 parent: 13329 - uid: 34483 components: @@ -185813,6 +186378,13 @@ entities: - type: Transform pos: 17.5,24.5 parent: 13329 +- proto: SignJanitor + entities: + - uid: 23564 + components: + - type: Transform + pos: 1.5,11.5 + parent: 13329 - proto: SignKiddiePlaque entities: - uid: 6307 @@ -186660,11 +187232,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-39.5 parent: 13329 - - uid: 20042 - components: - - type: Transform - pos: 32.5,-25.5 - parent: 13329 - uid: 28915 components: - type: Transform @@ -186688,6 +187255,12 @@ entities: rot: -1.5707963267948966 rad pos: 126.5,2.5 parent: 13329 + - uid: 34244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-25.5 + parent: 13329 - proto: SinkEmpty entities: - uid: 15333 @@ -189807,6 +190380,21 @@ entities: parent: 13329 - proto: SpawnPointBorg entities: + - uid: 1494 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 13329 + - uid: 20042 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 13329 + - uid: 20060 + components: + - type: Transform + pos: 37.5,-21.5 + parent: 13329 - uid: 24412 components: - type: Transform @@ -190237,18 +190825,48 @@ entities: parent: 13329 - proto: SpawnPointSecurityCadet entities: - - uid: 10773 + - uid: 9444 components: - type: Transform - pos: 35.5,11.5 + pos: 28.5,18.5 parent: 13329 - - uid: 10774 + - uid: 10664 components: - type: Transform - pos: 35.5,12.5 + pos: 28.5,24.5 + parent: 13329 + - uid: 10666 + components: + - type: Transform + pos: 28.5,22.5 + parent: 13329 + - uid: 10672 + components: + - type: Transform + pos: 28.5,20.5 + parent: 13329 + - uid: 35937 + components: + - type: Transform + pos: 32.5,22.5 + parent: 13329 + - uid: 35974 + components: + - type: Transform + pos: 32.5,20.5 parent: 13329 - proto: SpawnPointSecurityOfficer entities: + - uid: 10663 + components: + - type: Transform + pos: 39.5,13.5 + parent: 13329 + - uid: 10665 + components: + - type: Transform + pos: 35.5,13.5 + parent: 13329 - uid: 10767 components: - type: Transform @@ -190269,15 +190887,25 @@ entities: - type: Transform pos: 34.5,10.5 parent: 13329 - - uid: 10771 + - uid: 35938 components: - type: Transform - pos: 35.5,10.5 + pos: 37.5,13.5 parent: 13329 - - uid: 10772 + - uid: 35976 components: - type: Transform - pos: 35.5,13.5 + pos: 38.5,13.5 + parent: 13329 + - uid: 35977 + components: + - type: Transform + pos: 36.5,13.5 + parent: 13329 + - uid: 35978 + components: + - type: Transform + pos: 35.5,10.5 parent: 13329 - proto: SpawnPointServiceWorker entities: @@ -190487,6 +191115,11 @@ entities: parent: 13329 - proto: StasisBed entities: + - uid: 8932 + components: + - type: Transform + pos: 46.5,1.5 + parent: 13329 - uid: 18576 components: - type: Transform @@ -191714,22 +192347,60 @@ entities: parent: 13329 - proto: SuitStorageSec entities: + - uid: 9438 + components: + - type: Transform + pos: 15.5,9.5 + parent: 13329 + - uid: 9439 + components: + - type: Transform + pos: 14.5,13.5 + parent: 13329 - uid: 10602 components: - type: Transform pos: 16.5,9.5 parent: 13329 + - uid: 10668 + components: + - type: Transform + pos: 18.5,9.5 + parent: 13329 + - uid: 10675 + components: + - type: Transform + pos: 14.5,14.5 + parent: 13329 - uid: 10689 components: - type: Transform pos: 17.5,9.5 parent: 13329 + - 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: 10525 + - uid: 9436 components: - type: Transform - pos: 18.5,9.5 + pos: 27.5,14.5 parent: 13329 - proto: SurveillanceCameraCommand entities: @@ -194878,11 +195549,6 @@ entities: - type: Transform pos: 6.5,30.5 parent: 13329 - - uid: 6941 - components: - - type: Transform - pos: 4.5,30.5 - parent: 13329 - uid: 6942 components: - type: Transform @@ -194948,11 +195614,6 @@ entities: - type: Transform pos: 27.5,9.5 parent: 13329 - - uid: 8646 - components: - - type: Transform - pos: 31.5,12.5 - parent: 13329 - uid: 9355 components: - type: Transform @@ -194963,10 +195624,15 @@ entities: - type: Transform pos: 31.5,14.5 parent: 13329 - - uid: 9418 + - uid: 9399 components: - type: Transform - pos: 36.5,10.5 + pos: 10.5,47.5 + parent: 13329 + - uid: 9440 + components: + - type: Transform + pos: 36.5,12.5 parent: 13329 - uid: 9452 components: @@ -195129,6 +195795,11 @@ entities: - type: Transform pos: 49.5,6.5 parent: 13329 + - uid: 10639 + components: + - type: Transform + pos: 31.5,13.5 + parent: 13329 - uid: 10885 components: - type: Transform @@ -195459,6 +196130,11 @@ entities: - type: Transform pos: -11.5,22.5 parent: 13329 + - uid: 15307 + components: + - type: Transform + pos: 36.5,-19.5 + parent: 13329 - uid: 15311 components: - type: Transform @@ -195785,10 +196461,10 @@ entities: - type: Transform pos: 34.5,-39.5 parent: 13329 - - uid: 20046 + - uid: 20035 components: - type: Transform - pos: 33.5,-26.5 + pos: 9.5,47.5 parent: 13329 - uid: 20051 components: @@ -196176,6 +196852,11 @@ entities: - type: Transform pos: -24.5,74.5 parent: 13329 + - uid: 31726 + components: + - type: Transform + pos: 35.5,-23.5 + parent: 13329 - uid: 31745 components: - type: Transform @@ -196521,16 +197202,6 @@ entities: - type: Transform pos: 53.5,62.5 parent: 13329 - - uid: 35337 - components: - - type: Transform - pos: 33.5,7.5 - parent: 13329 - - uid: 35338 - components: - - type: Transform - pos: 32.5,7.5 - parent: 13329 - uid: 35414 components: - type: Transform @@ -196842,11 +197513,6 @@ entities: - type: Transform pos: 8.5,55.5 parent: 13329 - - uid: 11848 - components: - - type: Transform - pos: 9.5,51.5 - parent: 13329 - uid: 18533 components: - type: Transform @@ -196882,16 +197548,6 @@ entities: - type: Transform pos: 9.5,56.5 parent: 13329 - - uid: 18630 - components: - - type: Transform - pos: 10.5,47.5 - parent: 13329 - - uid: 18641 - components: - - type: Transform - pos: 15.5,51.5 - parent: 13329 - uid: 18649 components: - type: Transform @@ -197184,11 +197840,6 @@ entities: - type: Transform pos: 31.5,9.5 parent: 13329 - - uid: 9444 - components: - - type: Transform - pos: 38.5,14.5 - parent: 13329 - uid: 9654 components: - type: Transform @@ -197274,16 +197925,6 @@ entities: - type: Transform pos: 21.5,9.5 parent: 13329 - - uid: 10593 - components: - - type: Transform - pos: 20.5,9.5 - parent: 13329 - - uid: 10594 - components: - - type: Transform - pos: 19.5,9.5 - parent: 13329 - uid: 10595 components: - type: Transform @@ -197294,11 +197935,6 @@ entities: - type: Transform pos: 19.5,15.5 parent: 13329 - - uid: 10599 - components: - - type: Transform - pos: 14.5,14.5 - parent: 13329 - uid: 13342 components: - type: Transform @@ -199456,11 +200092,6 @@ entities: - type: Transform pos: 31.5,-25.5 parent: 13329 - - uid: 13795 - components: - - type: Transform - pos: 36.5,-25.5 - parent: 13329 - uid: 13834 components: - type: Transform @@ -199804,11 +200435,6 @@ entities: - type: Transform pos: -17.430689,-11.518743 parent: 13329 - - uid: 9382 - components: - - type: Transform - pos: 31.578018,13.515272 - parent: 13329 - uid: 11672 components: - type: Transform @@ -199873,11 +200499,6 @@ entities: - type: Transform pos: 6.466281,21.629694 parent: 13329 - - uid: 9381 - components: - - type: Transform - pos: 31.468643,13.702772 - parent: 13329 - uid: 16640 components: - type: Transform @@ -200423,10 +201044,10 @@ entities: parent: 13329 - proto: VendingMachineChemicals entities: - - uid: 13392 + - uid: 10291 components: - type: Transform - pos: 25.5,38.5 + pos: 22.5,36.5 parent: 13329 - proto: VendingMachineCigs entities: @@ -200744,6 +201365,11 @@ entities: parent: 13329 - proto: VendingMachineMedical entities: + - uid: 9437 + components: + - type: Transform + pos: 41.5,3.5 + parent: 13329 - uid: 10261 components: - type: Transform @@ -200785,10 +201411,10 @@ entities: parent: 13329 - proto: VendingMachineRoboDrobe entities: - - uid: 14000 + - uid: 20045 components: - type: Transform - pos: 27.5,-27.5 + pos: 32.5,-19.5 parent: 13329 - proto: VendingMachineRobotics entities: @@ -200882,7 +201508,7 @@ entities: parent: 13329 - proto: VendingMachineTankDispenserEVA entities: - - uid: 9433 + - uid: 8657 components: - type: Transform pos: 39.5,14.5 @@ -200999,6 +201625,11 @@ entities: - type: Transform pos: 80.5,1.5 parent: 13329 + - uid: 31759 + components: + - type: Transform + pos: 4.5,30.5 + parent: 13329 - proto: WallmountGeneratorAPUElectronics entities: - uid: 13127 @@ -203899,11 +204530,6 @@ entities: - type: Transform pos: 33.5,8.5 parent: 13329 - - uid: 7234 - components: - - type: Transform - pos: 37.5,8.5 - parent: 13329 - uid: 7235 components: - type: Transform @@ -203934,11 +204560,6 @@ entities: - type: Transform pos: 35.5,15.5 parent: 13329 - - uid: 7262 - components: - - type: Transform - pos: 34.5,15.5 - parent: 13329 - uid: 7263 components: - type: Transform @@ -204799,6 +205420,18 @@ entities: - type: Transform pos: 7.5,19.5 parent: 13329 + - uid: 8654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,15.5 + parent: 13329 + - uid: 8665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,12.5 + parent: 13329 - uid: 9614 components: - type: Transform @@ -205159,6 +205792,11 @@ entities: - type: Transform pos: 52.5,-3.5 parent: 13329 + - uid: 10698 + components: + - type: Transform + pos: 37.5,8.5 + parent: 13329 - uid: 11552 components: - type: Transform @@ -218518,11 +219156,6 @@ entities: - type: Transform pos: 15.5,18.5 parent: 13329 - - uid: 7602 - components: - - type: Transform - pos: 14.5,18.5 - parent: 13329 - uid: 7603 components: - type: Transform @@ -220253,6 +220886,22 @@ entities: - type: Transform pos: 16.5,64.5 parent: 13329 + - uid: 18641 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 13329 + - uid: 18642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,17.5 + parent: 13329 + - uid: 18747 + components: + - type: Transform + pos: 35.5,-24.5 + parent: 13329 - uid: 18872 components: - type: Transform @@ -223298,6 +223947,12 @@ entities: - type: Transform pos: 96.5,-49.5 parent: 13329 + - uid: 36000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,18.5 + parent: 13329 - proto: WallSolidRust entities: - uid: 2696 @@ -223700,13 +224355,6 @@ entities: - type: Transform pos: 87.5,-51.5 parent: 13329 -- proto: WallWeaponCapacitorRecharger - entities: - - uid: 9420 - components: - - type: Transform - pos: 37.5,8.5 - parent: 13329 - proto: WardrobeBlackFilled entities: - uid: 29207 @@ -224049,33 +224697,10 @@ entities: - 0 - proto: WardrobePrisonFilled entities: - - uid: 9337 - components: - - type: Transform - pos: 27.5,3.5 - parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9338 + - uid: 10434 components: - type: Transform - pos: 30.5,3.5 + pos: 44.5,11.5 parent: 13329 - type: EntityStorage air: @@ -224095,10 +224720,10 @@ entities: - 0 - 0 - 0 - - uid: 9339 + - uid: 10435 components: - type: Transform - pos: 33.5,3.5 + pos: 43.5,11.5 parent: 13329 - type: EntityStorage air: @@ -224106,8 +224731,8 @@ entities: immutable: False temperature: 293.1495 moles: - - 3.0981817 - - 11.655066 + - 1.8541656 + - 6.9751945 - 0 - 0 - 0 @@ -224118,10 +224743,10 @@ entities: - 0 - 0 - 0 - - uid: 9340 + - uid: 10436 components: - type: Transform - pos: 36.5,3.5 + pos: 49.5,11.5 parent: 13329 - type: EntityStorage air: @@ -224141,10 +224766,10 @@ entities: - 0 - 0 - 0 - - uid: 9341 + - uid: 10437 components: - type: Transform - pos: 36.5,2.5 + pos: 48.5,11.5 parent: 13329 - type: EntityStorage air: @@ -224164,123 +224789,45 @@ entities: - 0 - 0 - 0 - - uid: 10434 + - uid: 35988 components: - type: Transform - pos: 44.5,11.5 + anchored: True + pos: 33.5,1.5 parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10435 + - type: Physics + bodyType: Static + - uid: 35989 components: - type: Transform - pos: 43.5,11.5 + anchored: True + pos: 30.5,1.5 parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 1.8541656 - - 6.9751945 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10436 + - type: Physics + bodyType: Static + - uid: 35990 components: - type: Transform - pos: 49.5,11.5 + anchored: True + pos: 27.5,1.5 parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10437 + - type: Physics + bodyType: Static + - uid: 35991 components: - type: Transform - pos: 48.5,11.5 + anchored: True + pos: 36.5,1.5 parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + - type: Physics + bodyType: Static - proto: WardrobeRobotics entities: - - uid: 20060 + - uid: 35999 components: - type: Transform - pos: 30.5,-26.5 + pos: 27.5,-27.5 parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeSalvageFilled entities: - uid: 11651 @@ -224568,15 +225115,20 @@ entities: - type: Transform pos: -35.5,49.5 parent: 13329 + - uid: 8925 + components: + - type: Transform + pos: 36.5,12.5 + parent: 13329 - uid: 9387 components: - type: Transform pos: 27.5,9.5 parent: 13329 - - uid: 9419 + - uid: 9442 components: - type: Transform - pos: 36.5,10.5 + pos: 18.5,15.5 parent: 13329 - uid: 9447 components: @@ -224618,11 +225170,6 @@ entities: - type: Transform pos: 21.5,9.5 parent: 13329 - - uid: 10622 - components: - - type: Transform - pos: 20.5,9.5 - parent: 13329 - uid: 11820 components: - type: Transform @@ -224658,23 +225205,49 @@ entities: - type: Transform pos: 61.5,45.5 parent: 13329 + - uid: 35975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,13.5 + parent: 13329 - proto: WeaponDisabler entities: - - uid: 10627 + - uid: 8645 components: - type: Transform - pos: 16.534834,13.543934 - parent: 13329 - - uid: 10628 + parent: 27875 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9473 components: - type: Transform - pos: 16.534834,13.465809 - parent: 13329 - - uid: 10629 + parent: 27875 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9475 components: - type: Transform - pos: 16.534834,13.340809 - parent: 13329 + parent: 27875 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9476 + components: + - type: Transform + parent: 27875 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9646 + components: + - type: Transform + parent: 27875 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponDisablerPractice entities: - uid: 10257 @@ -224684,20 +225257,45 @@ entities: parent: 13329 - proto: WeaponLaserCarbine entities: - - uid: 10636 + - uid: 9119 components: - type: Transform - pos: 18.581709,11.700184 + pos: 20.462889,9.392429 parent: 13329 - - uid: 10637 + - uid: 9374 components: - type: Transform - pos: 18.581709,11.606434 + pos: 20.462889,9.496596 parent: 13329 - - uid: 10638 + - uid: 9383 components: - type: Transform - pos: 18.581709,11.497059 + pos: 20.462889,9.277846 + parent: 13329 + - uid: 10633 + components: + - type: Transform + pos: 20.45247,9.621596 + parent: 13329 + - uid: 35957 + components: + - type: Transform + pos: 19.504555,9.579929 + parent: 13329 + - uid: 35964 + components: + - type: Transform + pos: 19.504555,9.454929 + parent: 13329 + - uid: 35965 + components: + - type: Transform + pos: 19.51497,9.329929 + parent: 13329 + - uid: 35966 + components: + - type: Transform + pos: 19.525389,9.215346 parent: 13329 - proto: WeaponLaserCarbinePractice entities: @@ -224718,37 +225316,48 @@ entities: parent: 13329 - proto: WeaponPistolMk58 entities: - - uid: 10639 + - uid: 10653 components: - type: Transform - pos: 17.56414,13.229148 - parent: 13329 - - uid: 10640 + parent: 10650 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10656 components: - type: Transform - pos: 17.56414,13.354148 + parent: 10650 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponRifleLecter + entities: + - uid: 10667 + components: + - type: Transform + pos: 19.47671,12.726559 parent: 13329 - - uid: 10641 + - uid: 32366 components: - type: Transform - pos: 17.56414,13.463523 + pos: 19.469765,12.497393 parent: 13329 -- proto: WeaponRifleLecter - entities: - - uid: 10666 + - uid: 33812 components: - type: Transform - pos: 19.43914,12.477703 + pos: 19.469765,12.351559 parent: 13329 - - uid: 10667 + - uid: 35337 components: - type: Transform - pos: 19.423515,12.602703 + pos: 19.469765,12.608503 parent: 13329 - - uid: 10668 +- proto: WeaponShotgunEnforcer + entities: + - uid: 9339 components: - type: Transform - pos: 19.43914,12.321453 + pos: 31.498325,13.851317 parent: 13329 - proto: WeaponShotgunHandmade entities: @@ -224760,37 +225369,47 @@ entities: parent: 13329 - proto: WeaponShotgunKammerer entities: - - uid: 10630 + - uid: 8641 components: - type: Transform - pos: 16.519209,11.668934 + pos: 17.450855,11.716393 parent: 13329 - - uid: 10631 + - uid: 8649 components: - type: Transform - pos: 16.503584,11.559559 + pos: 17.4578,11.5080595 parent: 13329 - - uid: 10632 + - uid: 35863 components: - type: Transform - pos: 16.503584,11.403309 + pos: 17.450855,11.605282 + parent: 13329 + - uid: 35864 + components: + - type: Transform + pos: 17.4578,11.403893 parent: 13329 - proto: WeaponSubMachineGunDrozd entities: - - uid: 1348 + - uid: 16653 components: - type: Transform - pos: 19.52061,11.77124 + pos: 18.624111,11.348337 parent: 13329 - - uid: 1349 + - uid: 18501 components: - type: Transform - pos: 19.536236,11.443115 + pos: 18.617167,11.646949 parent: 13329 - - uid: 13339 + - uid: 18504 components: - type: Transform - pos: 19.536236,11.630615 + pos: 18.617167,11.459449 + parent: 13329 + - uid: 18555 + components: + - type: Transform + pos: 18.617167,11.5497265 parent: 13329 - proto: WeaponSubMachineGunWt550 entities: @@ -224975,6 +225594,30 @@ entities: - type: Transform pos: -6.5,15.5 parent: 13329 + - uid: 7602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-15.5 + parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 15258: + - DoorStatus: Close + - uid: 8646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-17.5 + parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 15259: + - DoorStatus: Close - uid: 9385 components: - type: Transform @@ -225041,6 +225684,42 @@ entities: - type: Transform pos: 58.5,43.5 parent: 13329 + - uid: 31762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,37.5 + parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13328: + - DoorStatus: Close + - uid: 32363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-7.5 + parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9651: + - DoorStatus: Close + - uid: 36001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-13.5 + parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 15325: + - DoorStatus: Close - proto: WindoorBarKitchenLocked entities: - uid: 1220 @@ -225098,6 +225777,18 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,35.5 parent: 13329 +- proto: WindoorJanitorLocked + entities: + - uid: 9406 + components: + - type: Transform + pos: 3.5,8.5 + parent: 13329 + - uid: 15508 + components: + - type: Transform + pos: 4.5,8.5 + parent: 13329 - proto: WindoorKitchenHydroponicsLocked entities: - uid: 1224 @@ -225138,12 +225829,6 @@ entities: parent: 13329 - proto: WindoorSecureArmoryLocked entities: - - uid: 8649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,13.5 - parent: 13329 - uid: 9364 components: - type: Transform @@ -225166,56 +225851,88 @@ entities: rot: 3.141592653589793 rad pos: 16.5,13.5 parent: 13329 + - type: Airlock + autoClose: False - uid: 10679 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,13.5 parent: 13329 + - type: Airlock + autoClose: False - uid: 10680 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,13.5 parent: 13329 + - type: Airlock + autoClose: False - uid: 10681 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,13.5 parent: 13329 - - uid: 10682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,12.5 - parent: 13329 + - type: Airlock + autoClose: False - uid: 10683 components: - type: Transform pos: 17.5,11.5 parent: 13329 + - type: Airlock + autoClose: False - uid: 10684 components: - type: Transform pos: 16.5,11.5 parent: 13329 + - type: Airlock + autoClose: False - uid: 10685 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,12.5 parent: 13329 + - type: Airlock + autoClose: False - uid: 10686 components: - type: Transform pos: 19.5,11.5 parent: 13329 + - type: Airlock + autoClose: False - uid: 10687 components: - type: Transform pos: 18.5,11.5 parent: 13329 + - type: Airlock + autoClose: False + - uid: 26338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,12.5 + parent: 13329 + - type: Airlock + autoClose: False + - uid: 35969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,9.5 + parent: 13329 + - uid: 35970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,9.5 + parent: 13329 - proto: WindoorSecureAtmosphericsLocked entities: - uid: 14804 @@ -225274,23 +225991,39 @@ entities: - type: Transform pos: 22.5,42.5 parent: 13329 - - uid: 13323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,37.5 - parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10660: + - DoorStatus: Close + 9337: + - DoorStatus: Close - uid: 13328 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,37.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 31762: + - DoorStatus: Close - uid: 18458 components: - type: Transform pos: 21.5,42.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 10660: + - DoorStatus: Close + 9337: + - DoorStatus: Close - proto: WindoorSecureCommandLocked entities: - uid: 30210 @@ -225366,6 +226099,32 @@ entities: parent: 13329 - proto: WindoorSecureMedicalLocked entities: + - uid: 9337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,42.5 + parent: 13329 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 11718: + - DoorStatus: Close + 18458: + - DoorStatus: Close + - uid: 10660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,42.5 + parent: 13329 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 18458: + - DoorStatus: Close - uid: 18827 components: - type: Transform @@ -225403,12 +226162,24 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-15.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7602: + - DoorStatus: Close - uid: 15259 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-17.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8646: + - DoorStatus: Close - uid: 15324 components: - type: Transform @@ -225420,6 +226191,12 @@ entities: - type: Transform pos: 53.5,-13.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 36001: + - DoorStatus: Close - uid: 15329 components: - type: Transform @@ -225458,24 +226235,12 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-9.5 parent: 13329 - - uid: 2198 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-7.5 - parent: 13329 - uid: 4606 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,48.5 parent: 13329 - - uid: 8648 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,13.5 - parent: 13329 - uid: 9333 components: - type: MetaData @@ -225508,12 +226273,28 @@ entities: rot: 3.141592653589793 rad pos: 37.5,4.5 parent: 13329 + - uid: 9361 + components: + - type: Transform + pos: 16.5,15.5 + parent: 13329 - uid: 9423 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,2.5 parent: 13329 + - uid: 9651 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 32363: + - DoorStatus: Close - uid: 10244 components: - type: Transform @@ -226279,62 +227060,12 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,3.5 parent: 13329 - - uid: 8654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,12.5 - parent: 13329 - - uid: 8657 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,12.5 - parent: 13329 - - uid: 8662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,12.5 - parent: 13329 - - uid: 8663 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,12.5 - parent: 13329 - - uid: 8664 - components: - - type: Transform - pos: 19.5,12.5 - parent: 13329 - - uid: 8665 - components: - - type: Transform - pos: 18.5,12.5 - parent: 13329 - - uid: 8666 - components: - - type: Transform - pos: 17.5,12.5 - parent: 13329 - - uid: 8667 - components: - - type: Transform - pos: 16.5,12.5 - parent: 13329 - uid: 8668 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,12.5 parent: 13329 - - uid: 8669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,12.5 - parent: 13329 - uid: 8670 components: - type: Transform @@ -226359,12 +227090,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,13.5 parent: 13329 - - uid: 8674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,13.5 - parent: 13329 - uid: 8675 components: - type: Transform @@ -226383,6 +227108,24 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,13.5 parent: 13329 + - uid: 8939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 13329 + - uid: 9377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,15.5 + parent: 13329 + - uid: 9382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,13.5 + parent: 13329 - uid: 9461 components: - type: Transform @@ -226446,18 +227189,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,9.5 parent: 13329 - - uid: 9475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,10.5 - parent: 13329 - - uid: 9476 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,11.5 - parent: 13329 - uid: 10243 components: - type: Transform @@ -226518,11 +227249,11 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,15.5 parent: 13329 - - uid: 10621 + - uid: 10635 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,9.5 + pos: 14.5,10.5 parent: 13329 - uid: 11489 components: @@ -227588,13 +228319,70 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,56.5 parent: 13329 -- proto: Wirecutter - entities: - - uid: 9383 + - uid: 35338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,12.5 + parent: 13329 + - uid: 35941 + components: + - type: Transform + pos: 17.5,13.5 + parent: 13329 + - uid: 35942 + components: + - type: Transform + pos: 18.5,13.5 + parent: 13329 + - uid: 35943 + components: + - type: Transform + pos: 19.5,13.5 + parent: 13329 + - uid: 35944 + components: + - type: Transform + pos: 16.5,13.5 + parent: 13329 + - uid: 35945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,11.5 + parent: 13329 + - uid: 35946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,11.5 + parent: 13329 + - uid: 35947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,11.5 + parent: 13329 + - uid: 35948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,11.5 + parent: 13329 + - uid: 35967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,9.5 + parent: 13329 + - uid: 35968 components: - type: Transform - pos: 31.515518,13.593397 + rot: 1.5707963267948966 rad + pos: 20.5,9.5 parent: 13329 +- proto: Wirecutter + entities: - uid: 32412 components: - type: Transform diff --git a/Resources/Maps/loop.yml b/Resources/Maps/loop.yml index 267d1c78c0f..0c5e8dcc200 100644 --- a/Resources/Maps/loop.yml +++ b/Resources/Maps/loop.yml @@ -53,7 +53,6 @@ entities: - type: MovedGrids - type: Broadphase - type: OccluderTree - - type: LoadedMap - uid: 2 components: - type: MetaData @@ -7267,7 +7266,7 @@ entities: pos: -30.5,13.5 parent: 2 - type: Door - secondsUntilStateChange: -50568.94 + secondsUntilStateChange: -50998.375 state: Opening - type: DeviceLinkSource lastSignals: @@ -12234,11 +12233,6 @@ entities: - type: Transform pos: -21.18376,72.50857 parent: 2 - - uid: 9041 - components: - - type: Transform - pos: -35.100624,62.530506 - parent: 2 - proto: BoxFolderGreen entities: - uid: 6685 @@ -43742,7 +43736,7 @@ entities: pos: -9.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -298324.5 + secondsUntilStateChange: -298753.94 state: Opening - uid: 6747 components: @@ -43750,7 +43744,7 @@ entities: pos: -8.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -298325.22 + secondsUntilStateChange: -298754.66 state: Opening - uid: 6749 components: @@ -43758,7 +43752,7 @@ entities: pos: -6.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -298323.78 + secondsUntilStateChange: -298753.22 state: Opening - uid: 6750 components: @@ -43766,7 +43760,7 @@ entities: pos: -5.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -298323.16 + secondsUntilStateChange: -298752.6 state: Opening - uid: 9721 components: @@ -76348,7 +76342,8 @@ entities: - uid: 9067 components: - type: Transform - pos: -35.585,62.874256 + rot: -1.5707963267948966 rad + pos: -35.009964,62.848682 parent: 2 - uid: 15928 components: @@ -78537,6 +78532,13 @@ entities: - type: Transform pos: -18.5,63.5 parent: 2 +- proto: PaperBin20 + entities: + - uid: 9041 + components: + - type: Transform + pos: -35.5,62.5 + parent: 2 - proto: PaperCNCSheet entities: - uid: 6026 @@ -92373,6 +92375,18 @@ entities: - type: Transform pos: -34.5,67.5 parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 17777 + components: + - type: Transform + pos: -83.5,55.5 + parent: 2 + - uid: 17778 + components: + - type: Transform + pos: -83.5,69.5 + parent: 2 - proto: SpawnPointLawyer entities: - uid: 15239 @@ -97419,6 +97433,13 @@ entities: - type: Transform pos: -37.66107,39.822132 parent: 2 +- proto: ToyFigurineJanitor + entities: + - uid: 17775 + components: + - type: Transform + pos: -34.461563,68.50844 + parent: 2 - proto: ToyFigurineLawyer entities: - uid: 7153 @@ -97426,6 +97447,13 @@ entities: - type: Transform pos: -10.356424,64.17697 parent: 2 +- proto: ToyFigurineLibrarian + entities: + - uid: 17776 + components: + - type: Transform + pos: -66.40901,58.667908 + parent: 2 - proto: ToyFigurineMedicalDoctor entities: - uid: 5792 diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index 33ae3be951a..5c912ee2c70 100644 --- a/Resources/Maps/packed.yml +++ b/Resources/Maps/packed.yml @@ -154,11 +154,11 @@ entities: version: 6 2,1: ind: 2,1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAABWwAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAADewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABewAAAAAAawAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAADWwAAAAACewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADewAAAAAAHQAAAAACHQAAAAACHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABewAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAABewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAACewAAAAAATQAAAAAAHQAAAAABHQAAAAADTQAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAAAHQAAAAADewAAAAAAewAAAAAAHQAAAAADHQAAAAADewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAACHQAAAAAAewAAAAAATQAAAAAAHQAAAAACHQAAAAABHQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAADHQAAAAADewAAAAAATQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAACHQAAAAACewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAABWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACewAAAAAAagAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAACWwAAAAADewAAAAAAagAAAAAAewAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAABWwAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAADewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABewAAAAAAawAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAADWwAAAAACewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADewAAAAAAHQAAAAACHQAAAAACHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABewAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAABewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAACewAAAAAATQAAAAAAHQAAAAABHQAAAAADTQAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAAAHQAAAAADewAAAAAAewAAAAAAHQAAAAADHQAAAAADewAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAABewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAACHQAAAAAAewAAAAAATQAAAAAAHQAAAAACHQAAAAABTQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAADHQAAAAADewAAAAAATQAAAAAAHQAAAAAAHQAAAAAATQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAACHQAAAAACewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAABWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACewAAAAAAagAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAACWwAAAAADewAAAAAAagAAAAAAewAAAAAA version: 6 2,2: ind: 2,2 - tiles: ewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAACNgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAAAHQAAAAADewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAADeAAAAAACeAAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAABeAAAAAAAewAAAAAAeAAAAAADeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAAAeAAAAAADeAAAAAADewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAADeAAAAAAAeAAAAAADewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAegAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: ewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAACNgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAAAHQAAAAADewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAADeAAAAAACeAAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAABeAAAAAAAewAAAAAAeAAAAAADeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAAAeAAAAAADeAAAAAADewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAADeAAAAAAAeAAAAAADewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAegAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 1,3: ind: 1,3 @@ -166,7 +166,7 @@ entities: version: 6 2,3: ind: 2,3 - tiles: HQAAAAADewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HQAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-1: ind: 4,-1 @@ -174,7 +174,7 @@ entities: version: 6 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAA version: 6 3,0: ind: 3,0 @@ -1255,18 +1255,18 @@ entities: 10,5: 0: 64302 10,6: - 0: 30491 + 0: 13211 10,7: - 0: 65287 + 0: 65283 10,8: 0: 13105 1: 34944 11,5: 0: 48010 11,6: - 0: 59579 + 0: 63675 11,7: - 0: 30574 + 0: 30575 11,8: 0: 61030 12,4: @@ -1287,17 +1287,16 @@ entities: 0: 36795 9,10: 0: 15291 - 9,12: - 1: 4369 9,11: - 0: 8 + 1: 57344 10,9: 0: 3 1: 3720 10,10: - 0: 40944 + 0: 36848 10,11: - 0: 2203 + 1: 12561 + 0: 2184 10,12: 1: 50244 11,10: @@ -1367,7 +1366,7 @@ entities: 18,-1: 0: 65399 18,-5: - 0: 62692 + 0: 61440 18,0: 0: 4081 19,-4: @@ -2125,6 +2124,8 @@ entities: 4582: 31,26 4583: 38,26 4584: 38,27 + 4585: 41,27 + 4586: 41,26 4600: 17,39 4601: 19,39 4727: 20,-32 @@ -2152,9 +2153,6 @@ entities: 5175: 6,-19 5192: 30,-35 5193: 32,-35 - 5258: 42,26 - 5259: 42,27 - 5266: 41,28 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2196,6 +2194,7 @@ entities: 3154: 28,-51 3155: 28,-52 3156: 28,-53 + 4588: 41,28 4589: 38,28 4842: 9,-30 4843: 9,-31 @@ -2206,7 +2205,6 @@ entities: 5063: 25,-43 5180: 5,-21 5181: 7,-19 - 5260: 42,28 - node: color: '#FFFFFFFF' id: BotLeftGreyscale @@ -3067,24 +3065,20 @@ entities: color: '#FFFFFFFF' id: DirtHeavy decals: + 2895: 41,34 + 2901: 39,34 + 2906: 46,27 + 2922: 49,33 426: 40,-41 427: 40,-40 484: 31,-36 1485: 18,21 1507: 23,23 2260: 55,-15 - 2895: 41,34 - 2901: 39,34 - 2906: 46,27 - 2922: 49,33 2995: 54,32 2996: 53,37 2997: 58,36 - 3007: 59,34 - 3008: 59,38 3009: 58,32 - 3010: 59,32 - 3011: 59,40 3029: 38,22 3041: 54,47 3132: 58,31 @@ -3168,6 +3162,10 @@ entities: 5182: 5,-21 5253: 30,-26 5256: 30,-25 + 3010: 59,32 + 3011: 59,40 + 3007: 59,34 + 3008: 59,38 - node: cleanable: True zIndex: 1 @@ -3179,9 +3177,6 @@ entities: 2932: 37,19 2933: 38,17 3000: 55,34 - 3001: 54,35 - 3002: 56,38 - 3003: 54,39 3024: 37,31 3025: 40,30 3033: 59,36 @@ -3206,7 +3201,6 @@ entities: 3435: 6,31 3437: 8,30 3457: 6,23 - 3592: 4,40 3608: 4,38 3609: 6,37 3865: 70,-2 @@ -3287,12 +3281,22 @@ entities: 5184: 7,-19 5238: 31,-24 5254: 31,-26 + 3001: 54,35 + 3002: 56,38 + 3003: 54,39 + 3592: 4,40 - node: cleanable: True zIndex: 1 color: '#FFFFFFFF' id: DirtLight decals: + 2896: 39,35 + 2897: 41,36 + 2900: 41,33 + 2902: 39,36 + 2903: 40,34 + 2908: 49,35 429: 42,-41 430: 42,-40 431: 46,-41 @@ -3363,12 +3367,6 @@ entities: 2267: 57,-16 2268: 57,-15 2269: 57,-14 - 2896: 39,35 - 2897: 41,36 - 2900: 41,33 - 2902: 39,36 - 2903: 40,34 - 2908: 49,35 2935: 39,18 2982: 54,34 2983: 55,37 @@ -3384,14 +3382,13 @@ entities: 2993: 53,34 2994: 53,33 2999: 55,35 - 3004: 57,39 - 3006: 55,32 3012: 55,38 3013: 46,33 3015: 36,30 3016: 39,31 3017: 41,30 3018: 43,31 + 3027: 40,27 3028: 40,22 3030: 39,24 3040: 51,35 @@ -3492,12 +3489,18 @@ entities: 5210: 19,-37 5212: 19,-29 5236: 31,-25 + 3004: 57,39 + 3006: 55,32 - node: cleanable: True zIndex: 1 color: '#FFFFFFFF' id: DirtMedium decals: + 2891: 33,30 + 2898: 40,33 + 2899: 39,35 + 2918: 58,40 421: 38,-41 422: 39,-40 423: 45,-41 @@ -3515,10 +3518,6 @@ entities: 1506: 23,21 2261: 56,-14 2262: 55,-16 - 2891: 33,30 - 2898: 40,33 - 2899: 39,35 - 2918: 58,40 2936: 37,18 2975: 53,32 2976: 56,34 @@ -3527,9 +3526,6 @@ entities: 2979: 56,32 2981: 55,31 3019: 37,30 - 3020: 39,30 - 3021: 43,30 - 3022: 38,31 3023: 42,31 3043: 56,47 3291: 8,25 @@ -3593,6 +3589,9 @@ entities: 5211: 22,-36 5237: 31,-25 5257: 30,-24 + 3020: 39,30 + 3021: 43,30 + 3022: 38,31 - node: color: '#FFFFFFFF' id: FlowersBRThree @@ -5365,6 +5364,7 @@ entities: 45: 36,21 55: 34,28 177: 35,24 + 2832: 34,22 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 @@ -5680,10 +5680,10 @@ entities: color: '#FFFFFFFF' id: WarnCornerNE decals: + 1587: 40,27 2249: 57,-14 3101: 92,27 4516: 3,-30 - 5265: 41,27 - node: color: '#FFFFFFFF' id: WarnCornerNW @@ -5848,11 +5848,11 @@ entities: 4572: 57,9 4573: 57,10 4574: 57,11 + 4591: 40,26 4800: 24,-35 4801: 24,-34 4802: 24,-33 4855: 19,-43 - 5264: 41,26 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -6111,7 +6111,6 @@ entities: 4852: 20,-44 4853: 21,-44 4854: 22,-44 - 5263: 40,27 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -6627,71 +6626,6 @@ entities: - type: Transform pos: 12.501018,-34.058125 parent: 2 -- proto: ActionToggleBlock - entities: - - uid: 2409 - components: - - type: Transform - parent: 2404 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 2404 - - uid: 7583 - components: - - type: Transform - parent: 6422 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 6422 - - uid: 7822 - components: - - type: Transform - parent: 7584 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 7584 - - uid: 8350 - components: - - type: Transform - parent: 8348 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 8348 - - uid: 8413 - components: - - type: Transform - parent: 8351 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 8351 - - uid: 8418 - components: - - type: Transform - parent: 8417 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 8417 - - uid: 8420 - components: - - type: Transform - parent: 8419 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 8419 - - uid: 8423 - components: - - type: Transform - parent: 8422 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 8422 - - uid: 15461 - components: - - type: Transform - parent: 14664 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 14664 - proto: ActionToggleInternals entities: - uid: 5500 @@ -6700,36 +6634,12 @@ entities: parent: 5530 - type: InstantAction container: 5530 - - uid: 10848 - components: - - type: Transform - parent: 9478 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 9478 - - uid: 15468 - components: - - type: Transform - parent: 15462 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 15462 -- proto: ActionToggleJetpack - entities: - - uid: 10847 - components: - - type: Transform - parent: 9478 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 9478 - - uid: 15467 + - uid: 6197 components: - type: Transform - parent: 15462 + parent: 10847 - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 15462 + container: 10847 - proto: ActionToggleLight entities: - uid: 13568 @@ -7068,19 +6978,6 @@ entities: - 8009 - 6778 - 7708 - - uid: 8571 - components: - - type: MetaData - name: Head of Security Room Air Alarm - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,21.5 - parent: 2 - - type: DeviceList - devices: - - 2330 - - 8595 - - 8596 - uid: 8922 components: - type: Transform @@ -7519,16 +7416,19 @@ entities: - 8630 - uid: 12530 components: - - type: MetaData - name: Armory Air Alarm - type: Transform - pos: 41.5,29.5 + rot: 3.141592653589793 rad + pos: 40.5,21.5 parent: 2 - type: DeviceList devices: - - 8607 + - 12531 + - 8597 + - 8598 - 8610 - - 15477 + - 8607 + - 8596 + - 8595 - uid: 12532 components: - type: Transform @@ -7713,19 +7613,6 @@ entities: devices: - 15296 - 15298 - - uid: 15476 - components: - - type: MetaData - name: Armory Entrance Air Alarm - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,21.5 - parent: 2 - - type: DeviceList - devices: - - 12531 - - 8597 - - 8598 - proto: AirCanister entities: - uid: 2078 @@ -8202,11 +8089,6 @@ entities: - type: Transform pos: 85.5,4.5 parent: 2 - - uid: 3072 - components: - - type: Transform - pos: 74.5,-17.5 - parent: 2 - uid: 11758 components: - type: Transform @@ -8247,11 +8129,6 @@ entities: - type: Transform pos: 101.5,-20.5 parent: 2 - - uid: 15456 - components: - - type: Transform - pos: 40.5,43.5 - parent: 2 - proto: AirlockExternalAtmosphericsLocked entities: - uid: 4391 @@ -8573,17 +8450,6 @@ entities: rot: 1.5707963267948966 rad pos: 87.5,4.5 parent: 2 - - uid: 15442 - components: - - type: Transform - pos: 74.5,-19.5 - parent: 2 - - uid: 15457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,45.5 - parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: - uid: 509 @@ -9599,12 +9465,6 @@ entities: - type: Transform pos: 44.5,30.5 parent: 2 - - type: Door - secondsUntilStateChange: -2148.529 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True - uid: 3259 components: - type: Transform @@ -9715,14 +9575,6 @@ entities: - type: DeviceNetwork deviceLists: - 5859 - - uid: 2330 - components: - - type: Transform - pos: 44.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8571 - uid: 4554 components: - type: Transform @@ -9906,9 +9758,6 @@ entities: - type: Transform pos: 41.5,23.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15476 - uid: 12538 components: - type: Transform @@ -10098,14 +9947,6 @@ entities: - type: Transform pos: 35.5,-16.5 parent: 2 - - uid: 15477 - components: - - type: Transform - pos: 41.5,27.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12530 - proto: AltarSpawner entities: - uid: 2526 @@ -10163,14 +10004,6 @@ entities: parent: 2 - proto: APCBasic entities: - - uid: 257 - components: - - type: MetaData - name: Head of Security Room APC - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,21.5 - parent: 2 - uid: 340 components: - type: MetaData @@ -10293,6 +10126,13 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,3.5 parent: 2 + - uid: 2404 + components: + - type: MetaData + name: HoS Office APC + - type: Transform + pos: 43.5,26.5 + parent: 2 - uid: 2451 components: - type: MetaData @@ -11059,12 +10899,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,23.5 parent: 2 - - uid: 15466 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,45.5 - parent: 2 - proto: AtmosFixBlockerMarker entities: - uid: 1457 @@ -11668,6 +11502,15 @@ entities: parent: 9438 - type: Physics canCollide: False +- proto: BedsheetHOS + entities: + - uid: 545 + components: + - type: Transform + parent: 6422 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: BedsheetMedical entities: - uid: 5197 @@ -16745,6 +16588,21 @@ entities: - type: Transform pos: 29.5,23.5 parent: 2 + - uid: 8517 + components: + - type: Transform + pos: 43.5,26.5 + parent: 2 + - uid: 8518 + components: + - type: Transform + pos: 43.5,25.5 + parent: 2 + - uid: 8519 + components: + - type: Transform + pos: 43.5,24.5 + parent: 2 - uid: 8520 components: - type: Transform @@ -22185,31 +22043,6 @@ entities: - type: Transform pos: 11.5,-29.5 parent: 2 - - uid: 15463 - components: - - type: Transform - pos: 54.5,-19.5 - parent: 2 - - uid: 15464 - components: - - type: Transform - pos: 55.5,-19.5 - parent: 2 - - uid: 15465 - components: - - type: Transform - pos: 40.5,42.5 - parent: 2 - - uid: 15474 - components: - - type: Transform - pos: 43.5,22.5 - parent: 2 - - uid: 15475 - components: - - type: Transform - pos: 43.5,21.5 - parent: 2 - proto: CableApcStack entities: - uid: 5386 @@ -27381,11 +27214,6 @@ entities: - type: Transform pos: 12.5,36.5 parent: 2 - - uid: 545 - components: - - type: Transform - pos: 44.5,23.5 - parent: 2 - uid: 609 components: - type: Transform @@ -28931,6 +28759,21 @@ entities: - type: Transform pos: 52.5,-10.5 parent: 2 + - uid: 8348 + components: + - type: Transform + pos: 43.5,26.5 + parent: 2 + - uid: 8350 + components: + - type: Transform + pos: 43.5,25.5 + parent: 2 + - uid: 8351 + components: + - type: Transform + pos: 43.5,24.5 + parent: 2 - uid: 8352 components: - type: Transform @@ -30416,11 +30259,6 @@ entities: - type: Transform pos: 41.5,-37.5 parent: 2 - - uid: 9884 - components: - - type: Transform - pos: 43.5,23.5 - parent: 2 - uid: 9891 components: - type: Transform @@ -33121,16 +32959,6 @@ entities: - type: Transform pos: 35.5,-25.5 parent: 2 - - uid: 15472 - components: - - type: Transform - pos: 43.5,22.5 - parent: 2 - - uid: 15473 - components: - - type: Transform - pos: 43.5,21.5 - parent: 2 - proto: CableMVStack entities: - uid: 5628 @@ -34556,11 +34384,6 @@ entities: - type: Transform pos: 79.5,-9.5 parent: 2 - - uid: 3851 - components: - - type: Transform - pos: 74.5,-18.5 - parent: 2 - uid: 3904 components: - type: Transform @@ -37084,11 +36907,6 @@ entities: - type: Transform pos: 32.5,-22.5 parent: 2 - - uid: 15455 - components: - - type: Transform - pos: 40.5,44.5 - parent: 2 - proto: Cautery entities: - uid: 7791 @@ -37235,7 +37053,7 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,8.5 parent: 2 - - uid: 2328 + - uid: 2409 components: - type: Transform rot: 3.141592653589793 rad @@ -38307,11 +38125,6 @@ entities: - type: Transform pos: -21.5,-11.5 parent: 2 - - uid: 3852 - components: - - type: Transform - pos: 52.5,-20.5 - parent: 2 - uid: 5261 components: - type: Transform @@ -38332,6 +38145,11 @@ entities: - type: Transform pos: 36.5,-38.5 parent: 2 + - uid: 5685 + components: + - type: Transform + pos: 52.5,-20.5 + parent: 2 - uid: 5901 components: - type: Transform @@ -38394,11 +38212,6 @@ entities: - type: Transform pos: 24.5,-5.5 parent: 2 - - uid: 3853 - components: - - type: Transform - pos: 51.5,-20.5 - parent: 2 - uid: 7537 components: - type: Transform @@ -38409,6 +38222,11 @@ entities: - type: Transform pos: 5.5,-31.5 parent: 2 + - uid: 15442 + components: + - type: Transform + pos: 51.5,-20.5 + parent: 2 - proto: ClosetFireFilled entities: - uid: 99 @@ -38508,11 +38326,6 @@ entities: - type: Transform pos: 37.5,36.5 parent: 2 - - uid: 3854 - components: - - type: Transform - pos: 53.5,-20.5 - parent: 2 - uid: 5437 components: - type: Transform @@ -38528,6 +38341,11 @@ entities: - type: Transform pos: 65.5,9.5 parent: 2 + - uid: 13125 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 2 - uid: 13969 components: - type: Transform @@ -38755,6 +38573,11 @@ entities: - type: Transform pos: 81.516914,11.673225 parent: 2 + - uid: 10848 + components: + - type: Transform + pos: 44.482018,28.569605 + parent: 2 - proto: ClothingEyesGlassesSunglasses entities: - uid: 5522 @@ -38859,6 +38682,13 @@ entities: - type: Transform pos: 84.5185,-12.681175 parent: 2 +- proto: ClothingHeadHatGreysoft + entities: + - uid: 10851 + components: + - type: Transform + pos: 44.5341,28.569605 + parent: 2 - proto: ClothingHeadHatHardhatOrange entities: - uid: 10798 @@ -38963,15 +38793,20 @@ entities: parent: 2 - proto: ClothingHeadHelmetRiot entities: - - uid: 6197 + - uid: 8425 + components: + - type: Transform + pos: 38.53056,28.406826 + parent: 2 + - uid: 8426 components: - type: Transform - pos: 38.899494,28.859161 + pos: 38.53056,28.406826 parent: 2 - uid: 8427 components: - type: Transform - pos: 38.88387,28.616974 + pos: 38.53056,28.406826 parent: 2 - proto: ClothingHeadNurseHat entities: @@ -38994,13 +38829,6 @@ entities: - type: Transform pos: 102.40892,-16.268303 parent: 2 -- proto: ClothingMaskBlushingMime - entities: - - uid: 8345 - components: - - type: Transform - pos: 25.245346,6.3236885 - parent: 2 - proto: ClothingMaskBreathMedical entities: - uid: 12657 @@ -39047,6 +38875,13 @@ entities: - type: Transform pos: 81.53254,11.610725 parent: 2 +- proto: ClothingMaskSexyMime + entities: + - uid: 8345 + components: + - type: Transform + pos: 25.245346,6.3236885 + parent: 2 - proto: ClothingMaskSterile entities: - uid: 11969 @@ -39141,44 +38976,71 @@ entities: parent: 2 - proto: ClothingOuterArmorBasic entities: + - uid: 8413 + components: + - type: Transform + pos: 38.421185,28.625576 + parent: 2 + - uid: 8414 + components: + - type: Transform + pos: 38.421185,28.625576 + parent: 2 - uid: 8415 components: - type: Transform - pos: 39.219807,28.632599 + pos: 38.421185,28.625576 parent: 2 - - uid: 12089 +- proto: ClothingOuterArmorBasicSlim + entities: + - uid: 8416 components: - type: Transform - pos: 39.243244,28.859161 + pos: 38.62431,28.406826 parent: 2 - - uid: 13560 + - uid: 8417 + components: + - type: Transform + pos: 38.62431,28.406826 + parent: 2 + - uid: 8418 components: - type: Transform - pos: 39.22762,28.741974 + pos: 38.62431,28.406826 parent: 2 - proto: ClothingOuterArmorBulletproof entities: - - uid: 8421 + - uid: 8419 + components: + - type: Transform + pos: 38.37431,28.438076 + parent: 2 + - uid: 8420 components: - type: Transform - pos: 38.305744,28.874786 + pos: 38.37431,28.438076 parent: 2 - - uid: 15460 + - uid: 8421 components: - type: Transform - pos: 38.282307,28.593536 + pos: 38.37431,28.438076 parent: 2 - proto: ClothingOuterArmorRiot entities: - - uid: 8414 + - uid: 8422 components: - type: Transform - pos: 38.57137,28.679474 + pos: 38.71806,28.609951 + parent: 2 + - uid: 8423 + components: + - type: Transform + pos: 38.71806,28.609951 parent: 2 - uid: 8424 components: - type: Transform - pos: 38.618244,28.835724 + pos: 38.71806,28.609951 parent: 2 - type: GroupExamine group: @@ -39265,6 +39127,11 @@ entities: - type: Transform pos: 73.5,-12.5 parent: 2 + - uid: 10849 + components: + - type: Transform + pos: 44.450768,28.725964 + parent: 2 - proto: ClothingOuterVestHazard entities: - uid: 880 @@ -39964,6 +39831,11 @@ entities: - type: Transform pos: 30.5,26.5 parent: 2 + - uid: 12089 + components: + - type: Transform + pos: 44.5,25.5 + parent: 2 - proto: ComputerTelevision entities: - uid: 8498 @@ -40518,16 +40390,18 @@ entities: parent: 2 - proto: CrateSecurityTrackingMindshieldImplants entities: - - uid: 8416 + - uid: 2153 components: - type: Transform - anchored: True - pos: 41.5,28.5 + pos: 40.5,28.5 parent: 2 - - type: Physics - bodyType: Static - proto: CrateTrashCart entities: + - uid: 7822 + components: + - type: Transform + pos: 44.5,27.5 + parent: 2 - uid: 13122 components: - type: Transform @@ -40647,13 +40521,6 @@ entities: - type: Transform pos: 54.629898,-15.278217 parent: 2 -- proto: CrowbarRed - entities: - - uid: 2153 - components: - - type: Transform - pos: 38.46774,19.5811 - parent: 2 - proto: CryogenicSleepUnit entities: - uid: 3187 @@ -40918,16 +40785,6 @@ entities: - type: Transform pos: 86.5,4.5 parent: 2 - - uid: 14796 - components: - - type: Transform - pos: 74.5,-18.5 - parent: 2 - - uid: 15454 - components: - - type: Transform - pos: 40.5,44.5 - parent: 2 - proto: DefaultStationBeaconEvac entities: - uid: 4139 @@ -41145,10 +41002,10 @@ entities: parent: 2 - proto: DeployableBarrier entities: - - uid: 8519 + - uid: 257 components: - type: Transform - pos: 36.5,24.5 + pos: 39.5,28.5 parent: 2 - uid: 9602 components: @@ -45070,6 +44927,11 @@ entities: - type: Transform pos: 41.5,19.5 parent: 2 + - uid: 8445 + components: + - type: Transform + pos: 36.5,24.5 + parent: 2 - uid: 10276 components: - type: Transform @@ -45739,6 +45601,11 @@ entities: - type: Transform pos: 81.454414,9.641975 parent: 2 + - uid: 10850 + components: + - type: Transform + pos: 44.52368,28.548758 + parent: 2 - proto: FirelockEdge entities: - uid: 36 @@ -60873,7 +60740,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8571 + - 12530 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8597 @@ -60882,9 +60749,6 @@ entities: rot: 3.141592653589793 rad pos: 39.5,23.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15476 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8607 @@ -61653,7 +61517,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8571 + - 12530 - type: AtmosPipeColor color: '#990000FF' - uid: 8598 @@ -61662,9 +61526,6 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,22.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15476 - type: AtmosPipeColor color: '#990000FF' - uid: 8610 @@ -63642,10 +63503,25 @@ entities: - type: Transform pos: 79.5,-8.5 parent: 2 - - uid: 3844 + - uid: 3851 components: - type: Transform - pos: 36.5,50.5 + pos: 73.5,-17.5 + parent: 2 + - uid: 3852 + components: + - type: Transform + pos: 74.5,-17.5 + parent: 2 + - uid: 3853 + components: + - type: Transform + pos: 75.5,-17.5 + parent: 2 + - uid: 3854 + components: + - type: Transform + pos: 76.5,-17.5 parent: 2 - uid: 3855 components: @@ -66917,6 +66793,16 @@ entities: - type: Transform pos: 35.5,52.5 parent: 2 + - uid: 14796 + components: + - type: Transform + pos: 39.5,47.5 + parent: 2 + - uid: 14797 + components: + - type: Transform + pos: 40.5,47.5 + parent: 2 - uid: 14800 components: - type: Transform @@ -67347,11 +67233,6 @@ entities: - type: Transform pos: 33.5,57.5 parent: 2 - - uid: 15449 - components: - - type: Transform - pos: 36.5,48.5 - parent: 2 - proto: GrilleBroken entities: - uid: 1247 @@ -67415,11 +67296,6 @@ entities: - type: Transform pos: 1.5,42.5 parent: 2 - - uid: 4173 - components: - - type: Transform - pos: 36.5,49.5 - parent: 2 - uid: 5289 components: - type: Transform @@ -67520,6 +67396,11 @@ entities: - type: Transform pos: 47.5,51.5 parent: 2 + - uid: 14795 + components: + - type: Transform + pos: 38.5,47.5 + parent: 2 - uid: 14798 components: - type: Transform @@ -67572,54 +67453,32 @@ entities: parent: 2 - proto: GunSafeLaserCarbine entities: - - uid: 10849 - components: - - type: Transform - anchored: True - pos: 42.5,27.5 - parent: 2 - - type: Physics - bodyType: Static -- proto: GunSafePistolMk58 - entities: - - uid: 10851 + - uid: 2126 components: - type: Transform - anchored: True - pos: 42.5,28.5 + pos: 41.5,27.5 parent: 2 - - type: Physics - bodyType: Static - proto: GunSafeRifleLecter entities: - uid: 2460 components: - type: Transform - anchored: True pos: 38.5,26.5 parent: 2 - - type: Physics - bodyType: Static - proto: GunSafeShotgunKammerer entities: - - uid: 15471 + - uid: 2117 components: - type: Transform - anchored: True - pos: 42.5,26.5 + pos: 41.5,26.5 parent: 2 - - type: Physics - bodyType: Static - proto: GunSafeSubMachineGunDrozd entities: - uid: 2461 components: - type: Transform - anchored: True pos: 38.5,27.5 parent: 2 - - type: Physics - bodyType: Static - proto: Handcuffs entities: - uid: 9397 @@ -67648,6 +67507,11 @@ entities: parent: 2 - proto: HandLabeler entities: + - uid: 2291 + components: + - type: Transform + pos: 38.5,19.5 + parent: 2 - uid: 5319 components: - type: Transform @@ -68392,16 +68256,15 @@ entities: parent: 2 - proto: IntercomCommand entities: - - uid: 2329 + - uid: 4587 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,21.5 + pos: 12.5,-34.5 parent: 2 - - uid: 4587 + - uid: 7583 components: - type: Transform - pos: 12.5,-34.5 + pos: 44.5,26.5 parent: 2 - uid: 9436 components: @@ -68524,35 +68387,8 @@ entities: - uid: 9478 components: - type: Transform - pos: 39.649494,28.741974 + pos: 38.348988,28.699009 parent: 2 - - type: GasTank - toggleActionEntity: 10848 - - type: Jetpack - toggleActionEntity: 10847 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 10847 - - 10848 - - uid: 15462 - components: - - type: Transform - pos: 39.63387,28.898224 - parent: 2 - - type: GasTank - toggleActionEntity: 15468 - - type: Jetpack - toggleActionEntity: 15467 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 15467 - - 15468 - proto: KitchenElectricGrill entities: - uid: 13167 @@ -69101,11 +68937,40 @@ entities: parent: 2 - proto: LockerHeadOfSecurityFilledHardsuit entities: - - uid: 8426 + - uid: 6422 components: - type: Transform - pos: 44.5,25.5 + pos: 43.5,25.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 545 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerMedical entities: - uid: 10911 @@ -69381,15 +69246,15 @@ entities: - type: Transform pos: 2.5,-8.5 parent: 2 - - uid: 12857 + - uid: 12856 components: - type: Transform - pos: 71.5,34.5 + pos: 54.5,-20.5 parent: 2 - - uid: 15450 + - uid: 12857 components: - type: Transform - pos: 54.5,-20.5 + pos: 71.5,34.5 parent: 2 - proto: MaintenanceToolSpawner entities: @@ -69935,6 +69800,19 @@ entities: - type: Transform pos: 72.5,-9.5 parent: 2 + - uid: 10847 + components: + - type: Transform + pos: 44.5341,28.548758 + parent: 2 + - type: GasTank + toggleActionEntity: 6197 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 6197 - proto: PackPaperRollingFilters entities: - uid: 14654 @@ -70277,12 +70155,6 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,24.5 parent: 2 - - uid: 15469 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,28.5 - parent: 2 - proto: PlasmaWindoorSecureSecurityLocked entities: - uid: 7707 @@ -70290,26 +70162,11 @@ entities: - type: Transform pos: 41.5,24.5 parent: 2 - - uid: 8425 - components: - - type: Transform - pos: 40.5,28.5 - parent: 2 - - uid: 10850 - components: - - type: Transform - pos: 39.5,28.5 - parent: 2 - uid: 13582 components: - type: Transform pos: 38.5,24.5 parent: 2 - - uid: 15470 - components: - - type: Transform - pos: 38.5,28.5 - parent: 2 - proto: PlasticFlapsAirtightClear entities: - uid: 451 @@ -70626,13 +70483,12 @@ entities: rot: 3.141592653589793 rad pos: 42.5,34.5 parent: 2 -- proto: PosterLegitFoamForceAd +- proto: PosterLegitEnlist entities: - - uid: 2311 + - uid: 13104 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,28.5 + pos: 42.5,26.5 parent: 2 - proto: PosterLegitFruitBowl entities: @@ -70655,6 +70511,13 @@ entities: - type: Transform pos: 17.5,-6.5 parent: 2 +- proto: PosterLegitIonRifle + entities: + - uid: 13103 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 - proto: PosterLegitLoveIan entities: - uid: 10252 @@ -70683,12 +70546,6 @@ entities: - type: Transform pos: 29.5,37.5 parent: 2 - - uid: 2126 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,26.5 - parent: 2 - uid: 7464 components: - type: Transform @@ -72238,12 +72095,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,26.5 - parent: 2 - uid: 8573 components: - type: Transform @@ -72293,12 +72144,6 @@ entities: rot: 3.141592653589793 rad pos: 51.5,-8.5 parent: 2 - - uid: 9883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,28.5 - parent: 2 - uid: 10450 components: - type: Transform @@ -73213,6 +73058,22 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 8571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,28.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 8572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,28.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8601 components: - type: Transform @@ -73651,6 +73512,11 @@ entities: - type: Transform pos: 30.5,-30.5 parent: 2 + - uid: 7584 + components: + - type: Transform + pos: 38.5,28.5 + parent: 2 - uid: 7680 components: - type: Transform @@ -73749,6 +73615,11 @@ entities: - type: Transform pos: 43.5,-35.5 parent: 2 + - uid: 13560 + components: + - type: Transform + pos: 44.5,28.5 + parent: 2 - uid: 13966 components: - type: Transform @@ -75652,6 +75523,26 @@ entities: - type: Transform pos: 79.5,-8.5 parent: 2 + - uid: 3865 + components: + - type: Transform + pos: 73.5,-17.5 + parent: 2 + - uid: 3866 + components: + - type: Transform + pos: 74.5,-17.5 + parent: 2 + - uid: 3867 + components: + - type: Transform + pos: 75.5,-17.5 + parent: 2 + - uid: 3868 + components: + - type: Transform + pos: 76.5,-17.5 + parent: 2 - uid: 3869 components: - type: Transform @@ -76911,129 +76802,23 @@ entities: - type: Transform pos: 66.55991,-3.281434 parent: 2 -- proto: RiotBulletShield - entities: - - uid: 2404 - components: - - type: Transform - pos: 40.60262,28.679474 - parent: 2 - # - type: Blocking - # blockingToggleActionEntity: 2409 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 2409 - - uid: 7584 - components: - - type: Transform - pos: 40.594807,28.656036 - parent: 2 - # - type: Blocking - # blockingToggleActionEntity: 7822 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 7822 - - uid: 8351 - components: - - type: Transform - pos: 40.57918,28.913849 - parent: 2 - # - type: Blocking - # blockingToggleActionEntity: 8413 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 8413 -- proto: RiotLaserShield - entities: - - uid: 6422 - components: - - type: Transform - pos: 40.04793,28.648224 - parent: 2 - # - type: Blocking - # blockingToggleActionEntity: 7583 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 7583 - - uid: 8419 - components: - - type: Transform - pos: 40.04012,28.835724 - parent: 2 - # - type: Blocking - # blockingToggleActionEntity: 8420 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 8420 - - uid: 8422 - components: - - type: Transform - pos: 40.063557,28.726349 - parent: 2 - # - type: Blocking - # blockingToggleActionEntity: 8423 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 8423 - proto: RiotShield entities: - - uid: 8348 + - uid: 9883 components: - type: Transform - pos: 40.368244,28.741974 + pos: 38.328156,28.35502 parent: 2 - # - type: Blocking - # blockingToggleActionEntity: 8350 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 8350 - - uid: 8417 + - uid: 9884 components: - type: Transform - pos: 40.368244,28.609161 + pos: 38.328156,28.365444 parent: 2 - # - type: Blocking - # blockingToggleActionEntity: 8418 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 8418 - uid: 14664 components: - type: Transform - pos: 40.336994,28.882599 + pos: 38.328156,28.365444 parent: 2 - # - type: Blocking - # blockingToggleActionEntity: 15461 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 15461 - proto: RobocopCircuitBoard entities: - uid: 14284 @@ -78534,16 +78319,6 @@ entities: - type: Transform pos: 85.5,3.5 parent: 2 - - uid: 15453 - components: - - type: Transform - pos: 41.5,43.5 - parent: 2 - - uid: 15458 - components: - - type: Transform - pos: 75.5,-17.5 - parent: 2 - proto: SignEVA entities: - uid: 5204 @@ -80588,11 +80363,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-8.5 parent: 2 - - uid: 2291 - components: - - type: Transform - pos: 36.5,32.5 - parent: 2 - uid: 8116 components: - type: Transform @@ -81023,6 +80793,29 @@ entities: parent: 2 - proto: SuitStorageSec entities: + - uid: 2311 + components: + - type: Transform + pos: 41.5,28.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 11209 components: - type: Transform @@ -83634,18 +83427,6 @@ entities: - type: Transform pos: 39.5,21.5 parent: 2 - - uid: 8445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,28.5 - parent: 2 - - uid: 8518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,28.5 - parent: 2 - uid: 8675 components: - type: Transform @@ -83684,12 +83465,6 @@ entities: - type: Transform pos: 49.5,1.5 parent: 2 - - uid: 13103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,28.5 - parent: 2 - uid: 14245 components: - type: Transform @@ -86441,12 +86216,6 @@ entities: - type: Transform pos: 24.5,28.5 parent: 2 - - uid: 2117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,25.5 - parent: 2 - uid: 2122 components: - type: Transform @@ -86707,6 +86476,21 @@ entities: - type: Transform pos: 37.5,25.5 parent: 2 + - uid: 2328 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 + - uid: 2329 + components: + - type: Transform + pos: 42.5,27.5 + parent: 2 + - uid: 2330 + components: + - type: Transform + pos: 42.5,26.5 + parent: 2 - uid: 2331 components: - type: Transform @@ -87550,12 +87334,17 @@ entities: - uid: 3071 components: - type: Transform - pos: 55.5,-20.5 + pos: 39.5,43.5 + parent: 2 + - uid: 3072 + components: + - type: Transform + pos: 40.5,43.5 parent: 2 - uid: 3073 components: - type: Transform - pos: 55.5,-21.5 + pos: 41.5,43.5 parent: 2 - uid: 3074 components: @@ -89057,6 +88846,11 @@ entities: - type: Transform pos: 66.5,-20.5 parent: 2 + - uid: 3844 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 - uid: 3847 components: - type: Transform @@ -89077,26 +88871,6 @@ entities: - type: Transform pos: 72.5,-17.5 parent: 2 - - uid: 3865 - components: - - type: Transform - pos: 76.5,-17.5 - parent: 2 - - uid: 3866 - components: - - type: Transform - pos: 76.5,-18.5 - parent: 2 - - uid: 3867 - components: - - type: Transform - pos: 76.5,-19.5 - parent: 2 - - uid: 3868 - components: - - type: Transform - pos: 73.5,-19.5 - parent: 2 - uid: 3879 components: - type: Transform @@ -89300,12 +89074,17 @@ entities: - uid: 4172 components: - type: Transform - pos: 75.5,-17.5 + pos: 54.5,-21.5 + parent: 2 + - uid: 4173 + components: + - type: Transform + pos: 55.5,-21.5 parent: 2 - uid: 4174 components: - type: Transform - pos: 73.5,-17.5 + pos: 55.5,-20.5 parent: 2 - uid: 4175 components: @@ -89717,11 +89496,6 @@ entities: - type: Transform pos: 53.5,46.5 parent: 2 - - uid: 5685 - components: - - type: Transform - pos: 54.5,-21.5 - parent: 2 - uid: 5724 components: - type: Transform @@ -89795,7 +89569,7 @@ entities: - uid: 6212 components: - type: Transform - pos: 39.5,43.5 + pos: 56.5,-20.5 parent: 2 - uid: 6335 components: @@ -90322,11 +90096,6 @@ entities: - type: Transform pos: 3.5,22.5 parent: 2 - - uid: 8517 - components: - - type: Transform - pos: 44.5,28.5 - parent: 2 - uid: 8674 components: - type: Transform @@ -91107,11 +90876,6 @@ entities: - type: Transform pos: 20.5,-60.5 parent: 2 - - uid: 12856 - components: - - type: Transform - pos: 39.5,45.5 - parent: 2 - uid: 12888 components: - type: Transform @@ -91247,11 +91011,6 @@ entities: - type: Transform pos: -20.5,1.5 parent: 2 - - uid: 13104 - components: - - type: Transform - pos: 44.5,27.5 - parent: 2 - uid: 13113 components: - type: Transform @@ -91262,11 +91021,6 @@ entities: - type: Transform pos: 36.5,20.5 parent: 2 - - uid: 13125 - components: - - type: Transform - pos: 38.5,45.5 - parent: 2 - uid: 13184 components: - type: Transform @@ -92497,17 +92251,6 @@ entities: - type: Transform pos: 4.5,41.5 parent: 2 - - uid: 14795 - components: - - type: Transform - pos: 56.5,-20.5 - parent: 2 - - uid: 14797 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-20.5 - parent: 2 - uid: 14809 components: - type: Transform @@ -92633,21 +92376,6 @@ entities: - type: Transform pos: 12.5,-54.5 parent: 2 - - uid: 15451 - components: - - type: Transform - pos: 41.5,43.5 - parent: 2 - - uid: 15452 - components: - - type: Transform - pos: 41.5,45.5 - parent: 2 - - uid: 15459 - components: - - type: Transform - pos: 75.5,-19.5 - parent: 2 - proto: WallReinforcedRust entities: - uid: 14967 diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/ADT/Entities/Clothing/Head/hardsuit-helmets.yml index 8354a7a7efa..05a830a3606 100644 --- a/Resources/Prototypes/ADT/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/ADT/Entities/Clothing/Head/hardsuit-helmets.yml @@ -25,7 +25,7 @@ Radiation: 0.9 - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ADTClothingHeadHelmetIlisium categories: [ HideSpawnMenu ] name: helmet @@ -51,7 +51,7 @@ # Blueshield - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ADTClothingHeadHelmetHardsuitBlueshield categories: [ HideSpawnMenu ] name: blueshield hardsuit helmet @@ -177,7 +177,7 @@ - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ADTClothingHeadHelmetHardsuitInquisitory categories: [ HideSpawnMenu ] name: inquisitor hardsuit helmet @@ -203,7 +203,7 @@ Heat: 0.8 - type: entity - parent: ClothingHeadHardsuitWithLightBase #ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ADTClothingHeadHelmetHardsuitDeathsquad name: deathsquad hardsuit helmet description: A robust helmet for special operations. @@ -236,7 +236,7 @@ #Шлемы скафандров Киберсана - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ADTClothingHeadHelmetHardsuitCybersunBodyGuard categories: [ HideSpawnMenu ] name: cybersun bodyguard helmet @@ -263,7 +263,7 @@ Radiation: 0.5 - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ADTClothingHeadHelmetHardsuitCybersunCrysis categories: [ HideSpawnMenu ] name: cybersun crysis helmet @@ -291,7 +291,7 @@ Radiation: 0 - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ADTClothingHeadHelmetHardsuitSaibaSain categories: [ HideSpawnMenu ] name: Saiba Sain elite hardsuit helm diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Head/modsuit-helmets.yml b/Resources/Prototypes/ADT/Entities/Clothing/Head/modsuit-helmets.yml index ad9db4f25b5..9566920af2b 100644 --- a/Resources/Prototypes/ADT/Entities/Clothing/Head/modsuit-helmets.yml +++ b/Resources/Prototypes/ADT/Entities/Clothing/Head/modsuit-helmets.yml @@ -1,5 +1,5 @@ - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: ClothingHeadHardsuitBase id: ADTClothingHeadHelmetModsuitBase name: base MOD helmet description: A helmet for a MODsuit. diff --git a/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/armor.yml index ecafc030ac5..7b73bf14499 100644 --- a/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/armor.yml @@ -65,7 +65,7 @@ - ADTBadge - type: entity - parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing, BaseRestrictedContraband] + parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing] id: ClothingOuterArmorAirsoftBlue name: airsoft suit description: Semi-flexible polycarbonate armor suit with weakened protection. Airsoft armor @@ -78,7 +78,7 @@ - type: GroupExamine - type: entity - parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing, BaseRestrictedContraband] + parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing] id: ClothingOuterArmorAirsoftRed name: airsoft suit description: Semi-flexible polycarbonate armor suit with weakened protection. Airsoft armor diff --git a/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/hardsuits.yml index a7df43ccd5e..2c2ee80337c 100644 --- a/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/hardsuits.yml @@ -125,7 +125,7 @@ sprintModifier: 0.9 - type: entity - parent: ClothingOuterHardsuitBase + parent: [ClothingOuterHardsuitBase, BaseSecurityContraband] id: ADTBlueshieldSuit name: blueshield's hardsuit description: A rugged and mobile spacesuit for the lives of high-ranking members of Nanotrasen. diff --git a/Resources/Prototypes/ADT/Entities/Mobs/NPCs/Megafauna/Drake.yml b/Resources/Prototypes/ADT/Entities/Mobs/NPCs/Megafauna/Drake.yml index 0b5fdc3c6dd..31efe77fbe4 100644 --- a/Resources/Prototypes/ADT/Entities/Mobs/NPCs/Megafauna/Drake.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/NPCs/Megafauna/Drake.yml @@ -579,10 +579,10 @@ - type: BallisticAmmoProvider proto: BulletFirethrow capacity: 69000 - - type: MagazineVisuals - magState: mag - steps: 4 - zeroVisible: true + # - type: MagazineVisuals # Commented. Debug-fix + # magState: mag + # steps: 4 + # zeroVisible: true - type: Appearance - type: ContainerContainer containers: diff --git a/Resources/Prototypes/ADT/Entities/Objects/Weapons/Guns/Battery/battery_gun.yml b/Resources/Prototypes/ADT/Entities/Objects/Weapons/Guns/Battery/battery_gun.yml index 0d6b73807d7..502b3462214 100644 --- a/Resources/Prototypes/ADT/Entities/Objects/Weapons/Guns/Battery/battery_gun.yml +++ b/Resources/Prototypes/ADT/Entities/Objects/Weapons/Guns/Battery/battery_gun.yml @@ -244,6 +244,7 @@ magState: mag steps: 2 zeroVisible: true + - type: Appearance - type: entity name: Energy Crossbow diff --git a/Resources/Prototypes/ADT/Maps/additionalmap.yml b/Resources/Prototypes/ADT/Maps/additionalmap.yml index ea4fb009ddc..b2d086836e4 100644 --- a/Resources/Prototypes/ADT/Maps/additionalmap.yml +++ b/Resources/Prototypes/ADT/Maps/additionalmap.yml @@ -2,9 +2,9 @@ # Айди - станция-база, в списке она не нужна. В списке - дополнительные карты. # - type: additionalMap -# id: CorvaxDelta +# id: Dev # maps: -# - ADT_Aspid -# - CorvaxTerra # - MeteorArena -# - Dev + # - ADT_Aspid + # - CorvaxTerra + # - Dev diff --git a/Resources/Prototypes/ADT/Procedural/Themes/lavadunges.yml b/Resources/Prototypes/ADT/Procedural/Themes/lavadunges.yml index 521655ba519..702ef0439fe 100644 --- a/Resources/Prototypes/ADT/Procedural/Themes/lavadunges.yml +++ b/Resources/Prototypes/ADT/Procedural/Themes/lavadunges.yml @@ -201,13 +201,13 @@ tags: - LavaDungeon -- type: entity - id: BloodMinerDungeMarker - parent: BaseRoomMarker - name: blood miner dunge spawer - components: - - type: RoomFill - clearExisting: true - roomWhitelist: - tags: - - LavaDungeonBloodMiner +# - type: entity +# id: BloodMinerDungeMarker +# parent: BaseRoomMarker +# name: blood miner dunge spawer +# components: +# - type: RoomFill +# clearExisting: true +# roomWhitelist: +# tags: +# - LavaDungeonBloodMiner diff --git a/Resources/Prototypes/ADT/planets.yml b/Resources/Prototypes/ADT/planets.yml index 6200000a833..a8bead1b7b1 100644 --- a/Resources/Prototypes/ADT/planets.yml +++ b/Resources/Prototypes/ADT/planets.yml @@ -15,7 +15,7 @@ - LavaDungeonRoomMarker - LavaDungeonRoomMarker - LavaDungeonRoomMarker - - BloodMinerDungeMarker + # - BloodMinerDungeMarker minX: -200 maxX: 200 minY: -200 diff --git a/Resources/Prototypes/Access/command.yml b/Resources/Prototypes/Access/command.yml index 62193d5ffee..b74b4bb3b13 100644 --- a/Resources/Prototypes/Access/command.yml +++ b/Resources/Prototypes/Access/command.yml @@ -20,6 +20,7 @@ - type: accessLevel id: EmergencyShuttleRepealAll + name: id-card-access-level-emergency-shuttle-repeal - type: accessLevel id: Cryogenics diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index 7eec547f5f3..a01c8c75b4f 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -154,6 +154,8 @@ name: Scramble DNA description: Randomly changes your name and appearance. components: + - type: ConfirmableAction + popup: dna-scrambler-action-popup - type: InstantAction charges: 1 itemIconStyle: BigAction @@ -341,3 +343,16 @@ itemIconStyle: NoItem useDelay: 1 event: !type:FakeMindShieldToggleEvent + +- type: entity + id: ActionToggleParamedicSiren + name: Toggle Paramedic Siren + description: Toggles the paramedic siren on and off. + components: + - type: InstantAction + icon: + sprite: Clothing/OuterClothing/Hardsuits/paramed.rsi + state: icon-siren + useDelay: 1 + itemIconStyle: BigAction + event: !type:ToggleActionEvent diff --git a/Resources/Prototypes/Atmospherics/thresholds.yml b/Resources/Prototypes/Atmospherics/thresholds.yml index 29904e6f245..20d7911bf2d 100644 --- a/Resources/Prototypes/Atmospherics/thresholds.yml +++ b/Resources/Prototypes/Atmospherics/thresholds.yml @@ -114,3 +114,14 @@ threshold: 0.8 # danger below 80% nitrogen lowerWarnAround: !type:AlarmThresholdSetting threshold: 1.125 # warning below 90% + +- type: alarmThreshold + id: freezerTemperature + upperBound: !type:AlarmThresholdSetting + threshold: 335.15 # T-38.15C (235) + 100 + lowerBound: !type:AlarmThresholdSetting + threshold: 135.15 # T-38.15C (235) - 100 + upperWarnAround: !type:AlarmThresholdSetting + threshold: 0.8 + lowerWarnAround: !type:AlarmThresholdSetting + threshold: 1.1 diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml b/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml index 48321ac8fe3..201a3b79f67 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml @@ -14,7 +14,7 @@ sprite: Objects/Fun/Instruments/structureinstruments.rsi state: tuba product: CrateFunInstrumentsBrass - cost: 2500 + cost: 2000 category: cargoproduct-category-name-fun group: market @@ -34,7 +34,7 @@ sprite: Objects/Fun/Instruments/harmonica.rsi state: icon product: CrateFunInstrumentsWoodwind - cost: 2500 + cost: 3000 category: cargoproduct-category-name-fun group: market diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_security.yml b/Resources/Prototypes/Catalog/Cargo/cargo_security.yml index 3df39d199a6..5678b89bfe4 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_security.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_security.yml @@ -4,7 +4,7 @@ sprite: Clothing/OuterClothing/Armor/bulletproof.rsi state: icon product: CrateSecurityArmor - cost: 900 #ADT Tweak 700 + cost: 900 #ADT Tweak category: cargoproduct-category-name-security group: market diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml index 0b7025afb8c..4db627bdaed 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml @@ -34,14 +34,14 @@ parent: ClothingBackpackDuffelSyndicateBundle id: ClothingBackpackDuffelSyndicateFilledShotgun name: Bulldog bundle - description: "Lean and mean: Contains the popular Bulldog Shotgun, a 12g beanbag drum and 3 12g buckshot drums." #, and a pair of Thermal Imaging Goggles. + description: "Lean and mean: Contains the popular Bulldog Shotgun and four 12g buckshot drums." #, and a pair of Thermal Imaging Goggles. components: - type: StorageFill contents: - id: WeaponShotgunBulldog - id: MagazineShotgun - id: MagazineShotgun - - id: MagazineShotgunBeanbag + - id: MagazineShotgun # - id: ThermalImagingGoggles - type: entity diff --git a/Resources/Prototypes/Catalog/Fills/Crates/armory.yml b/Resources/Prototypes/Catalog/Fills/Crates/armory.yml index 82fa54eaba8..b1187ecd6c8 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/armory.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/armory.yml @@ -1,6 +1,6 @@ - type: entity id: CrateArmorySMG - parent: [ CrateWeaponSecure, BaseRestrictedContraband ] + parent: [ CrateWeaponSecure, BaseSecurityContraband ] name: SMG crate description: Contains two high-powered, semiautomatic rifles with four mags. Requires Armory access to open. components: @@ -13,7 +13,7 @@ - type: entity id: CrateArmoryShotgun - parent: [ CrateWeaponSecure, BaseRestrictedContraband ] + parent: [ CrateWeaponSecure, BaseSecurityContraband ] name: shotgun crate description: For when the enemy absolutely needs to be replaced with lead. Contains two Enforcer Combat Shotguns, and some standard shotgun shells. Requires Armory access to open. components: @@ -26,7 +26,7 @@ - type: entity id: CrateTrackingImplants - parent: [ CrateWeaponSecure, BaseRestrictedContraband ] + parent: [ CrateWeaponSecure, BaseSecurityContraband ] name: tracking implants description: Contains a handful of tracking implanters. Good for prisoners you'd like to release but still keep track of. components: @@ -36,7 +36,7 @@ amount: 5 - type: entity - parent: [ CrateWeaponSecure, BaseRestrictedContraband ] + parent: [ CrateWeaponSecure, BaseSecurityContraband ] id: CrateTrainingBombs name: training bombs description: Contains three low-yield training bombs for security to learn defusal and safe ordnance disposal, EOD suit not included. Requires Armory access to open. @@ -48,7 +48,7 @@ - type: entity id: CrateArmoryLaser - parent: [ CrateWeaponSecure, BaseRestrictedContraband ] + parent: [ CrateWeaponSecure, BaseSecurityContraband ] name: lasers crate description: Contains three standard-issue laser rifles. Requires Armory access to open. components: @@ -59,7 +59,7 @@ - type: entity id: CrateArmoryPistols - parent: [ CrateWeaponSecure, BaseRestrictedContraband ] + parent: [ CrateWeaponSecure, BaseSecurityContraband ] name: pistols crate description: Contains two standard NT pistols with four mags. Requires Armory access to open. components: @@ -72,7 +72,7 @@ - type: entity id: CrateSecurityRiot - parent: [ CrateWeaponSecure, BaseRestrictedContraband ] + parent: [ CrateWeaponSecure, BaseSecurityContraband ] name: swat crate description: Contains two sets of riot armor, helmets, shields, and enforcers loaded with beanbags. Extra ammo is included. Requires Armory access to open. components: diff --git a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml index 71e27d96a49..d0f9cf8ff80 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml @@ -102,8 +102,6 @@ amount: 2 - id: FrenchHornInstrument amount: 2 - - id: SaxophoneInstrument - amount: 2 - id: EuphoniumInstrument - id: TubaInstrument @@ -140,6 +138,8 @@ - id: FluteInstrument - id: HarmonicaInstrument amount: 2 + - id: SaxophoneInstrument + amount: 2 - id: OcarinaInstrument - id: PanFluteInstrument diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index c51e06e2bd1..9efaafbbf2e 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -205,7 +205,7 @@ id: FillChiefEngineerHardsuit table: !type:AllSelector children: - - id: ClothingMaskBreath + - id: ClothingMaskGasAtmos - id: ClothingOuterHardsuitEngineeringWhite - id: ClothingShoesBootsMagAdv - id: JetpackVoidFilled diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml index 9f0f8f8f247..a313f872539 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml @@ -189,7 +189,7 @@ prob: 0.5 - type: entity - parent: [GunSafeBaseSecure, BaseRestrictedContraband] + parent: [GunSafeBaseSecure, BaseSecurityContraband] id: GunSafeDisabler name: disabler safe components: @@ -199,7 +199,7 @@ amount: 5 - type: entity - parent: [GunSafeBaseSecure, BaseRestrictedContraband] + parent: [GunSafeBaseSecure, BaseSecurityContraband] id: GunSafePistolMk58 name: mk58 safe components: @@ -211,7 +211,7 @@ amount: 8 - type: entity - parent: [GunSafeBaseSecure, BaseRestrictedContraband] + parent: [GunSafeBaseSecure, BaseSecurityContraband] id: GunSafeRifleLecter name: lecter safe components: @@ -223,7 +223,7 @@ amount: 4 - type: entity - parent: [GunSafeBaseSecure, BaseRestrictedContraband] + parent: [GunSafeBaseSecure, BaseSecurityContraband] id: GunSafeSubMachineGunDrozd name: drozd safe components: @@ -235,7 +235,7 @@ amount: 4 - type: entity - parent: [GunSafeBaseSecure, BaseRestrictedContraband] + parent: [GunSafeBaseSecure, BaseSecurityContraband] id: GunSafeShotgunEnforcer name: enforcer safe components: @@ -247,7 +247,7 @@ amount: 4 - type: entity - parent: [GunSafeBaseSecure, BaseRestrictedContraband] + parent: [GunSafeBaseSecure, BaseSecurityContraband] id: GunSafeShotgunKammerer name: kammerer safe components: @@ -261,7 +261,7 @@ - type: entity id: GunSafeSubMachineGunWt550 suffix: Wt550 - parent: [GunSafeBaseSecure, BaseRestrictedContraband] + parent: [GunSafeBaseSecure, BaseSecurityContraband] name: wt550 safe components: - type: StorageFill @@ -272,7 +272,7 @@ amount: 4 - type: entity - parent: [GunSafeBaseSecure, BaseRestrictedContraband] + parent: [GunSafeBaseSecure, BaseSecurityContraband] id: GunSafeLaserCarbine name: laser safe components: diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml index dad62d1b7ab..c06270fd716 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml @@ -149,6 +149,7 @@ id: ClosetJanitorBombFilled parent: ClosetJanitorBomb suffix: DO NOT MAP, Filled + categories: [ DoNotMap ] components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/vendomat.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/vendomat.yml index d3b804f9014..78b69899b9d 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/vendomat.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/vendomat.yml @@ -3,7 +3,8 @@ startingInventory: RemoteSignaller: 1 Igniter: 2 - Wirecutter: 1 + Wirecutter: 2 + Screwdriver: 2 CableApcStack: 2 FlashlightLantern: 2 PowerCellSmallPrinted: 3 diff --git a/Resources/Prototypes/Catalog/spellbook_catalog.yml b/Resources/Prototypes/Catalog/spellbook_catalog.yml index 69b883b3fbf..3ef348de5cb 100644 --- a/Resources/Prototypes/Catalog/spellbook_catalog.yml +++ b/Resources/Prototypes/Catalog/spellbook_catalog.yml @@ -184,6 +184,19 @@ - !type:ListingLimitedStockCondition stock: 1 +- type: listing + id: SpellbookStaffAnimation + name: spellbook-staff-animation-name + description: spellbook-staff-animation-description + productEntity: AnimationStaff + cost: + WizCoin: 3 + categories: + - SpellbookEquipment + conditions: + - !type:ListingLimitedStockCondition + stock: 1 + # Event - type: listing id: SpellbookEventSummonGhosts diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index edfa81e748a..4d1bc48c690 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -19,11 +19,11 @@ name: uplink-revolver-python-name description: uplink-revolver-python-desc productEntity: WeaponRevolverPythonAP - discountCategory: usualDiscounts + discountCategory: rareDiscounts discountDownTo: - Telecrystal: 4 + Telecrystal: 2 cost: - Telecrystal: 8 # Originally was 13 TC but was not used due to high cost + Telecrystal: 4 # Originally was 13 and then 8 TC but was not used due to high cost categories: - UplinkWeaponry @@ -270,10 +270,10 @@ - UplinkExplosives - type: listing - id: UplinkSupermatterGrenade - name: uplink-supermatter-grenade-name - description: uplink-supermatter-grenade-desc - productEntity: SupermatterGrenade + id: UplinkSingularityGrenade + name: uplink-singularity-grenade-name + description: uplink-singularity-grenade-desc + productEntity: SingularityGrenade discountCategory: usualDiscounts discountDownTo: Telecrystal: 3 @@ -1970,11 +1970,11 @@ name: uplink-revolver-cap-gun-fake-name description: uplink-revolver-cap-gun-fake-desc productEntity: RevolverCapGunFake - discountCategory: usualDiscounts + discountCategory: rareDiscounts discountDownTo: - Telecrystal: 4 # ADT-Tweak 5>4 + Telecrystal: 4 # ADT-Tweak cost: - Telecrystal: 8 # ADT-Tweak 9>8 + Telecrystal: 8 # ADT-Tweak categories: - UplinkJob conditions: diff --git a/Resources/Prototypes/Corvax/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Corvax/Entities/Clothing/Head/hardsuit-helmets.yml index 1ff00e017e4..0e51878b91e 100644 --- a/Resources/Prototypes/Corvax/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Corvax/Entities/Clothing/Head/hardsuit-helmets.yml @@ -1,5 +1,5 @@ - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: ClothingHeadHardsuitBase id: ClothingHeadHelmetCBURNLeader categories: [ HideSpawnMenu ] name: cburn commander helmet diff --git a/Resources/Prototypes/Corvax/Entities/Markers/Spawners/Random/contraband.yml b/Resources/Prototypes/Corvax/Entities/Markers/Spawners/Random/contraband.yml index b2c8a78de32..661182eefe3 100644 --- a/Resources/Prototypes/Corvax/Entities/Markers/Spawners/Random/contraband.yml +++ b/Resources/Prototypes/Corvax/Entities/Markers/Spawners/Random/contraband.yml @@ -85,7 +85,7 @@ - HypopenBox - GatfruitSeeds - EnergyDagger - - SupermatterGrenade + - SingularityGrenade - WhiteholeGrenade - HotPotato - WeaponSniperMosin diff --git a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml index bd44b0a8aff..e94ed147395 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml @@ -61,7 +61,7 @@ collection: IanBark - type: entity - parent: [ClothingBackpack, BaseRestrictedContraband] + parent: [ClothingBackpack, BaseSecurityContraband] id: ClothingBackpackSecurity name: security backpack description: It's a very robust backpack. @@ -70,7 +70,7 @@ sprite: Clothing/Back/Backpacks/security.rsi - type: entity - parent: [ClothingBackpack, BaseRestrictedContraband] + parent: [ClothingBackpack, BaseSecurityContraband] id: ClothingBackpackBrigmedic name: brigmedic backpack description: It's a very sterile backpack. diff --git a/Resources/Prototypes/Entities/Clothing/Back/duffel.yml b/Resources/Prototypes/Entities/Clothing/Back/duffel.yml index 072d564d5f9..b97431e7608 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/duffel.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/duffel.yml @@ -64,7 +64,7 @@ collection: BikeHorn - type: entity - parent: [ClothingBackpackDuffel, BaseRestrictedContraband] + parent: [ClothingBackpackDuffel, BaseSecurityContraband] id: ClothingBackpackDuffelSecurity name: security duffel bag description: A large duffel bag for holding extra security related goods. @@ -73,7 +73,7 @@ sprite: Clothing/Back/Duffels/security.rsi - type: entity - parent: [ClothingBackpackDuffel, BaseRestrictedContraband] + parent: [ClothingBackpackDuffel, BaseSecurityContraband] id: ClothingBackpackDuffelBrigmedic name: brigmedic duffel bag description: A large duffel bag for holding extra medical related goods. diff --git a/Resources/Prototypes/Entities/Clothing/Back/satchel.yml b/Resources/Prototypes/Entities/Clothing/Back/satchel.yml index 78fde527d18..5b195f44545 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/satchel.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/satchel.yml @@ -106,7 +106,7 @@ sprite: Clothing/Back/Satchels/science.rsi - type: entity - parent: [ClothingBackpackSatchel, BaseRestrictedContraband] + parent: [ClothingBackpackSatchel, BaseSecurityContraband] id: ClothingBackpackSatchelSecurity name: security satchel description: A robust satchel for security related needs. @@ -115,7 +115,7 @@ sprite: Clothing/Back/Satchels/security.rsi - type: entity - parent: [ClothingBackpackSatchel, BaseRestrictedContraband] + parent: [ClothingBackpackSatchel, BaseSecurityContraband] id: ClothingBackpackSatchelBrigmedic name: brigmedic satchel description: A sterile satchel for medical related needs. diff --git a/Resources/Prototypes/Entities/Clothing/Back/specific.yml b/Resources/Prototypes/Entities/Clothing/Back/specific.yml index bd4347c8662..467cf154b61 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/specific.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity parent: ClothingBackpack id: ClothingBackpackChameleon name: backpack @@ -37,10 +37,10 @@ # Corvax-HiddenDesc-End - type: entity - parent: Clothing + parent: [Clothing, ClothingSlotBase] id: ClothingBackpackWaterTank name: backpack water tank - description: Holds a large amount of fluids. Supplies to spray nozzles in your hands. + description: Holds a large amount of fluids. Supplies to spray nozzles in your hands, and has a slot on the side for said spray nozzles. components: - type: Tag tags: @@ -54,6 +54,20 @@ - type: Clothing slots: BACK sprite: Clothing/Back/Backpacks/waterbackpack.rsi + - type: ItemSlots + slots: + item: + priority: 2 + whitelist: + tags: + - SprayNozzle + - type: ItemMapper + mapLayers: + icon-filled: + whitelist: + tags: + - SprayNozzle + - type: Appearance - type: SolutionAmmoProvider solutionId: tank proto: BulletWaterShot diff --git a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml index d54fc18da7a..6664100acc9 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml @@ -462,7 +462,7 @@ - type: Appearance - type: entity - parent: [ClothingBeltStorageBase, ContentsExplosionResistanceBase, BaseRestrictedContraband] + parent: [ClothingBeltStorageBase, ContentsExplosionResistanceBase, BaseSecurityContraband] id: ClothingBeltSecurity name: security belt description: Can hold security gear like handcuffs and flashes. @@ -709,7 +709,7 @@ sprite: Clothing/Belt/suspenders_black.rsi - type: entity - parent: ClothingBeltStorageBase + parent: [ ClothingBeltStorageBase, BaseMagicalContraband ] id: ClothingBeltWand name: wand belt description: A belt designed to hold various rods of power. A veritable fanny pack of exotic magic. diff --git a/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml b/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml index ca9d0e89a1c..89227387f95 100644 --- a/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml +++ b/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml @@ -242,7 +242,7 @@ sprite: Clothing/Ears/Headsets/security.rsi - type: entity - parent: [ClothingHeadset, BaseRestrictedContraband] + parent: [ClothingHeadset, BaseSecurityContraband] id: ClothingHeadsetBrigmedic name: brigmedic headset description: A headset that helps to hear the death cries. diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml index 25e97fe512a..c4cd608feb5 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml @@ -158,7 +158,7 @@ - WhitelistChameleon - type: entity - parent: [ClothingEyesBase, ShowSecurityIcons, BaseRestrictedContraband] + parent: [ClothingEyesBase, ShowSecurityIcons, BaseSecurityContraband] id: ClothingEyesGlassesSecurity name: security glasses description: Upgraded sunglasses that provide flash immunity and a security HUD. @@ -188,7 +188,7 @@ parent: [ClothingEyesBase, BaseCommandContraband] id: ClothingEyesGlassesCommand name: administration glasses - description: Upgraded sunglasses that provide flash immunity and show ID card status. + description: Upgraded sunglasses that provide flash immunity and show ID card status. components: - type: Sprite sprite: Clothing/Eyes/Glasses/commandglasses.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml index 300c938bc90..ac8360f31d8 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml @@ -45,7 +45,7 @@ - HudMedical - type: entity - parent: [ClothingEyesBase, ShowSecurityIcons, BaseRestrictedContraband] + parent: [ClothingEyesBase, ShowSecurityIcons, BaseSecurityContraband] id: ClothingEyesHudSecurity name: security hud description: A heads-up display that scans the humanoids in view and provides accurate data about their ID status and security records. diff --git a/Resources/Prototypes/Entities/Clothing/Hands/colored.yml b/Resources/Prototypes/Entities/Clothing/Hands/colored.yml index 8abd311b51f..98a2a149898 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/colored.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/colored.yml @@ -232,7 +232,7 @@ - state: equipped-HAND color: "#C09F72" - type: Fiber - fiberColor: fibers-brown + fiberColor: fibers-light-brown # Orange Gloves - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml index e26c2d19ca7..28ef9faf5ea 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml @@ -444,7 +444,7 @@ price: 0 - type: entity - parent: [ClothingHandsBase, BaseRestrictedContraband] + parent: [ClothingHandsBase, BaseSecurityContraband] id: ClothingHandsGlovesForensic name: forensic gloves description: Do not leave fibers or fingerprints. If you work without them, you're A TERRIBLE DETECTIVE. diff --git a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml index 425b419ec98..c075fb14098 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml @@ -181,8 +181,9 @@ - type: entity abstract: true - parent: ClothingHeadHardsuitBase - id: ClothingHeadHardsuitWithLightBase + # No parent since it isn't an item + # must parent both this and the desired helmet base when using + id: ClothingHeadSuitWithLightBase name: base hardsuit helmet with light categories: [ HideSpawnMenu ] components: diff --git a/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml index 84fc3bde702..e773bc46076 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml @@ -50,17 +50,39 @@ - type: Clothing sprite: Clothing/Head/Helmets/cosmonaut.rsi -#Paramedic Void Helmet +#Ancient Void Helmet - type: entity parent: ClothingHeadEVAHelmetBase + id: ClothingHeadHelmetAncient + name: NTSRA void helmet + description: An ancient space helmet, designed by the NTSRA branch of CentComm. + components: + - type: Sprite + sprite: Clothing/Head/Helmets/ancientvoidsuit.rsi + - type: Clothing + sprite: Clothing/Head/Helmets/ancientvoidsuit.rsi + +#Paramedic Void Helmet +- type: entity + parent: [ ClothingHeadSuitWithLightBase, ClothingHeadEVAHelmetBase ] #Despite acting like a hardsuit helmet, since it inherits from EVA Helmet, it goes here. id: ClothingHeadHelmetVoidParamed name: paramedic void helmet description: A void helmet made for paramedics. + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: ADT/Clothing/Head/Hardsuits/paramedic_hardsuithead.rsi # ADT tweak респрайт от празата + - type: HandheldLight + addPrefix: false + - type: ToggleableLightVisuals + spriteLayer: light + clothingVisuals: + head: + - state: equipped-head-light - type: Clothing - sprite: ADT/Clothing/Head/Hardsuits/paramedic_hardsuithead.rsi # ADT tweak респрайт от празата + clothingVisuals: + head: + - state: equipped-head - type: TemperatureProtection heatingCoefficient: 0.1 coolingCoefficient: 0.1 @@ -69,15 +91,7 @@ coefficients: Heat: 0.90 Radiation: 0.75 - -#Ancient Void Helmet -- type: entity - parent: ClothingHeadEVAHelmetBase - id: ClothingHeadHelmetAncient - name: NTSRA void helmet - description: An ancient space helmet, designed by the NTSRA branch of CentComm. - components: - - type: Sprite - sprite: Clothing/Head/Helmets/ancientvoidsuit.rsi - - type: Clothing - sprite: Clothing/Head/Helmets/ancientvoidsuit.rsi + - type: PointLight + radius: 5 + energy: 2 + color: "#00ffff" diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index d6558cbd018..9f585547fb9 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -25,7 +25,7 @@ #Atmospherics Hardsuit - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ClothingHeadHelmetHardsuitAtmos name: atmos hardsuit helmet description: A special hardsuit helmet designed for working in low-pressure, high thermal environments. @@ -67,7 +67,7 @@ #Engineering Hardsuit - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ClothingHeadHelmetHardsuitEngineering name: engineering hardsuit helmet description: An engineering hardsuit helmet designed for working in low-pressure, high radioactive environments. @@ -84,7 +84,7 @@ #Spationaut Hardsuit - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ClothingHeadHelmetHardsuitSpatio name: spationaut hardsuit helmet description: A sturdy helmet designed for complex industrial operations in space. @@ -120,7 +120,7 @@ #Salvage Hardsuit - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ClothingHeadHelmetHardsuitSalvage name: salvage hardsuit helmet description: A special helmet designed for work in a hazardous, low pressure environment. Has reinforced plating for wildlife encounters and dual floodlights. @@ -137,7 +137,7 @@ energy: 3 - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ClothingHeadHelmetHardsuitGoliath name: goliath hardsuit helmet description: A sturdy hardsuit helmet, infused with a goliath's hide and an eerie, unblinking eye cut from its mass. @@ -195,7 +195,7 @@ #Security Hardsuit - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ClothingHeadHelmetHardsuitSecurity name: security hardsuit helmet description: Armored hardsuit helmet for security needs. @@ -245,7 +245,7 @@ #Brigmedic Hardsuit - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ClothingHeadHelmetHardsuitBrigmedic name: brigmedic hardsuit helmet description: The lightweight helmet of the brigmedic hardsuit. Protects against viruses, and clowns. @@ -271,7 +271,7 @@ #Warden's Hardsuit - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ClothingHeadHelmetHardsuitWarden name: warden's hardsuit helmet description: A modified riot helmet. Oddly comfortable. @@ -321,7 +321,7 @@ #Captain's Hardsuit - type: entity - parent: ClothingHeadHardsuitBase + parent: ClothingHeadHardsuitBase # ADT-Fix id: ClothingHeadHelmetHardsuitCap name: captain's hardsuit helmet description: Special hardsuit helmet, made for the captain of the station. @@ -336,7 +336,7 @@ #Chief Engineer's Hardsuit - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ClothingHeadHelmetHardsuitEngineeringWhite name: chief engineer's hardsuit helmet description: Special hardsuit helmet, made for the chief engineer of the station. @@ -355,7 +355,7 @@ #Chief Medical Officer's Hardsuit - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ClothingHeadHelmetHardsuitMedical name: chief medical officer's hardsuit helmet description: Lightweight medical hardsuit helmet that doesn't restrict your head movements. @@ -372,7 +372,7 @@ #Research Director's Hardsuit - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ClothingHeadHelmetHardsuitRd name: experimental research hardsuit helmet description: Lightweight hardsuit helmet that doesn't restrict your head movements. @@ -389,7 +389,7 @@ #Head of Security's hardsuit - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ClothingHeadHelmetHardsuitSecurityRed name: head of security's hardsuit helmet description: Security hardsuit helmet with the latest top secret NT-HUD software. Belongs to the HoS. @@ -439,10 +439,11 @@ #Luxury Mining Hardsuit - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ClothingHeadHelmetHardsuitLuxury #DO NOT MAP - https://github.com/space-wizards/space-station-14/pull/19738#issuecomment-1703486738 name: luxury mining hardsuit helmet description: A refurbished mining hardsuit helmet, fitted with satin cushioning and an extra (non-functioning) antenna, because you're that extra. + categories: [ DoNotMap ] components: - type: Sprite sprite: Clothing/Head/Hardsuits/luxury.rsi @@ -458,7 +459,7 @@ #ANTAG HARDSUITS #Blood-red Hardsuit - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ClothingHeadHelmetHardsuitSyndie name: blood-red hardsuit helmet description: A heavily armored helmet designed for work in special operations. Property of Gorlex Marauders. @@ -482,7 +483,7 @@ #Blood-red Medic Hardsuit - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ClothingHeadHelmetHardsuitSyndieMedic name: blood-red medic hardsuit helmet description: An advanced red hardsuit helmet specifically designed for field medic operations. @@ -506,7 +507,7 @@ #Syndicate Elite Hardsuit - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ClothingHeadHelmetHardsuitSyndieElite name: syndicate elite helmet description: An elite version of the blood-red hardsuit's helmet, with improved armor and fireproofing. Property of Gorlex Marauders. @@ -535,7 +536,7 @@ #Syndicate Commander Hardsuit - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ClothingHeadHelmetHardsuitSyndieCommander name: syndicate commander helmet description: A bulked up version of the blood-red hardsuit's helmet, purpose-built for the commander of a syndicate operative squad. Has significantly improved armor for those deadly front-lines firefights. @@ -559,7 +560,7 @@ #Cybersun Juggernaut Hardsuit - type: entity - parent: ClothingHeadHardsuitWithLightBase # Corvax-Resprite + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] # Corvax-Resprite id: ClothingHeadHelmetHardsuitCybersun name: cybersun juggernaut helmet description: Made of compressed red matter, this helmet was designed in the Tau chromosphere facility. @@ -583,7 +584,7 @@ #Wizard Hardsuit - type: entity - parent: ClothingHeadHardsuitWithLightBase + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ClothingHeadHelmetHardsuitWizard name: wizard hardsuit helmet description: A bizarre gem-encrusted helmet that radiates magical energies. @@ -824,7 +825,7 @@ #ADT ert's end #CBURN Hardsuit - type: entity - parent: [ BaseCentcommContraband, ClothingHeadHardsuitWithLightBase ] + parent: [ BaseCentcommContraband, ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] id: ClothingHeadHelmetCBURN name: CBURN exosuit helmet description: A pressure resistant and fireproof hood worn by special cleanup units. @@ -863,7 +864,7 @@ #Deathsquad Hardsuit - type: entity - parent: [ BaseCentcommContraband, ClothingHeadHardsuitWithLightBase ] # Corvax-Resprite + parent: [ BaseCentcommContraband, ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] # Corvax-Resprite id: ClothingHeadHelmetHardsuitDeathsquad name: deathsquad hardsuit helmet description: A robust helmet for special operations. @@ -893,7 +894,7 @@ #MISC. HARDSUITS #Clown Hardsuit - type: entity - parent: ClothingHeadHardsuitWithLightBase # ADT tweak + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] # ADT tweak id: ClothingHeadHelmetHardsuitClown name: clown hardsuit helmet description: A clown hardsuit helmet. @@ -910,7 +911,7 @@ #Mime Hardsuit - type: entity - parent: ClothingHeadHardsuitWithLightBase # ADT tweak + parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] # ADT tweak id: ClothingHeadHelmetHardsuitMime name: mime hardsuit helmet description: A mime hardsuit helmet. diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index 451a78005d6..e55f3483503 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -580,7 +580,7 @@ - type: entity abstract: true - parent: ClothingHeadBase + parent: [ ClothingHeadBase, BaseMagicalContraband ] id: ClothingHeadHatWizardBase components: - type: WizardClothes diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index 65ad2d523e8..91cf83d61b9 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -23,7 +23,7 @@ #Basic Helmet (Security Helmet) - type: entity - parent: [ClothingHeadHelmetBase, BaseRestrictedContraband] + parent: [ClothingHeadHelmetBase, BaseSecurityContraband] id: ClothingHeadHelmetBasic name: helmet description: Standard security gear. Protects the head from impacts. @@ -51,7 +51,7 @@ #SWAT Helmet - type: entity - parent: [ClothingHeadBase, BaseRestrictedContraband] + parent: [ClothingHeadBase, BaseSecurityContraband] id: ClothingHeadHelmetSwat name: SWAT helmet description: An extremely robust helmet, commonly used by paramilitary forces. This one has the Nanotrasen logo emblazoned on the top. @@ -87,7 +87,7 @@ #Light Riot Helmet - type: entity - parent: [ClothingHeadBase, BaseRestrictedContraband] + parent: [ClothingHeadBase, BaseSecurityContraband] id: ClothingHeadHelmetRiot name: light riot helmet description: It's a helmet specifically designed to protect against close range attacks. @@ -137,7 +137,7 @@ id: ClothingHeadHelmetJanitorBombSuit name: janitorial bombsuit helmet description: A heavy helmet designed to withstand explosions formed from reactions between chemicals. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite sprite: Clothing/Head/Helmets/janitor_bombsuit.rsi @@ -417,7 +417,7 @@ #Justice Helmet - type: entity - parent: [ ClothingHeadHelmetBase, BaseRestrictedContraband ] + parent: [ ClothingHeadHelmetBase, BaseSecurityContraband ] id: ClothingHeadHelmetJustice name: justice helm description: Advanced security gear. Protects the station from ne'er-do-wells. diff --git a/Resources/Prototypes/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/Entities/Clothing/Head/misc.yml index 3d3e46b0a1f..c7e13615a6e 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/misc.yml @@ -176,7 +176,7 @@ id: ClothingHeadHatCatEars name: cat ears description: "NYAH!" - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Tag tags: [] # ignore "WhitelistChameleon" tag @@ -191,6 +191,7 @@ parent: [ClothingHeadHatCatEars, BaseToggleClothing] id: ClothingHeadHatCatEarsValid suffix: Valid, DO NOT MAP + categories: [ DoNotMap ] components: - type: ToggleClothing action: ActionBecomeValid @@ -222,7 +223,7 @@ id: ClothingHeadHatDogEars name: doggy ears description: Only for good boys. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite sprite: Clothing/Head/Hats/dogears.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index 89232b90155..203bc9dbefe 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -23,7 +23,7 @@ hideOnToggle: true - type: entity - parent: [ClothingMaskGas, BaseRestrictedContraband] + parent: [ClothingMaskGas, BaseSecurityContraband] id: ClothingMaskGasSecurity name: security gas mask description: A standard issue Security gas mask. @@ -234,7 +234,7 @@ node: mask - type: entity - parent: [ClothingMaskClown, BaseRestrictedContraband] + parent: [ClothingMaskClown, BaseSecurityContraband] id: ClothingMaskClownSecurity name: security clown wig and mask description: A debatably oxymoronic but protective mask and wig. @@ -361,7 +361,7 @@ accent: StutteringAccent - type: entity - parent: [ ClothingMaskGas, BaseRestrictedContraband ] + parent: [ ClothingMaskGas, BaseSecurityContraband ] id: ClothingMaskGasSwat name: swat gas mask description: A elite issue Security gas mask. diff --git a/Resources/Prototypes/Entities/Clothing/Multiple/towel.yml b/Resources/Prototypes/Entities/Clothing/Multiple/towel.yml index 9b811a8a9d8..a6b14675efb 100644 --- a/Resources/Prototypes/Entities/Clothing/Multiple/towel.yml +++ b/Resources/Prototypes/Entities/Clothing/Multiple/towel.yml @@ -283,7 +283,7 @@ - state: equipped-BELT color: "#723A02" - type: Fiber - fiberColor: fibers-brown + fiberColor: fibers-light-brown - type: entity id: TowelColorLightBrown diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml index cc9bbd1ad39..b529d62fa4a 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml @@ -3,7 +3,7 @@ #Basic armor vest for inheritance - type: entity - parent: [ClothingOuterBaseMedium, AllowSuitStorageClothing, BaseRestrictedContraband, BadgeOnClothing] #ADT-Tweak + parent: [ClothingOuterBaseMedium, AllowSuitStorageClothing, BaseSecurityContraband, BadgeOnClothing] #ADT-Tweak id: ClothingOuterArmorBase name: armor vest abstract: true @@ -42,7 +42,7 @@ sprite: Clothing/OuterClothing/Armor/security_slim.rsi - type: entity - parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing, BaseRestrictedContraband] + parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing, BaseSecurityContraband] id: ClothingOuterArmorRiot name: riot suit description: A suit of semi-flexible polycarbonate body armor with heavy padding to protect against melee attacks. Perfect for fighting delinquents around the station. diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml index 2d254806955..adb03c1f6bd 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml @@ -339,7 +339,7 @@ sprite: Clothing/OuterClothing/Coats/pirate.rsi - type: entity - parent: [ClothingOuterArmorWarden, ClothingOuterStorageBase, BaseRestrictedContraband] + parent: [ClothingOuterArmorWarden, ClothingOuterStorageBase, BaseSecurityContraband] id: ClothingOuterCoatWarden name: warden's armored jacket description: A sturdy, utilitarian jacket designed to protect a warden from any brig-bound threats. diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml index 644e416d71b..5664c46dab5 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml @@ -242,7 +242,7 @@ #Security Hardsuit - type: entity - parent: [ClothingOuterHardsuitBase, BaseRestrictedContraband] + parent: [ClothingOuterHardsuitBase, BaseSecurityContraband] id: ClothingOuterHardsuitSecurity name: security hardsuit description: A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor. @@ -274,7 +274,7 @@ #Brigmedic Hardsuit ADT rework - type: entity - parent: [ClothingOuterHardsuitBase, BaseRestrictedContraband] + parent: [ClothingOuterHardsuitBase, BaseSecurityContraband] id: ClothingOuterHardsuitBrigmedic name: brigmedic hardsuit description: Special hardsuit of the guardian angel of the brig. It is the medical version of the security hardsuit. @@ -308,7 +308,7 @@ #Warden's Hardsuit - type: entity - parent: [ClothingOuterHardsuitBase, BaseRestrictedContraband] + parent: [ClothingOuterHardsuitBase, BaseSecurityContraband] id: ClothingOuterHardsuitWarden name: warden's hardsuit description: A specialized riot suit geared to combat low pressure environments. @@ -512,6 +512,7 @@ id: ClothingOuterHardsuitLuxury #DO NOT MAP - https://github.com/space-wizards/space-station-14/pull/19738#issuecomment-1703486738 name: luxury mining hardsuit description: A refurbished mining hardsuit, fashioned after the Quartermaster's colors. Graphene lining provides less protection, but is much easier to move. + categories: [ DoNotMap ] components: - type: Sprite sprite: Clothing/OuterClothing/Hardsuits/luxury.rsi @@ -724,7 +725,7 @@ #Wizard Hardsuit - type: entity - parent: ClothingOuterHardsuitBase + parent: [ ClothingOuterHardsuitBase, BaseMagicalContraband ] id: ClothingOuterHardsuitWizard name: wizard hardsuit description: A bizarre gem-encrusted suit that radiates magical energies. diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml index c8c83f9db80..41128530217 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml @@ -168,7 +168,7 @@ - type: entity abstract: true - parent: ClothingOuterBase + parent: [ ClothingOuterBase, BaseMagicalContraband ] id: ClothingOuterWizardBase components: - type: WizardClothes diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml index 181f6199c6a..413b98c3a1d 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml @@ -97,15 +97,17 @@ - type: HeldSpeedModifier #Paramedic Voidsuit -#Despite having resistances and looking like a hardsuit, this parents off the EVA suit so it goes here. - type: entity - parent: ClothingOuterEVASuitBase + parent: [ClothingOuterEVASuitBase, BaseMedicalContraband] #Despite "Voidsuits are light hardsuits", since it parents of EVA Suits, it goes with the other softsuits id: ClothingOuterHardsuitVoidParamed name: paramedic void suit description: A void suit made for paramedics. components: - type: Sprite sprite: ADT/Clothing/OuterClothing/Hardsuits/paramedic_hardsuit.rsi # ADT tweak респрайт от празата + layers: + - state: icon + - type: Appearance - type: Clothing sprite: ADT/Clothing/OuterClothing/Hardsuits/paramedic_hardsuit.rsi # ADT tweak респрайт от празата - type: PressureProtection @@ -129,7 +131,30 @@ stealGroup: ClothingOuterHardsuitVoidParamed - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetVoidParamed - slot: head + - type: ItemToggle + onUse: false + soundActivate: + path: /Audio/Items/flashlight_on.ogg + soundDeactivate: + path: /Audio/Items/flashlight_off.ogg + - type: ItemToggleActiveSound + activeSound: + path: /Audio/Effects/Vehicle/ambulancesiren.ogg #not the best sound, but after looking through all of current freesound regarding sirens and ambulance, this was the best compromise + params: + volume: -4 + - type: UseDelay + delay: 1.0 + - type: ToggleClothing + action: ActionToggleParamedicSiren + - type: ItemTogglePointLight + - type: PointLight + enabled: false + radius: 2 + energy: 2 + color: blue + mask: /Textures/Effects/LightMasks/double_cone.png + - type: RotatingLight + speed: 360 - type: ContainerContainer containers: toggleable-clothing: !type:ContainerSlot {} diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index 94fc7e72abd..4fd14d23f18 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -33,7 +33,7 @@ id: ClothingOuterSuitJanitorBomb name: janitorial bomb suit description: A heavy helmet designed to withstand explosions formed from reactions between chemicals. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite sprite: Clothing/OuterClothing/Suits/janitor_bombsuit.rsi @@ -289,6 +289,7 @@ parent: ClothingOuterSuitCarp id: ClothingOuterHardsuitCarp suffix: Hardsuit, DO NOT MAP + categories: [ DoNotMap ] components: - type: PressureProtection highPressureMultiplier: 0.6 diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml index d14031e6b3b..29cea8020ee 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml @@ -42,7 +42,7 @@ #Detective's vest - type: entity - parent: [ClothingOuterArmorBasic, BaseRestrictedContraband, BadgeOnClothing] #ADT-Tweak + parent: [ClothingOuterArmorBasic, BaseSecurityContraband, BadgeOnClothing] #ADT-Tweak id: ClothingOuterVestDetective name: detective's vest description: A hard-boiled private investigator's armored vest. diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml index 95b324f93ba..97202b14fbe 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml @@ -664,7 +664,7 @@ clothingPrototype: ClothingHeadHatHoodWinterSci - type: entity - parent: [ClothingOuterWinterCoatToggleable, BaseRestrictedContraband] + parent: [ClothingOuterWinterCoatToggleable, BaseSecurityContraband] id: ClothingOuterWinterSec name: security winter coat components: @@ -718,7 +718,7 @@ ################################################################ - type: entity - parent: [ClothingOuterArmorWarden, ClothingOuterWinterCoatToggleable, BaseRestrictedContraband] + parent: [ClothingOuterArmorWarden, ClothingOuterWinterCoatToggleable, BaseSecurityContraband] id: ClothingOuterWinterWarden name: warden's armored winter coat description: A sturdy, utilitarian winter coat designed to protect a warden from any brig-bound threats and hypothermic events. @@ -732,7 +732,7 @@ ################################################################ - type: entity - parent: [ClothingOuterWinterCoatToggleable, BaseRestrictedContraband] + parent: [ClothingOuterWinterCoatToggleable, BaseSecurityContraband] id: ClothingOuterWinterWardenUnarmored name: warden's winter coat description: A sturdy coat, a warm coat, but not an armored coat. diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml index 5babd375627..029ad3ee98d 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml @@ -11,7 +11,7 @@ - type: Matchbox - type: entity - parent: [ClothingShoesMilitaryBase, BaseRestrictedContraband] + parent: [ClothingShoesMilitaryBase, BaseSecurityContraband] id: ClothingShoesBootsJack name: jackboots description: Nanotrasen-issue Security combat boots for combat scenarios or combat situations. All combat, all the time. @@ -50,7 +50,7 @@ sprite: Clothing/Shoes/Boots/performer.rsi - type: entity - parent: [ClothingShoesMilitaryBase, BaseRestrictedContraband] + parent: [ClothingShoesMilitaryBase, BaseSecurityContraband] id: ClothingShoesBootsCombat name: combat boots description: Robust combat boots for combat scenarios or combat situations. All combat, all the time. @@ -74,6 +74,11 @@ sprite: Clothing/Shoes/Boots/highheelboots.rsi - type: Clothing sprite: Clothing/Shoes/Boots/highheelboots.rsi + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepHighHeels + params: + variation: 0.09 - type: entity parent: [ ClothingShoesMilitaryBase ] @@ -148,7 +153,7 @@ sprite: Clothing/Shoes/Boots/winterbootssci.rsi - type: entity - parent: [ClothingShoesBaseWinterBoots, ClothingShoesMilitaryBase, BaseRestrictedContraband] + parent: [ClothingShoesBaseWinterBoots, ClothingShoesMilitaryBase, BaseSecurityContraband] id: ClothingShoesBootsWinterSec name: security winter boots components: diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml index f57822e2937..153a66bae0f 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml @@ -388,7 +388,7 @@ sprite: Clothing/Uniforms/Jumpskirt/roboticist.rsi - type: entity - parent: [ClothingUniformSkirtBase, BaseRestrictedContraband] + parent: [ClothingUniformSkirtBase, BaseSecurityContraband] id: ClothingUniformJumpskirtSec name: security jumpskirt description: A jumpskirt made of strong material, providing robust protection. @@ -414,7 +414,7 @@ - type: entity - parent: [ClothingUniformSkirtBase, BaseRestrictedContraband] + parent: [ClothingUniformSkirtBase, BaseSecurityContraband] id: ClothingUniformJumpskirtWarden name: warden's uniform description: A formal security suit for officers complete with Nanotrasen belt buckle. @@ -686,7 +686,7 @@ sprite: Clothing/Uniforms/Jumpskirt/senior_physician.rsi - type: entity - parent: [ClothingUniformSkirtBase, BaseRestrictedContraband] + parent: [ClothingUniformSkirtBase, BaseSecurityContraband] id: ClothingUniformJumpskirtSeniorOfficer name: senior officer jumpskirt description: A sign of skill and prestige within the security department. @@ -697,7 +697,7 @@ sprite: Clothing/Uniforms/Jumpskirt/senior_officer.rsi - type: entity - parent: [ClothingUniformSkirtBase, BaseRestrictedContraband] + parent: [ClothingUniformSkirtBase, BaseSecurityContraband] id: ClothingUniformJumpskirtSecGrey name: grey security jumpskirt description: A tactical relic of years past before Nanotrasen decided it was cheaper to dye the suits red instead of washing out the blood. diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index 8aea88078bb..a132e4744ce 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -596,7 +596,7 @@ sprite: Clothing/Uniforms/Jumpsuit/roboticist.rsi - type: entity - parent: [ClothingUniformBase, BaseRestrictedContraband] + parent: [ClothingUniformBase, BaseSecurityContraband] id: ClothingUniformJumpsuitSec name: security jumpsuit description: A jumpsuit made of strong material, providing robust protection. @@ -630,7 +630,7 @@ sprite: Clothing/Uniforms/Jumpsuit/security_blue.rsi - type: entity - parent: [ClothingUniformBase, BaseRestrictedContraband] + parent: [ClothingUniformBase, BaseSecurityContraband] id: ClothingUniformJumpsuitSecGrey name: grey security jumpsuit description: A tactical relic of years past before Nanotrasen decided it was cheaper to dye the suits red instead of washing out the blood. @@ -641,7 +641,7 @@ sprite: Clothing/Uniforms/Jumpsuit/security_grey.rsi - type: entity - parent: [ClothingUniformBase, BaseRestrictedContraband] + parent: [ClothingUniformBase, BaseSecurityContraband] id: ClothingUniformSecurityTrooper name: trooper uniform description: A formal uniform issued to the Nanotrasen Troopers, usually it comes with a car. @@ -652,7 +652,7 @@ sprite: Clothing/Uniforms/Jumpsuit/security_trooper.rsi - type: entity - parent: [ClothingUniformBase, BaseRestrictedContraband] + parent: [ClothingUniformBase, BaseSecurityContraband] id: ClothingUniformJumpsuitWarden name: warden's uniform description: A formal security suit for officers complete with Nanotrasen belt buckle. @@ -1200,7 +1200,7 @@ sprite: Clothing/Uniforms/Jumpsuit/senior_physician.rsi - type: entity - parent: [ClothingUniformBase, BaseRestrictedContraband] + parent: [ClothingUniformBase, BaseSecurityContraband] id: ClothingUniformJumpsuitSeniorOfficer name: senior officer jumpsuit description: A sign of skill and prestige within the security department. diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_single.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_single.yml index fa285676395..052886eadff 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_single.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_single.yml @@ -55,6 +55,7 @@ - FoodBakedCookieOatmeal - FoodBakedCookieRaisin - FoodBakedCookieSugar + - FoodBakedGrilledCheeseSandwich - FoodBakedNugget - FoodBakedPancake - FoodBakedPancakeBb diff --git a/Resources/Prototypes/Entities/Markers/rooms.yml b/Resources/Prototypes/Entities/Markers/rooms.yml index e4f341daf13..5e2761e0123 100644 --- a/Resources/Prototypes/Entities/Markers/rooms.yml +++ b/Resources/Prototypes/Entities/Markers/rooms.yml @@ -1,11 +1,9 @@ - type: entity id: BaseRoomMarker - name: Room marker + name: room spawner parent: MarkerBase - suffix: Weh components: - type: RoomFill - size: 5,5 - type: Sprite layers: - state: red diff --git a/Resources/Prototypes/Entities/Markers/tile.yml b/Resources/Prototypes/Entities/Markers/tile.yml new file mode 100644 index 00000000000..2ced9e9958d --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/tile.yml @@ -0,0 +1,37 @@ +- type: entity + id: BaseRoofMarker + abstract: true + placement: + mode: SnapgridCenter + components: + - type: Transform + anchored: true + - type: Sprite + drawdepth: Overdoors + sprite: Markers/cross.rsi + +- type: entity + id: RoofMarker + name: Roof + suffix: Enabled + parent: BaseRoofMarker + components: + - type: SetRoof + value: true + - type: Sprite + layers: + - state: green + shader: unshaded + +- type: entity + id: NoRoofMarker + name: Roof + suffix: Disabled + parent: BaseRoofMarker + components: + - type: SetRoof + value: false + - type: Sprite + layers: + - state: red + shader: unshaded diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 7be330eb983..646fcc25f2b 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -350,6 +350,8 @@ - type: MovementAlwaysTouching - type: Speech speechSounds: SyndieBorg + allowedEmotes: + - Laugh - type: Vocal sounds: Unsexed: UnisexSiliconSyndicate diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index de7a77b99b6..5d1886cc04f 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -239,6 +239,7 @@ - type: EggLayer eggSpawn: - id: FoodEgg + - type: ExamineableHunger - type: ReplacementAccent accent: chicken - type: SentienceTarget @@ -676,6 +677,7 @@ - type: EggLayer eggSpawn: - id: FoodEgg + - type: ExamineableHunger - type: ReplacementAccent accent: duck - type: SentienceTarget @@ -841,6 +843,7 @@ reagentId: Milk quantityPerUpdate: 25 growthDelay: 30 + - type: ExamineableHunger - type: Butcherable spawned: - id: FoodMeat @@ -997,6 +1000,7 @@ reagentId: MilkGoat quantityPerUpdate: 25 growthDelay: 20 + - type: ExamineableHunger - type: Wooly - type: Food solution: wool diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index bc5229a5bfa..74a86029169 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -67,7 +67,10 @@ - type: SolarControlConsole # look ma i AM the computer! - type: CommunicationsConsole title: comms-console-announcement-title-centcom - color: "#228b22" + color: "#1d8bad" + delay: 10 + initialDelay: 0 + global: true - type: RadarConsole followEntity: true - type: CargoOrderConsole diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml index f6071844bdb..cd259b7a30e 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml @@ -138,6 +138,9 @@ id: MobObserver components: - type: Spectral + - type: Tag + tags: + - AllowGhostShownByEvent - type: entity id: ActionGhostBoo diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index b87f3085609..5edc38b4732 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -97,6 +97,7 @@ interfaces: enum.SiliconLawsUiKey.Key: type: SiliconLawBoundUserInterface + - type: ShowJobIcons # Ai - type: entity @@ -407,8 +408,7 @@ - type: entity id: StationAiBrain parent: PositronicBrain - categories: [ HideSpawnMenu ] - suffix: DO NOT MAP + categories: [ HideSpawnMenu, DoNotMap ] components: - type: Sprite # Once it's in a core it's pretty much an abstract entity at that point. @@ -483,8 +483,7 @@ id: StationAiHolo name: AI eye description: The AI's viewer. - categories: [ HideSpawnMenu ] - suffix: DO NOT MAP + categories: [ HideSpawnMenu, DoNotMap ] components: - type: NoFTL - type: WarpPoint @@ -505,8 +504,7 @@ id: StationAiHoloLocal name: AI hologram description: A holographic representation of an AI. - categories: [ HideSpawnMenu ] - suffix: DO NOT MAP + categories: [ HideSpawnMenu, DoNotMap ] components: - type: Transform anchored: true diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml index 4f78c6c5009..ac0754204e6 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml @@ -852,3 +852,28 @@ Quantity: 2 - ReagentId: Vitamin Quantity: 1 + +- type: entity + name: grilled cheese sandwich + parent: FoodBakedBase + id: FoodBakedGrilledCheeseSandwich + description: Bread and cheese toasted with butter, perfect for a chilly day in space. + components: + - type: FlavorProfile + flavors: + - cheesy + - bread + - type: Sprite + sprite: Objects/Consumable/Food/Baked/misc.rsi + state: grilled-cheese + - type: SolutionContainerManager + solutions: + food: + maxVol: 21 + reagents: + - ReagentId: Nutriment + Quantity: 11 + - ReagentId: Butter + Quantity: 2 + - ReagentId: Vitamin + Quantity: 3 diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/cannons.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/cannons.yml index 4b7a0ee55a3..6c6190c01a5 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/cannons.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/cannons.yml @@ -6,6 +6,7 @@ name: LSE-400c "Svalinn machine gun" machine board description: A machine printed circuit board for an LSE-400c "Svalinn machine gun". suffix: DO NOT MAP, Machine Board + categories: [ DoNotMap ] components: - type: Sprite state: security @@ -23,6 +24,7 @@ name: LSE-1200c "Perforator" machine board description: A machine printed circuit board for an LSE-1200c "Perforator". suffix: DO NOT MAP, Machine Board + categories: [ DoNotMap ] components: - type: Sprite state: security @@ -40,6 +42,7 @@ name: EXP-320g "Friendship" machine board description: A machine printed circuit board for an EXP-320g "Friendship". suffix: DO NOT MAP, Machine Board + categories: [ DoNotMap ] components: - type: Sprite state: security @@ -57,6 +60,7 @@ name: EXP-2100g "Duster" machine board description: A machine printed circuit board for an EXP-2100g "Duster". suffix: DO NOT MAP, Machine Board + categories: [ DoNotMap ] components: - type: Sprite state: security @@ -75,6 +79,7 @@ name: PTK-800 "Matter Dematerializer" machine board description: A machine printed circuit board for an PTK-800 "Matter Dematerializer". suffix: DO NOT MAP, Machine Board + categories: [ DoNotMap ] components: - type: Sprite state: security diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml index be4a1054299..fe061e72d6b 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml @@ -298,6 +298,17 @@ - type: ComputerBoard prototype: WizardComputerComms +- type: entity + parent: [ BaseComputerCircuitboard, BaseCentcommContraband ] + id: CentcommCommsComputerCircuitboard + name: central command communications computer board + description: A computer printed circuit board for a central command communications console. + components: + - type: Sprite + state: cpu_centcomm + - type: ComputerBoard + prototype: CentcommComputerComms + - type: entity parent: BaseComputerCircuitboard id: RadarConsoleCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Devices/flatpack.yml b/Resources/Prototypes/Entities/Objects/Devices/flatpack.yml index 4facfd91b3a..fa23947c5ce 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/flatpack.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/flatpack.yml @@ -83,8 +83,8 @@ - state: singularity-generator - type: GuideHelp guides: - - SingularityEngine - - Power + - SingularityEngine + - Power - type: entity parent: BaseFlatpack diff --git a/Resources/Prototypes/Entities/Objects/Devices/radio.yml b/Resources/Prototypes/Entities/Objects/Devices/radio.yml index e750e4dbc1e..84e15878af2 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/radio.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/radio.yml @@ -28,7 +28,7 @@ - type: entity name: security radio description: A handy security radio. - parent: [ RadioHandheld, BaseRestrictedContraband ] + parent: [ RadioHandheld, BaseSecurityContraband ] id: RadioHandheldSecurity components: - type: RadioMicrophone diff --git a/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml b/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml index 7c69aa09013..3e05c0e8ff9 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml @@ -91,7 +91,7 @@ parent: BikeHorn id: GoldenBikeHorn name: golden honker - suffix: No mapping + categories: [ DoNotMap ] description: A happy honk prize, pray to the gods for your reward. components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml b/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml index 0bee05aa6ad..bbadf4f220c 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml @@ -66,13 +66,13 @@ suffix: Wizard components: - type: ImmovableRod - minSpeed: 35 + maxSpeed: 25 destroyTiles: false randomizeVelocity: false shouldGib: false damage: types: - Blunt: 200 + Blunt: 190 - type: MovementIgnoreGravity gravityState: true - type: InputMover diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index c92eb1b428f..7dc417e4d46 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -131,7 +131,7 @@ parent: PlushieGhost id: PlushieGhostRevenant name: revenant soft toy - suffix: DO NOT MAP + categories: [ DoNotMap ] description: So soft it almost makes you want to take a nap... components: - type: Item @@ -738,6 +738,22 @@ components: - type: Sprite state: plushie_slime + - type: EmitSoundOnUse + sound: + path: /Audio/Voice/Slime/slime_squish.ogg + - type: EmitSoundOnLand + sound: + path: /Audio/Voice/Slime/slime_squish.ogg + - type: EmitSoundOnActivate + sound: + path: /Audio/Voice/Slime/slime_squish.ogg + - type: EmitSoundOnTrigger + sound: + path: /Audio/Voice/Slime/slime_squish.ogg + - type: MeleeWeapon + wideAnimationRotation: 180 + soundHit: + path: /Audio/Voice/Slime/slime_squish.ogg - type: entity parent: BasePlushie @@ -1329,7 +1345,7 @@ volume: -10 - type: entity - parent: BaseItem + parent: [ BaseItem, BaseMagicalContraband ] id: PonderingOrb name: pondering orb description: Ponderous, man... Really ponderous. diff --git a/Resources/Prototypes/Entities/Objects/Magic/books.yml b/Resources/Prototypes/Entities/Objects/Magic/books.yml index d000f784290..db604f92d39 100644 --- a/Resources/Prototypes/Entities/Objects/Magic/books.yml +++ b/Resources/Prototypes/Entities/Objects/Magic/books.yml @@ -1,7 +1,7 @@ - type: entity id: BaseSpellbook name: spellbook - parent: BaseItem + parent: [ BaseItem, BaseMagicalContraband ] abstract: true components: - type: Sprite @@ -25,7 +25,7 @@ id: WizardsGrimoire name: wizards grimoire suffix: Wizard - parent: [ BaseItem, StorePresetSpellbook ] + parent: [ BaseItem, StorePresetSpellbook, BaseMagicalContraband ] components: - type: Sprite sprite: Objects/Misc/books.rsi diff --git a/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml b/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml index 1505a7aaac7..dbe5a6e6437 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml @@ -134,7 +134,7 @@ - type: entity name: interrogator lamp id: LampInterrogator - parent: BaseLamp + parent: [ BaseLamp, BaseSecurityContraband ] description: Ultra-bright lamp for the bad cop. components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index 3e3cd665c6e..a9d0023d857 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -461,7 +461,7 @@ id: BoxFolderCentCom name: CentComm folder parent: BoxFolderBase - suffix: DO NOT MAP + categories: [ DoNotMap ] description: CentComm's miserable little pile of secrets! components: - type: Sprite @@ -623,7 +623,7 @@ id: TraitorCodePaper name: syndicate codeword description: A leaked codeword to possibly get in touch with the Syndicate. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: TraitorCodePaper diff --git a/Resources/Prototypes/Entities/Objects/Misc/rubber_stamp.yml b/Resources/Prototypes/Entities/Objects/Misc/rubber_stamp.yml index 85d43263373..29e00989a18 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/rubber_stamp.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/rubber_stamp.yml @@ -41,7 +41,7 @@ name: captain's rubber stamp parent: [RubberStampBase, BaseCommandContraband] id: RubberStampCaptain - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-captain @@ -54,7 +54,7 @@ name: CentComm rubber stamp parent: RubberStampBase id: RubberStampCentcom - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-centcom @@ -67,7 +67,7 @@ name: chaplain's rubber stamp parent: RubberStampBase id: RubberStampChaplain - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-chaplain @@ -80,7 +80,7 @@ name: lawyer's rubber stamp parent: RubberStampBase id: RubberStampLawyer - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-lawyer @@ -93,7 +93,7 @@ name: clown's rubber stamp parent: RubberStampBase id: RubberStampClown - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-clown @@ -109,7 +109,7 @@ name: chief engineer's rubber stamp parent: [RubberStampBase, BaseCommandContraband] id: RubberStampCE - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-ce @@ -122,7 +122,7 @@ name: chief medical officer's rubber stamp parent: [RubberStampBase, BaseCommandContraband] id: RubberStampCMO - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-cmo @@ -135,7 +135,7 @@ name: head of personnel's rubber stamp parent: [RubberStampBase, BaseCommandContraband] id: RubberStampHop - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-hop @@ -148,7 +148,7 @@ name: head of security's rubber stamp parent: [RubberStampBase, BaseCommandContraband] id: RubberStampHos - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-hos @@ -161,7 +161,7 @@ name: mime's rubber stamp parent: RubberStampBase id: RubberStampMime - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-mime @@ -175,7 +175,7 @@ name: quartermaster's rubber stamp parent: [RubberStampBase, BaseCommandContraband] id: RubberStampQm - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-qm @@ -188,7 +188,7 @@ name: research director's rubber stamp parent: [RubberStampBase, BaseCommandContraband] id: RubberStampRd - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-rd @@ -213,7 +213,7 @@ name: syndicate rubber stamp parent: [RubberStampBase, BaseSyndicateContraband] id: RubberStampSyndicate - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-syndicate @@ -224,9 +224,9 @@ - type: entity name: warden's rubber stamp - parent: [RubberStampBase, BaseRestrictedContraband] + parent: [RubberStampBase, BaseSecurityContraband] id: RubberStampWarden - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-warden @@ -261,9 +261,9 @@ - type: entity name: detective's rubber stamp - parent: [RubberStampBase, BaseRestrictedContraband] + parent: [RubberStampBase, BaseSecurityContraband] id: RubberStampDetective - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Stamp stampedName: stamp-component-stamped-name-detective @@ -289,12 +289,12 @@ name: psychologist's rubber stamp parent: RubberStampBase id: RubberStampPsychologist - suffix: DO NOT MAP + categories: [ DoNotMap ] description: A rubber stamp for stamping important documents. Prescribe those treatments! components: - type: Stamp - stampedName: stamp-component-stamped-name-psychologist + stampedName: stamp-component-stamped-name-psychologist stampedColor: "#5B97BC" stampState: "paper_stamp-psychologist" - type: Sprite - state: stamp-psychologist \ No newline at end of file + state: stamp-psychologist diff --git a/Resources/Prototypes/Entities/Objects/Shields/shields.yml b/Resources/Prototypes/Entities/Objects/Shields/shields.yml index 401ddd2dd83..765a045a4a7 100644 --- a/Resources/Prototypes/Entities/Objects/Shields/shields.yml +++ b/Resources/Prototypes/Entities/Objects/Shields/shields.yml @@ -64,7 +64,7 @@ - type: entity name: riot shield - parent: [ BaseShield, BaseRestrictedContraband ] + parent: [ BaseShield, BaseSecurityContraband ] id: RiotShield description: A large tower shield. Good for controlling crowds. components: @@ -89,7 +89,7 @@ - type: entity name: laser shield - parent: [ BaseShield, BaseRestrictedContraband ] + parent: [ BaseShield, BaseSecurityContraband ] id: RiotLaserShield description: A shield built for withstanding lasers, but not much else. components: @@ -115,7 +115,7 @@ - type: entity name: ballistic shield - parent: [ BaseShield, BaseRestrictedContraband ] + parent: [ BaseShield, BaseSecurityContraband ] id: RiotBulletShield description: A shield built for protecting against ballistics, but not much else. components: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml index d7a362d7253..fc252fd9f5d 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml @@ -1,6 +1,6 @@ - type: entity name: handheld crew monitor - suffix: DO NOT MAP + categories: [ DoNotMap ] parent: [ BaseHandheldComputer, BaseGrandTheftContraband ] # CMO-only bud, don't add more. id: HandheldCrewMonitor diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml index 96b3eed8c7f..12ec76df7ee 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml @@ -325,7 +325,7 @@ id: HealingToolbox name: healing toolbox description: A powerful toolbox imbued with robust energy. It can heal your wounds and fill you with murderous intent. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite sprite: Objects/Specific/Medical/healing_toolbox.rsi diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml index 38d6a8dc867..8a1b31f9cbd 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml @@ -602,3 +602,33 @@ - id: Hypopen sound: path: /Audio/Effects/unwrap.ogg + +- type: entity + name: weh auto-injector + parent: ChemicalMedipen + id: WehMedipen + description: A rapid dose of Weh. Contains juice that makes you Weh. + components: + - type: Sprite + sprite: Objects/Specific/Medical/medipen.rsi + layers: + - state: medipen + map: [ "enum.SolutionContainerLayers.Fill" ] + - type: SolutionContainerVisuals + maxFillLevels: 1 + changeColor: false + emptySpriteName: medipen_empty + - type: SolutionContainerManager + solutions: + pen: + maxVol: 60 + reagents: + - ReagentId: JuiceThatMakesYouWeh + Quantity: 60 + - type: Hypospray + solutionName: pen + transferAmount: 1 + onlyAffectsMobs: false + injectOnly: true + - type: Tag + tags: [] diff --git a/Resources/Prototypes/Entities/Objects/Specific/Research/disk.yml b/Resources/Prototypes/Entities/Objects/Specific/Research/disk.yml index 0cb605cee64..dd556d75f2b 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Research/disk.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Research/disk.yml @@ -35,6 +35,7 @@ id: ResearchDiskDebug name: research point disk suffix: DEBUG, DO NOT MAP + categories: [ DoNotMap ] description: A disk for the R&D server containing all the points you could ever need. components: - type: ResearchDisk diff --git a/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml b/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml index bf8d27e17e6..c5b99402f9d 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml @@ -101,6 +101,8 @@ - ChiefEngineer - ChiefMedicalOfficer - Command + - Cryogenics + - EmergencyShuttleRepealAll - Engineering - External - HeadOfPersonnel diff --git a/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml b/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml index 98123b3e0c4..1a08f613bb5 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml @@ -76,7 +76,7 @@ - type: entity name: seclite - parent: [FlashlightLantern, BaseRestrictedContraband] + parent: [FlashlightLantern, BaseSecurityContraband] id: FlashlightSeclite description: A robust flashlight used by security. components: diff --git a/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml b/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml index daaa52cf459..52532e5927c 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml @@ -220,7 +220,7 @@ #Empty security - type: entity id: JetpackSecurity - parent: [BaseJetpack, BaseRestrictedContraband] + parent: [BaseJetpack, BaseSecurityContraband] name: security jetpack suffix: Empty components: diff --git a/Resources/Prototypes/Entities/Objects/Tools/welders.yml b/Resources/Prototypes/Entities/Objects/Tools/welders.yml index 197dca00ff8..43c1019dd6c 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/welders.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/welders.yml @@ -171,6 +171,8 @@ reagents: - ReagentId: WeldingFuel Quantity: 1 + - type: RequiresEyeProtection + statusEffectTime: 5 # less harmful; sunglasses can block it - type: entity name: emergency welding tool diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/caseless_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/caseless_rifle.yml index 21edce22222..649c0d45422 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/caseless_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/caseless_rifle.yml @@ -1,7 +1,7 @@ - type: entity id: BaseCartridgeCaselessRifle name: cartridge (.25 rifle) - parent: [ BaseCartridge, BaseRestrictedContraband ] + parent: [ BaseCartridge, BaseSecurityContraband ] abstract: true components: - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/heavy_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/heavy_rifle.yml index 719bae8ab47..2054fa78849 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/heavy_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/heavy_rifle.yml @@ -1,7 +1,7 @@ - type: entity id: BaseCartridgeHeavyRifle name: cartridge (.20 rifle) - parent: [ BaseCartridge, BaseRestrictedContraband ] + parent: [ BaseCartridge, BaseSecurityContraband ] abstract: true components: - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/light_rifle.yml index 4cf3c759bbe..cedb5e27801 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/light_rifle.yml @@ -1,7 +1,7 @@ - type: entity id: BaseCartridgeLightRifle name: cartridge (.30 rifle) - parent: [ BaseCartridge, BaseRestrictedContraband ] + parent: [ BaseCartridge, BaseSecurityContraband ] abstract: true components: - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml index 3367fa45a11..383d2adac7b 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml @@ -1,7 +1,7 @@ - type: entity id: BaseCartridgeMagnum name: cartridge (.45 magnum) - parent: [ BaseCartridge, BaseRestrictedContraband ] + parent: [ BaseCartridge, BaseSecurityContraband ] abstract: true components: - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/pistol.yml index 3635b00f366..bdf61c85e94 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/pistol.yml @@ -1,7 +1,7 @@ - type: entity id: BaseCartridgePistol name: cartridge (.35 auto) - parent: [ BaseCartridge, BaseRestrictedContraband ] + parent: [ BaseCartridge, BaseSecurityContraband ] abstract: true components: - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/rifle.yml index 30976744e01..7e29dbe995a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/rifle.yml @@ -1,7 +1,7 @@ - type: entity id: BaseCartridgeRifle name: cartridge (.20 rifle) - parent: [ BaseCartridge, BaseRestrictedContraband ] + parent: [ BaseCartridge, BaseSecurityContraband ] abstract: true components: - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml index a2b9fb27373..fd6f2b8c3cb 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml @@ -1,7 +1,7 @@ - type: entity id: BaseShellShotgun name: shell (.50) - parent: [ BaseCartridge, BaseRestrictedContraband ] + parent: [ BaseCartridge, BaseSecurityContraband ] abstract: true components: - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/caseless_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/caseless_rifle.yml index 5aa1f285c82..7361bc09c72 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/caseless_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/caseless_rifle.yml @@ -1,7 +1,7 @@ - type: entity id: BaseMagazineCaselessRifle name: "magazine (.25 caseless)" - parent: [ BaseItem, BaseRestrictedContraband ] + parent: [ BaseItem, BaseSecurityContraband ] abstract: true components: - type: Tag @@ -91,6 +91,10 @@ capacity: 99 - type: Sprite sprite: Objects/Weapons/Guns/Ammunition/Magazine/CaselessRifle/10x24.rsi + - type: MagazineVisuals + magState: mag + steps: 8 + zeroVisible: false - type: entity id: MagazinePistolCaselessRifle diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/grenade.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/grenade.yml index 389a4033cba..c6f98a870ac 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/grenade.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/grenade.yml @@ -1,7 +1,7 @@ - type: entity id: BaseMagazineGrenade name: grenade cartridge - parent: [ BaseItem, BaseRestrictedContraband ] + parent: [ BaseItem, BaseSecurityContraband ] abstract: true components: - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/heavy_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/heavy_rifle.yml index ba5094255c6..5aa704231dd 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/heavy_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/heavy_rifle.yml @@ -1,7 +1,7 @@ - type: entity id: BaseMagazineHeavyRifle name: "magazine (.20 rifle)" - parent: [ BaseItem, BaseRestrictedContraband ] + parent: [ BaseItem, BaseSecurityContraband ] abstract: true components: - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/light_rifle.yml index d9d603f175f..ab45d91371d 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/light_rifle.yml @@ -2,7 +2,7 @@ - type: entity id: BaseMagazineLightRifle name: "magazine (.30 rifle)" - parent: [ BaseItem, BaseRestrictedContraband ] + parent: [ BaseItem, BaseSecurityContraband ] abstract: true components: - type: Tag @@ -80,10 +80,8 @@ layers: - state: base map: ["enum.GunVisualLayers.Base"] - # ADT fix start - state: mag-1 map: ["enum.GunVisualLayers.Mag"] - # ADT fix end - type: entity id: MagazineLightRiflePractice @@ -150,6 +148,6 @@ sprite: Objects/Weapons/Guns/Ammunition/Magazine/LightRifle/pk_box.rsi - type: MagazineVisuals magState: mag - steps: 7 + steps: 8 zeroVisible: false - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum.yml index ba618e8fad3..7134fb844f4 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum.yml @@ -1,7 +1,7 @@ - type: entity id: BaseMagazineMagnum name: pistol magazine (.45 magnum) - parent: [ BaseMagazinePistol, BaseRestrictedContraband ] + parent: [ BaseMagazinePistol, BaseSecurityContraband ] abstract: true components: - type: Tag @@ -74,10 +74,8 @@ layers: - state: base map: ["enum.GunVisualLayers.Base"] - # ADT fix start - state: mag-1 map: ["enum.GunVisualLayers.Mag"] - # ADT fix end - type: entity id: MagazineMagnum @@ -148,10 +146,8 @@ layers: - state: base map: ["enum.GunVisualLayers.Base"] - # ADT fix start - state: mag-1 map: ["enum.GunVisualLayers.Mag"] - # ADT fix end - type: entity id: MagazineMagnumSubMachineGun diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml index 1a40bbcbbd9..af12f60c098 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml @@ -1,7 +1,7 @@ - type: entity id: BaseMagazinePistol name: pistol magazine (.35 auto) - parent: [ BaseItem, BaseRestrictedContraband ] + parent: [ BaseItem, BaseSecurityContraband ] abstract: true components: - type: Tag @@ -67,7 +67,7 @@ - type: entity id: BaseMagazinePistolSubMachineGun # Yeah it's weird but it's pistol caliber name: SMG magazine (.35 auto) - parent: [ BaseItem, BaseRestrictedContraband ] + parent: [ BaseItem, BaseSecurityContraband ] abstract: true components: - type: Tag @@ -100,7 +100,7 @@ - type: entity id: MagazinePistolSubMachineGunTopMounted name: WT550 magazine (.35 auto top-mounted) - parent: [ BaseItem, BaseRestrictedContraband ] + parent: [ BaseItem, BaseSecurityContraband ] components: - type: Tag tags: @@ -162,10 +162,9 @@ layers: - state: base map: ["enum.GunVisualLayers.Base"] - # ADT fix start - state: mag-1 map: ["enum.GunVisualLayers.Mag"] - # ADT fix end + - type: entity id: MagazinePistolIncendiary @@ -215,10 +214,8 @@ layers: - state: base map: ["enum.GunVisualLayers.Base"] - # ADT fix start - state: mag-1 map: ["enum.GunVisualLayers.Mag"] - # ADT fix end - type: entity id: MagazinePistolHighCapacity @@ -280,10 +277,8 @@ layers: - state: base map: ["enum.GunVisualLayers.Base"] - # ADT fix start - state: mag-1 map: ["enum.GunVisualLayers.Mag"] - # ADT fix end - type: entity id: MagazinePistolSubMachineGunPractice diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/rifle.yml index c4d22f4e707..d7a35711770 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/rifle.yml @@ -2,7 +2,7 @@ - type: entity id: BaseMagazineRifle name: "magazine (.20 rifle)" - parent: [ BaseItem, BaseRestrictedContraband ] + parent: [ BaseItem, BaseSecurityContraband ] abstract: true components: - type: Tag @@ -59,10 +59,8 @@ layers: - state: base map: ["enum.GunVisualLayers.Base"] - # ADT fix start - state: mag-1 map: ["enum.GunVisualLayers.Mag"] - # ADT fix end - type: entity id: MagazineRifleIncendiary diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/shotgun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/shotgun.yml index ad661c906b7..f2fdff869a5 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/shotgun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/shotgun.yml @@ -1,7 +1,7 @@ - type: entity id: BaseMagazineShotgun name: ammo drum (.50 shells) - parent: [ BaseItem, BaseRestrictedContraband ] + parent: [ BaseItem, BaseSecurityContraband ] abstract: true components: - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/magnum.yml index ae6bf0cebfe..3044b1f9ff8 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/magnum.yml @@ -1,7 +1,7 @@ - type: entity id: BaseSpeedLoaderMagnum name: "speed loader (.45 magnum)" - parent: [ BaseItem, BaseRestrictedContraband ] + parent: [ BaseItem, BaseSecurityContraband ] abstract: true components: - type: Tag @@ -51,6 +51,11 @@ layers: - state: base map: [ "enum.GunVisualLayers.Base" ] + # TODO: This is actually a issue with all the speed loaders: + # You can mix different ammo types, but it will always + # use the one it was printed for. + - state: base-6 + map: [ "enum.GunVisualLayers.Mag" ] - type: entity id: SpeedLoaderMagnumIncendiary diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/pistol.yml index 8f3ec37753a..512eb886571 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/pistol.yml @@ -1,7 +1,7 @@ - type: entity id: BaseSpeedLoaderPistol name: "speed loader (.35 auto)" - parent: [ BaseItem, BaseRestrictedContraband ] + parent: [ BaseItem, BaseSecurityContraband ] abstract: true components: - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/rifle_light.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/rifle_light.yml index 71b1119267d..191f0ae22cd 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/rifle_light.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/rifle_light.yml @@ -1,7 +1,7 @@ - type: entity id: SpeedLoaderLightRifle name: "speed loader (.30 rifle)" - parent: [ BaseItem, BaseRestrictedContraband ] + parent: [ BaseItem, BaseSecurityContraband ] components: - type: Tag tags: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_staff.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_staff.yml index 9cab4cac25a..0ce441d2912 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_staff.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_staff.yml @@ -1,7 +1,7 @@ - type: entity id: WeaponStaffBase abstract: true - parent: BaseItem + parent: [ BaseItem, BaseMagicalContraband ] components: - type: Sprite sprite: Objects/Weapons/Guns/Basic/staves.rsi diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_wand.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_wand.yml index c4a937ee2cd..555a760c909 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_wand.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_wand.yml @@ -1,7 +1,7 @@ - type: entity id: WeaponWandBase abstract: true - parent: BaseItem + parent: [ BaseItem, BaseMagicalContraband ] components: - type: Sprite sprite: Objects/Weapons/Guns/Basic/wands.rsi diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/spraynozzle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/spraynozzle.yml index f2e93a607ec..616a799affe 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/spraynozzle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/spraynozzle.yml @@ -1,9 +1,12 @@ -- type: entity +- type: entity id: WeaponSprayNozzle parent: BaseItem name: spray nozzle description: A high-powered spray nozzle used in conjunction with a backpack-mounted water tank. components: + - type: Tag + tags: + - SprayNozzle - type: Sprite sprite: Objects/Weapons/Guns/Basic/spraynozzle.rsi state: icon diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/staves.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/staves.yml index d5a89862a47..5b798348967 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/staves.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/staves.yml @@ -1,4 +1,4 @@ -# To be implemented: see #9072 +# To be implemented: see #9072 - type: entity name: staff of healing diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index 0a4cf11b2a3..dcdf5b82ca9 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -23,11 +23,6 @@ - type: Battery maxCharge: 1000 startingCharge: 1000 - - type: MagazineVisuals - magState: mag - steps: 5 - zeroVisible: false - - type: Appearance - type: StaticPrice price: 500 @@ -104,7 +99,7 @@ - type: entity name: svalinn laser pistol - parent: [ BaseWeaponPowerCellSmall, BaseRestrictedContraband ] + parent: [ BaseWeaponPowerCellSmall, BaseSecurityContraband ] id: WeaponLaserSvalinn description: A cheap and widely used laser pistol. components: @@ -160,6 +155,11 @@ - state: mag-unshaded-4 map: ["enum.GunVisualLayers.MagUnshaded"] shader: unshaded + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: false + - type: Appearance - type: Clothing sprite: Objects/Weapons/Guns/Battery/makeshift.rsi - type: HitscanBatteryAmmoProvider @@ -212,6 +212,11 @@ - state: mag-unshaded-4 map: ["enum.GunVisualLayers.MagUnshaded"] shader: unshaded + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: false + - type: Appearance - type: Clothing sprite: Objects/Weapons/Guns/Battery/laser_gun.rsi - type: Gun @@ -227,7 +232,7 @@ - type: entity name: laser rifle - parent: [WeaponLaserCarbinePractice, BaseGunWieldable, BaseRestrictedContraband, ADTBaseAttachableHolder] # ADT TWEAK + parent: [WeaponLaserCarbinePractice, BaseGunWieldable, BaseSecurityContraband, ADTBaseAttachableHolder] # ADT TWEAK id: WeaponLaserCarbine description: Favoured by Nanotrasen Security for being cheap and easy to use. components: @@ -279,6 +284,11 @@ - state: mag-unshaded-4 map: ["enum.GunVisualLayers.MagUnshaded"] shader: unshaded + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: false + - type: Appearance - type: Clothing sprite: Objects/Weapons/Guns/Battery/pulse_pistol.rsi - type: Gun @@ -308,6 +318,11 @@ - state: mag-unshaded-4 map: ["enum.GunVisualLayers.MagUnshaded"] shader: unshaded + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: false + - type: Appearance - type: Clothing sprite: Objects/Weapons/Guns/Battery/pulse_carbine.rsi - type: Gun @@ -339,6 +354,11 @@ - state: mag-unshaded-4 map: ["enum.GunVisualLayers.MagUnshaded"] shader: unshaded + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: false + - type: Appearance - type: Clothing sprite: Objects/Weapons/Guns/Battery/pulse_rifle.rsi - type: Gun @@ -354,7 +374,7 @@ - type: entity name: laser cannon - parent: [BaseWeaponBattery, BaseGunWieldable, BaseRestrictedContraband] + parent: [BaseWeaponBattery, BaseGunWieldable, BaseSecurityContraband] id: WeaponLaserCannon description: A heavy duty, high powered laser weapon. components: @@ -366,6 +386,11 @@ - state: mag-unshaded-4 map: ["enum.GunVisualLayers.MagUnshaded"] shader: unshaded + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: false + - type: Appearance - type: Clothing sprite: Objects/Weapons/Guns/Battery/laser_cannon.rsi - type: Gun @@ -504,7 +529,7 @@ - type: entity name: disabler SMG - parent: [ BaseWeaponBattery, BaseRestrictedContraband ] + parent: [ BaseWeaponBattery, BaseSecurityContraband ] id: WeaponDisablerSMG description: Advanced weapon that exhausts organic targets, weakening them until they collapse. components: @@ -536,12 +561,13 @@ magState: mag steps: 5 zeroVisible: true + - type: Appearance - type: StaticPrice price: 260 - type: entity name: taser - parent: [ BaseWeaponBatterySmall, BaseRestrictedContraband ] + parent: [ BaseWeaponBatterySmall, BaseSecurityContraband ] id: WeaponTaser description: A low-capacity, energy-based stun gun used by security teams to subdue targets at range. components: @@ -621,7 +647,7 @@ - type: entity name: advanced laser pistol - parent: [ BaseWeaponBatterySmall, BaseRestrictedContraband] + parent: [ BaseWeaponBatterySmall, BaseSecurityContraband] id: WeaponAdvancedLaser description: An experimental high-energy laser pistol with a self-charging nuclear battery. components: @@ -740,11 +766,6 @@ - type: BatterySelfRecharger autoRecharge: true autoRechargeRate: 40 - - type: MagazineVisuals - magState: mag - steps: 5 - zeroVisible: true - - type: Appearance - type: StaticPrice price: 750 @@ -762,6 +783,11 @@ - state: mag-unshaded-4 map: ["enum.GunVisualLayers.MagUnshaded"] shader: unshaded + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: false + - type: Appearance - type: Clothing sprite: Objects/Weapons/Guns/Battery/energy_shotgun.rsi - type: Gun diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml index ebcba7d5e44..e1de308b123 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml @@ -31,7 +31,6 @@ sprite: Objects/Weapons/Guns/HMGs/minigun.rsi layers: - state: icon - map: ["enum.GunVisualLayers.Base"] - type: Item sprite: Objects/Weapons/Guns/HMGs/minigun.rsi - type: Gun @@ -41,11 +40,6 @@ - type: BallisticAmmoProvider proto: CartridgeMinigun capacity: 1000 - - type: MagazineVisuals - magState: mag - steps: 4 - zeroVisible: true - - type: Appearance - type: ContainerContainer containers: ballistic-ammo: !type:Container diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml index 62a0a278ad2..5ab2f863f1e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml @@ -117,7 +117,7 @@ path: /Audio/Weapons/Guns/MagIn/batrifle_magin.ogg - type: MagazineVisuals magState: mag - steps: 1 + steps: 2 zeroVisible: true - type: Appearance diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml index 396268bbba5..ce8bcfdc667 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml @@ -215,7 +215,7 @@ - type: entity name: mk 58 - parent: [BaseWeaponPistol, BaseRestrictedContraband, ADTBaseAttachableHolder] # adt tweak + parent: [BaseWeaponPistol, BaseSecurityContraband, ADTBaseAttachableHolder] # adt tweak id: WeaponPistolMk58 description: A cheap, ubiquitous sidearm, produced by a NanoTrasen subsidiary. Uses .35 auto ammo. components: @@ -258,7 +258,7 @@ - type: entity name: N1984 - parent: [BaseWeaponPistol, BaseRestrictedContraband] + parent: [BaseWeaponPistol, BaseSecurityContraband] id: WeaponPistolN1984 # the spaces in description are for formatting. description: The sidearm of any self respecting officer. Comes in .45 magnum, the lord's caliber. components: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml index fbd4fa2e045..732054b5aa2 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml @@ -81,7 +81,7 @@ - type: entity name: Inspector - parent: [BaseWeaponRevolver, BaseRestrictedContraband] + parent: [BaseWeaponRevolver, BaseSecurityContraband] id: WeaponRevolverInspector description: A detective's best friend. Uses .45 magnum ammo. components: @@ -125,6 +125,14 @@ soundGunshot: path: /Audio/Weapons/Guns/Gunshots/mateba.ogg +- type: entity + parent: WeaponRevolverMateba + id: WeaponRevolverMatebaAP # For deathsquad + suffix: armor-piercing + components: + - type: RevolverAmmoProvider + proto: CartridgeMagnumAP + - type: entity name: Python parent: [BaseWeaponRevolver, BaseSyndicateContraband] diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml index 40b4a16fd4a..85d937f23b7 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml @@ -62,7 +62,7 @@ - type: entity name: AKMS - parent: [BaseWeaponRifle, BaseRestrictedContraband, ADTBaseMagneticGun] # adt tweak + parent: [BaseWeaponRifle, BaseSecurityContraband, ADTBaseMagneticGun] # adt tweak id: WeaponRifleAk description: An iconic weapon of war. Uses .30 rifle ammo. components: @@ -183,7 +183,7 @@ - type: entity name: Lecter - parent: [BaseWeaponRifle, BaseRestrictedContraband, ADTBaseAttachableHolder] # ADT TWEAK + parent: [BaseWeaponRifle, BaseSecurityContraband, ADTBaseAttachableHolder] # ADT TWEAK id: WeaponRifleLecter description: A high end military grade assault rifle. Uses .20 rifle ammo. components: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml index 78420faa00b..f71d94c4c99 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml @@ -142,7 +142,7 @@ - type: entity name: Drozd - parent: [BaseWeaponSubMachineGun, BaseRestrictedContraband, ADTBaseAttachableHolder] # ADT TWEAK + parent: [BaseWeaponSubMachineGun, BaseSecurityContraband, ADTBaseAttachableHolder] # ADT TWEAK id: WeaponSubMachineGunDrozd description: An excellent fully automatic Heavy SMG. components: @@ -225,7 +225,7 @@ - type: entity name: WT550 - parent: [ BaseWeaponSubMachineGun, BaseRestrictedContraband, ADTBaseMagneticGun] # ADT TWEAK + parent: [ BaseWeaponSubMachineGun, BaseSecurityContraband, ADTBaseMagneticGun] # ADT TWEAK id: WeaponSubMachineGunWt550 description: An excellent SMG, produced by NanoTrasen's Small Arms Division. Uses .35 auto ammo. components: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml index da5d4a40f42..a42d04110eb 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml @@ -169,7 +169,7 @@ - type: entity name: Enforcer - parent: [BaseWeaponShotgun, BaseGunWieldable, BaseRestrictedContraband, ADTBaseAttachableHolder] # adt tweak + parent: [BaseWeaponShotgun, BaseGunWieldable, BaseSecurityContraband, ADTBaseAttachableHolder] # adt tweak id: WeaponShotgunEnforcer description: A premium semi-automatic shotgun, and the pride of all security forces. Uses .50 shotgun shells. components: # intend for Enforcer to have wider choke for semi-auto function @@ -227,7 +227,7 @@ - type: entity name: Kammerer - parent: [BaseWeaponShotgun, BaseGunWieldable, BaseRestrictedContraband, ADTBasePumpingGun, ADTBaseMagneticGun] # adt tweak + parent: [BaseWeaponShotgun, BaseGunWieldable, BaseSecurityContraband, ADTBasePumpingGun, ADTBaseMagneticGun] # adt tweak id: WeaponShotgunKammerer description: An old yet faithful design, and a favorite among irregular forces of many worlds. Uses .50 shotgun shells. components: # intend for Kammerer to have tighter choke for slower fire rate and/or manual cycling diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml index 551fedfd905..7aee3e5876b 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml @@ -63,7 +63,7 @@ parent: BaseBallBat id: WeaponMeleeKnockbackStick description: And then he spleefed all over. - suffix: Do not map + categories: [ DoNotMap ] components: - type: MeleeThrowOnHit - type: MeleeWeapon diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml index a55c9436951..40878024b1a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml @@ -89,7 +89,7 @@ - type: entity name: combat knife - parent: [BaseKnife, BaseRestrictedContraband, ADTUnderAttachmentBase] # ADT TWEAK + parent: [BaseKnife, BaseSecurityContraband, ADTUnderAttachmentBase] # ADT TWEAK id: CombatKnife description: A deadly knife intended for melee confrontations. components: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml index 672835b23e5..dfa24508b22 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml @@ -155,7 +155,7 @@ - type: Prying - type: entity - parent: [ BaseWeaponCrusher, BaseSecurityCargoContraband] + parent: [ BaseKnife, BaseWeaponCrusher, BaseSecurityCargoContraband] id: WeaponCrusherDagger name: crusher dagger description: A scaled down version of a proto-kinetic crusher. Uses kinetic energy to vibrate the blade at high speeds. @@ -170,9 +170,18 @@ damage: types: Slash: 15 - - type: Tag - tags: - - Knife + - type: EmbeddableProjectile + sound: /Audio/Weapons/star_hit.ogg + offset: -0.15,0.0 + - type: LandAtCursor + - type: DamageOtherOnHit + damage: + types: + Slash: 10 + - type: DisarmMalus + malus: 0.225 + - type: ThrowingAngle + angle: 225 # Like a crusher... but better - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/weapon_toolbox.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/weapon_toolbox.yml index 240a17a0a44..003967d33d3 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/weapon_toolbox.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/weapon_toolbox.yml @@ -3,7 +3,7 @@ id: WeaponMeleeToolboxRobust name: robust toolbox description: A tider's weapon. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite sprite: Objects/Tools/Toolboxes/toolbox_red.rsi diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/bola.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/bola.yml index d84952abaad..f6974d699a8 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/bola.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/bola.yml @@ -1,6 +1,6 @@ - type: entity name: bola - parent: [BaseItem, BaseRestrictedContraband] + parent: [BaseItem, BaseSecurityContraband] id: Bola description: Linked together with some spare cuffs and metal. components: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml index 769ee1fda89..e420c35fad4 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml @@ -60,7 +60,7 @@ - type: entity name: flashbang description: Eeeeeeeeeeeeeeeeeeeeee. - parent: [ GrenadeBase, BaseRestrictedContraband ] + parent: [ GrenadeBase, BaseSecurityContraband ] id: GrenadeFlashBang components: - type: Sprite @@ -163,13 +163,13 @@ - type: entity - name: supermatter grenade - description: Grenade that simulates delamination of the supermatter engine, pulling things in a heap and exploding after some time. - parent: [GrenadeBase, BaseSyndicateContraband] - id: SupermatterGrenade + parent: [ GrenadeBase, BaseSyndicateContraband ] + id: SingularityGrenade + name: singularity grenade + description: Grenade that simulates the power of a singularity, pulling things in a heap. components: - type: Sprite - sprite: Objects/Weapons/Grenades/supermattergrenade.rsi + sprite: Objects/Weapons/Grenades/singularitygrenade.rsi - type: OnUseTimerTrigger delay: 3 beepInterval: 0.46 @@ -182,11 +182,6 @@ path: /Audio/Effects/Grenades/Supermatter/smbeep.ogg params: volume: -5 - - type: Explosive - explosionType: Default - totalIntensity: 200 - intensitySlope: 30 - maxIntensity: 120 - type: SoundOnTrigger removeOnTrigger: true sound: @@ -204,10 +199,10 @@ sound: path: /Audio/Effects/Grenades/Supermatter/supermatter_loop.ogg - type: GravityWell - maxRange: 8 - baseRadialAcceleration: 145 - baseTangentialAcceleration: 5 - gravPulsePeriod: 0.01 + maxRange: 10 + baseRadialAcceleration: 5 + baseTangentialAcceleration: .5 + gravPulsePeriod: 0.03 - type: SingularityDistortion intensity: 150 falloffPower: 1.5 @@ -223,12 +218,12 @@ path: /Audio/Effects/Grenades/Supermatter/supermatter_end.ogg params: volume: 5 - - type: ExplodeOnTrigger + - type: DeleteOnTrigger - type: entity name: whitehole grenade description: Grenade that repulses everything around for some time. - parent: SupermatterGrenade + parent: SingularityGrenade id: WhiteholeGrenade components: - type: Sprite @@ -405,7 +400,7 @@ # Corvax-HiddenDesc-End - type: entity - parent: [ GrenadeBase, BaseRestrictedContraband ] + parent: [ GrenadeBase, BaseSecurityContraband ] id: SmokeGrenade name: smoke grenade description: A tactical grenade that releases a large, long-lasting cloud of smoke when used. diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/projectile_grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/projectile_grenades.yml index 07c2a7ad3cd..9f71158357f 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/projectile_grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/projectile_grenades.yml @@ -18,9 +18,16 @@ containers: cluster-payload: !type:Container - type: ProjectileGrenade + - type: AnimationPlayer + - type: GenericVisualizer + visuals: + enum.Trigger.TriggerVisuals.VisualState: + enum.ConstructionVisuals.Layer: + Primed: { state: primed } + Unprimed: { state: icon } - type: entity - parent: [ProjectileGrenadeBase, BaseRestrictedContraband] + parent: [ProjectileGrenadeBase, BaseSecurityContraband] id: GrenadeStinger name: stinger grenade description: Nothing to see here, please disperse. @@ -41,10 +48,6 @@ - type: SpawnOnTrigger proto: GrenadeFlashEffect - type: OnUseTimerTrigger - beepSound: - path: "/Audio/Effects/beep1.ogg" - params: - volume: 5 initialBeepDelay: 0 beepInterval: 2 delay: 3.5 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/scattering_grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/scattering_grenades.yml index f68498bb51b..38fde5c5404 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/scattering_grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/scattering_grenades.yml @@ -20,7 +20,7 @@ - type: ScatteringGrenade - type: entity - parent: [ScatteringGrenadeBase, BaseRestrictedContraband] + parent: [ScatteringGrenadeBase, BaseSecurityContraband] id: ClusterBang name: clusterbang description: Can be used only with flashbangs. Explodes several times. diff --git a/Resources/Prototypes/Entities/Objects/Weapons/security.yml b/Resources/Prototypes/Entities/Objects/Weapons/security.yml index 8b2f0f7120f..54c1c2ffdd8 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/security.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/security.yml @@ -1,6 +1,6 @@ - type: entity name: stun baton - parent: [BaseItem, BaseRestrictedContraband] + parent: [BaseItem, BaseSecurityContraband] id: Stunbaton description: A stun baton for incapacitating people with. Actively harming with this is considered bad tone. components: @@ -94,7 +94,7 @@ - type: entity name: truncheon - parent: [BaseItem, BaseRestrictedContraband] + parent: [BaseItem, BaseSecurityContraband] id: Truncheon description: A rigid, steel-studded baton, meant to harm. components: @@ -187,7 +187,7 @@ - type: entity name: portable flasher - parent: [BaseMachine, BaseRestrictedContraband] + parent: [BaseMachine, BaseSecurityContraband] id: PortableFlasher description: An ultrabright flashbulb with a proximity trigger, useful for making an area security-only. components: diff --git a/Resources/Prototypes/Entities/Objects/base_contraband.yml b/Resources/Prototypes/Entities/Objects/base_contraband.yml index 72178088077..ee0e2e8c710 100644 --- a/Resources/Prototypes/Entities/Objects/base_contraband.yml +++ b/Resources/Prototypes/Entities/Objects/base_contraband.yml @@ -1,4 +1,12 @@ -# non-stealth syndicate stuff +# any type of magical items used by wizards and similiar +- type: entity + id: BaseMagicalContraband + abstract: true + components: + - type: Contraband + severity: Magical + +# non-stealth syndicate stuff - type: entity id: BaseSyndicateContraband abstract: true @@ -22,14 +30,15 @@ - type: Contraband severity: Major -# minor contraband by default restricted to security only +# base department restricted contraband, this should only be used as a parent for other contraband prototypes, not the restricted items themselves. - type: entity id: BaseRestrictedContraband abstract: true components: - type: Contraband severity: Restricted - allowedDepartments: [ Security ] + allowedDepartments: [ ] + allowedJobs: [ ] # one department restricted contraband - type: entity diff --git a/Resources/Prototypes/Entities/Objects/base_item.yml b/Resources/Prototypes/Entities/Objects/base_item.yml index 61837aa1eb9..bb67d3f4cf7 100644 --- a/Resources/Prototypes/Entities/Objects/base_item.yml +++ b/Resources/Prototypes/Entities/Objects/base_item.yml @@ -5,6 +5,7 @@ components: - type: Item size: Small + - type: Animateable - type: Clickable - type: InteractionOutline - type: MovedByPressure diff --git a/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml b/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml index 86b17e2584c..27cb4d8b686 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml @@ -5,6 +5,7 @@ description: A square piece of metal standing on four metal legs. abstract: true components: + - type: Animateable - type: Damageable damageContainer: StructuralInorganic damageModifierSet: Metallic diff --git a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml index 4ad84cc087f..a36366a88fa 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml @@ -6,6 +6,7 @@ placement: mode: PlaceFree components: + - type: Animateable - type: Clickable - type: InteractionOutline - type: Physics diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml index d79348bfa61..7cccee81c0d 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml @@ -5,6 +5,7 @@ placement: mode: SnapgridCenter components: + - type: Animateable - type: MeleeSound soundGroups: Brute: diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index 8ff7a7d1c9c..5b5a203e9ce 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -755,6 +755,38 @@ energy: 1.6 color: "#F317F3" +- type: entity + parent: ComputerComms + id: CentcommComputerComms + name: central command communications computer + description: A computer used to make world wide announcements via keyboard. The superior cousin of the regular communications computer. + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + state: computer + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: comm_logs + - map: ["computerLayerKeys"] + state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open + - type: AccessReader + access: [[ "CentralCommand" ]] + - type: CommunicationsConsole + title: comms-console-announcement-title-centcom + color: "#1d8bad" + canShuttle: false + global: true + - type: Computer + board: CentcommCommsComputerCircuitboard + - type: PointLight + radius: 1.5 + energy: 1.6 + color: "#00FF00" + - type: entity parent: BaseComputerAiAccess id: ComputerSolarControl @@ -1231,6 +1263,7 @@ # Putting this as "DO NOT MAP" until the performance issues are fixed. # And it's more fleshed out. suffix: TESTING, DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite layers: diff --git a/Resources/Prototypes/Entities/Structures/Machines/base_structuremachines.yml b/Resources/Prototypes/Entities/Structures/Machines/base_structuremachines.yml index aab56b455aa..5a5d026f0e3 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/base_structuremachines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/base_structuremachines.yml @@ -3,6 +3,7 @@ parent: BaseStructure id: BaseMachine components: + - type: Animateable - type: InteractionOutline - type: Anchorable delay: 2 @@ -57,6 +58,7 @@ abstract: true id: ConstructibleMachine components: + - type: Animateable - type: Machine - type: ContainerContainer containers: diff --git a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml index c95609c55ab..de7cfe3e278 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml @@ -150,8 +150,7 @@ - type: entity id: HolopadHologram name: hologram - categories: [ HideSpawnMenu ] - suffix: DO NOT MAP + categories: [ HideSpawnMenu, DoNotMap ] components: - type: Transform anchored: true diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index afd3ec00e16..ea8bf08710a 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -138,7 +138,6 @@ - type: EmagLatheRecipes emagStaticPacks: - SecurityAmmoStatic - - SecurityWeaponsStatic - type: BlueprintReceiver whitelist: tags: @@ -633,6 +632,14 @@ staticPacks: - OreSmelting - RGlassSmelting + # ADT tweak start + - type: AutoMaterialInsert + tag: ADTOreBag + - type: MiningPoints + transferSound: + path: /Audio/Effects/Cargo/ping.ogg + - type: MiningPointsLathe + # ADT tweak end - type: entity parent: OreProcessor diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml index 0a36d91e38d..6e55bfec5e8 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml @@ -48,8 +48,8 @@ Level3: {state: particle3} - type: GuideHelp # why does this even have a guidebook link in the first place guides: - - SingularityTeslaEngine - - Power + - SingularityTeslaEngine + - Power - type: entity name: anti particles diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml index 550dddc8476..b3723252d38 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml @@ -204,8 +204,8 @@ node: ameShielding - type: GuideHelp guides: - - AME - - Power + - AME + - Power - type: Electrified onHandInteract: false onInteractUsing: false diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml index 40f16e5080b..a25930d37d2 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml @@ -109,8 +109,8 @@ path: /Audio/Ambience/Objects/vending_machine_hum.ogg - type: GuideHelp guides: - - TEG - - Power + - TEG + - Power - type: StealTarget stealGroup: Teg @@ -176,8 +176,8 @@ - type: Pullable - type: GuideHelp guides: - - TEG - - Power + - TEG + - Power # functionality - type: NodeContainer diff --git a/Resources/Prototypes/Entities/Structures/Shuttles/cannons.yml b/Resources/Prototypes/Entities/Structures/Shuttles/cannons.yml index 47ac2ae7c94..1926b3e8748 100644 --- a/Resources/Prototypes/Entities/Structures/Shuttles/cannons.yml +++ b/Resources/Prototypes/Entities/Structures/Shuttles/cannons.yml @@ -2,40 +2,22 @@ - type: entity id: ShuttleGunBase + parent: BaseStructure name: shittle gun abstract: true - placement: - mode: SnapgridCenter components: - type: Appearance - - type: Clickable - type: InteractionOutline - type: Anchorable - - type: Pullable - type: Rotatable - - type: Physics - bodyType: Static - type: ContainerContainer - type: Gun selectedMode: SemiAuto availableModes: - SemiAuto - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.45" - density: 450 - mask: - - MachineMask - layer: - - MachineLayer - type: Damageable damageContainer: StructuralInorganic damageModifierSet: Electronic - - type: Transform - anchored: true - type: DeviceNetwork deviceNetId: Wireless receiveFrequencyId: BasicDevice @@ -61,7 +43,7 @@ parent: [ ShuttleGunBase, ConstructibleMachine] name: LSE-400c "Svalinn machine gun" description: Basic stationary laser unit. Effective against live targets and electronics. Uses regular power cells to fire, and has an extremely high rate of fire. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite sprite: Objects/Weapons/Guns/Shuttles/laser.rsi @@ -115,7 +97,7 @@ parent: [ ShuttleGunBase, ConstructibleMachine] name: LSE-1200c "Perforator" description: Advanced stationary laser unit. Annihilates electronics and is extremely dangerous to health! Uses the power cage to fire. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite sprite: Objects/Weapons/Guns/Shuttles/laser.rsi @@ -171,7 +153,7 @@ parent: [ShuttleGunBase, ConstructibleMachine] name: EXP-320g "Friendship" description: A small stationary grenade launcher that holds 2 grenades. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite sprite: Objects/Weapons/Guns/Shuttles/launcher.rsi @@ -225,7 +207,7 @@ parent: [ShuttleGunBase, ConstructibleMachine] name: EXP-2100g "Duster" description: A powerful stationary grenade launcher. A cartridge is required for use. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite sprite: Objects/Weapons/Guns/Shuttles/launcher.rsi @@ -323,7 +305,7 @@ parent: [ ShuttleGunBase, ConstructibleMachine] name: PTK-800 "Matter Dematerializer" description: Salvage stationary mining turret. Gradually accumulates charges on its own, extremely effective for asteroid excavation. - suffix: DO NOT MAP + categories: [ DoNotMap ] components: - type: Sprite sprite: Objects/Weapons/Guns/Shuttles/kinetic.rsi diff --git a/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/freezer.yml b/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/freezer.yml new file mode 100644 index 00000000000..f3c75eb7375 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/freezer.yml @@ -0,0 +1,29 @@ +- type: entity + abstract: true + parent: AirSensorBase + id: AirSensorFreezerBase + suffix: Freezer Atmosphere + components: + - type: AtmosMonitor + temperatureThresholdId: freezerTemperature + +- type: entity + parent: [AirSensorFreezerBase, AirSensor] + id: AirSensorFreezer + +- type: entity + parent: [AirSensorFreezerBase, GasVentPump] + id: GasVentPumpFreezer + +- type: entity + parent: [AirSensorFreezerBase, GasVentScrubber] + id: GasVentScrubberFreezer + +# air alarm proto with auto: false to prevent the automatic switching of modes overriding the default values +- type: entity + parent: AirAlarm + id: AirAlarmFreezer + suffix: Freezer Atmosphere, auto mode disabled + components: + - type: AirAlarm + autoMode: false diff --git a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml index 5db26f482ff..35d02c97761 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml @@ -5,6 +5,7 @@ name: gas canister description: A canister that can contain any type of gas. It can be attached to connector ports using a wrench. components: + - type: Animateable - type: InteractionOutline - type: Transform noRot: true diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml index 4526f8ee78a..9d9cb759f43 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml @@ -5,6 +5,7 @@ description: A standard-issue Nanotrasen storage unit. abstract: true components: + - type: Animateable - type: ResistLocker - type: Transform noRot: true diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml index f089ede964f..3ecb13c285e 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml @@ -118,7 +118,9 @@ - type: entity id: ClosetLibrary parent: ClosetSteelBase - name: library closet + description: It's a storage unit for janitorial explosion-protective suits. + categories: [ DoNotMap ] + suffix: DO NOT MAP # ADT-Tweak components: - type: Appearance - type: EntityStorageVisuals diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml index 10a0d1ee6d3..10c858ca1c5 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml @@ -5,6 +5,7 @@ name: crate description: A large container for items. components: + - type: Animateable - type: Transform noRot: true - type: Icon diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml index 3ed0ee53489..74b3fca79f9 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml @@ -12,6 +12,8 @@ - Energy reflectProb: 0.2 spread: 90 + - type: RadiationBlockingContainer + resistance: 2.5 - type: entity parent: CrateBaseWeldable @@ -176,7 +178,7 @@ # Secure Crates - type: entity - parent: [ CrateBaseSecure, BaseRestrictedContraband ] + parent: [ CrateBaseSecure, BaseSecurityContraband ] id: CrateSecgear name: secgear crate components: @@ -292,7 +294,7 @@ access: [["Armory"]] - type: entity - parent: [ CrateBaseSecure, BaseRestrictedContraband ] + parent: [ CrateBaseSecure, BaseSecurityContraband ] suffix: Armory, Secure id: CrateContrabandStorageSecure name: contraband storage crate diff --git a/Resources/Prototypes/Entities/Structures/Storage/Tanks/base_structuretanks.yml b/Resources/Prototypes/Entities/Structures/Storage/Tanks/base_structuretanks.yml index 7b56e6d36b5..dff863f8fa8 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Tanks/base_structuretanks.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Tanks/base_structuretanks.yml @@ -1,10 +1,11 @@ -- type: entity +- type: entity id: StorageTank parent: BaseStructureDynamic name: storage tank description: A liquids storage tank. abstract: true components: + - type: Animateable - type: Sprite noRot: true - type: InteractionOutline @@ -82,4 +83,4 @@ mask: - MachineMask layer: - - WallLayer \ No newline at end of file + - WallLayer diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml index bf0624d4b18..7a343ab6ad7 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml @@ -80,6 +80,9 @@ - type: Construction graph: Intercom node: intercom + containers: + - board + - key_slots - type: Damageable damageContainer: StructuralInorganic damageModifierSet: StructuralMetallic diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index d0ff7d8611f..8b7fbd5914c 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -543,7 +543,7 @@ - type: Tag tags: - Wall - - Diagonal + - Diagonal - type: Sprite drawdepth: Walls sprite: Structures/Walls/plastitanium_diagonal.rsi diff --git a/Resources/Prototypes/Entities/Structures/conveyor.yml b/Resources/Prototypes/Entities/Structures/conveyor.yml index 2e94026c15f..17c8f2e4349 100644 --- a/Resources/Prototypes/Entities/Structures/conveyor.yml +++ b/Resources/Prototypes/Entities/Structures/conveyor.yml @@ -35,6 +35,11 @@ - DoorPassable hard: False - type: Conveyor + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: BasicDevice + - type: WirelessNetworkConnection + range: 200 - type: DeviceLinkSink ports: - Reverse diff --git a/Resources/Prototypes/Entities/Tiles/lava.yml b/Resources/Prototypes/Entities/Tiles/lava.yml index 36c7b80b81b..68dd5671a06 100644 --- a/Resources/Prototypes/Entities/Tiles/lava.yml +++ b/Resources/Prototypes/Entities/Tiles/lava.yml @@ -7,6 +7,8 @@ snap: - Wall components: + - type: TileEmission + color: "#FF4500" - type: StepTrigger requiredTriggeredSpeed: 0 intersectRatio: 0.1 diff --git a/Resources/Prototypes/Entities/Tiles/liquid_plasma.yml b/Resources/Prototypes/Entities/Tiles/liquid_plasma.yml index 869db085970..ade23b6f711 100644 --- a/Resources/Prototypes/Entities/Tiles/liquid_plasma.yml +++ b/Resources/Prototypes/Entities/Tiles/liquid_plasma.yml @@ -7,6 +7,8 @@ snap: - Wall components: + - type: TileEmission + color: "#974988" - type: StepTrigger requiredTriggeredSpeed: 0 intersectRatio: 0.1 diff --git a/Resources/Prototypes/Entities/categories.yml b/Resources/Prototypes/Entities/categories.yml index dffc6b6aaf9..5b8e794309d 100644 --- a/Resources/Prototypes/Entities/categories.yml +++ b/Resources/Prototypes/Entities/categories.yml @@ -22,3 +22,8 @@ - type: entityCategory id: Mapping name: entity-category-name-mapping + +- type: entityCategory + id: DoNotMap + name: entity-category-name-donotmap + suffix: entity-category-suffix-donotmap diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 833688a00aa..32f1590d911 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -490,7 +490,7 @@ duration: 1 - type: RuleGrids - type: LoadMapRule - mapPath: /Maps/Shuttles/ShuttleEvent/striker.yml + gridPath: /Maps/Shuttles/ShuttleEvent/striker.yml - type: NukeopsRule roundEndBehavior: Nothing - type: AntagSelection diff --git a/Resources/Prototypes/Loadouts/role_loadouts.yml b/Resources/Prototypes/Loadouts/role_loadouts.yml index 1022173b326..9364b1ad446 100644 --- a/Resources/Prototypes/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/Loadouts/role_loadouts.yml @@ -39,9 +39,15 @@ - GroupSpeciesBreathTool # Silicons +#- type: roleLoadout +# id: JobBorg +# nameDataset: roleloadout doesn't support both so need to update that first. +# canCustomizeName: true + - type: roleLoadout id: JobStationAi nameDataset: NamesAI + canCustomizeName: true # Civilian - type: roleLoadout diff --git a/Resources/Prototypes/Magic/animate_spell.yml b/Resources/Prototypes/Magic/animate_spell.yml new file mode 100644 index 00000000000..b0b322919c5 --- /dev/null +++ b/Resources/Prototypes/Magic/animate_spell.yml @@ -0,0 +1,70 @@ +- type: entity + id: ActionAnimateSpell + name: Animate + description: Bring an inanimate object to life! + components: + - type: EntityTargetAction + useDelay: 0 + charges: 5 + itemIconStyle: BigAction + whitelist: + components: + - Animateable # Currently on: SeatBase, TableBase, ClosetBase, BaseMachine, ConstructibleMachine, BaseComputer, BaseItem, CrateGeneric, StorageTank, GasCanister + blacklist: + components: + - MindContainer + - NukeDisk + - GravityGenerator + - AnomalyGenerator + canTargetSelf: false + interactOnMiss: false + sound: !type:SoundPathSpecifier + path: /Audio/Magic/staff_animation.ogg + icon: + sprite: Objects/Magic/magicactions.rsi + state: spell_default + event: !type:AnimateSpellEvent + addComponents: + - type: MindContainer + - type: InputMover + - type: MobMover + - type: MovementSpeedModifier + - type: HTN + rootTask: + task: SimpleHostileCompound + - type: CombatMode + - type: MeleeWeapon + animation: WeaponArcPunch + wideAnimation: WeaponArcPunch + altDisarm: false + soundHit: /Audio/Weapons/smash.ogg + range: 1.2 + angle: 0.0 + damage: + types: + Blunt: 10 + - type: NpcFactionMember + factions: + - Wizard + - type: NoSlip + - type: MovementAlwaysTouching + - type: CanMoveInAir + - type: Damageable + damageContainer: ManifestedSpirit + damageModifierSet: ManifestedSpirit + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - type: Hands + - type: CanEscapeInventory + removeComponents: + - RequireProjectileTarget + speech: action-speech-spell-animate diff --git a/Resources/Prototypes/Magic/event_spells.yml b/Resources/Prototypes/Magic/event_spells.yml index 5aad8925a60..87b3a571077 100644 --- a/Resources/Prototypes/Magic/event_spells.yml +++ b/Resources/Prototypes/Magic/event_spells.yml @@ -1,7 +1,7 @@ - type: entity id: ActionSummonGhosts name: Summon Ghosts - description: Makes all current ghosts permanently invisible + description: Makes all current ghosts permanently visible components: - type: InstantAction useDelay: 120 diff --git a/Resources/Prototypes/Magic/staves.yml b/Resources/Prototypes/Magic/staves.yml index ccabb516fd4..0582899495f 100644 --- a/Resources/Prototypes/Magic/staves.yml +++ b/Resources/Prototypes/Magic/staves.yml @@ -1,4 +1,4 @@ -# non-projectile / "gun" staves +# non-projectile / "gun" staves # wand that gives lights an RGB effect. - type: entity @@ -32,6 +32,30 @@ enabled: true radius: 2 +- type: entity + id: AnimationStaff + parent: [ BaseItem, BaseMagicalContraband ] + name: staff of animation + description: Brings inanimate objects to life! + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Basic/staves.rsi + layers: + - state: animation + - type: ActionOnInteract + actions: + - ActionAnimateSpell + - type: Item + size: Normal + inhandVisuals: + left: + - state: animation-inhand-left + right: + - state: animation-inhand-right + - type: Tag + tags: + - WizardWand + - type: entity id: ActionRgbLight components: diff --git a/Resources/Prototypes/Maps/centcomm.yml b/Resources/Prototypes/Maps/centcomm.yml index 47dc5ca1f3e..007da851d01 100644 --- a/Resources/Prototypes/Maps/centcomm.yml +++ b/Resources/Prototypes/Maps/centcomm.yml @@ -1,5 +1,6 @@ - type: gameMap id: CentComm + isGrid: true # Did you know that centcomm is the only "game map" that isn't actually a map? Send help. mapName: 'Central Command' mapPath: /Maps/centcomm.yml minPlayers: 10 diff --git a/Resources/Prototypes/Maps/fland.yml b/Resources/Prototypes/Maps/fland.yml index 9adda1a47a7..bf01b95ff93 100644 --- a/Resources/Prototypes/Maps/fland.yml +++ b/Resources/Prototypes/Maps/fland.yml @@ -24,15 +24,15 @@ Bartender: [ 2, 2 ] Botanist: [ 3, 3 ] Chef: [ 2, 2 ] - Janitor: [ 3, 3 ] + Janitor: [ 4, 4 ] Chaplain: [ 1, 1 ] Librarian: [ 1, 1 ] ServiceWorker: [ 2, 2 ] - Reporter: [ 1, 1 ] + Reporter: [ 2, 2 ] #engineering ChiefEngineer: [ 1, 1 ] AtmosphericTechnician: [ 3, 3 ] - StationEngineer: [ 5, 5 ] + StationEngineer: [ 6, 6 ] TechnicalAssistant: [ 4, 4 ] #medical ChiefMedicalOfficer: [ 1, 1 ] @@ -47,14 +47,14 @@ #security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] - SecurityOfficer: [ 8, 8 ] + SecurityOfficer: [ 10, 10 ] Detective: [ 1, 1 ] SecurityCadet: [ 4, 4 ] #Lawyer: [ 2, 2 ] # Corvax-IAA #supply Quartermaster: [ 1, 1 ] SalvageSpecialist: [ 3, 3 ] - CargoTechnician: [ 4, 4 ] + CargoTechnician: [ 6, 6 ] #civilian Passenger: [ -1, -1 ] Clown: [ 1, 1 ] @@ -64,4 +64,4 @@ StationAi: [ 1, 1 ] Borg: [ 2, 2 ] # Юрдеп - Lawyer: [ 1, 1 ] + Lawyer: [ 1, 1 ] # ADT diff --git a/Resources/Prototypes/Procedural/Themes/vgroidinterior.yml b/Resources/Prototypes/Procedural/Themes/vgroidinterior.yml index 237c53cbaa9..bd51fcb74a2 100644 --- a/Resources/Prototypes/Procedural/Themes/vgroidinterior.yml +++ b/Resources/Prototypes/Procedural/Themes/vgroidinterior.yml @@ -3,6 +3,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 0,0 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -11,6 +12,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 6,0 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -19,6 +21,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 12,0 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -27,6 +30,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 18,0 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -35,6 +39,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 0,6 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -43,6 +48,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 6,6 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -51,6 +57,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 12,6 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -59,6 +66,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 18,6 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -67,6 +75,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 0,12 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -75,6 +84,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 6,12 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -83,6 +93,7 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 12,12 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior @@ -91,6 +102,25 @@ size: 5,5 atlas: /Maps/Dungeon/vgroidinterior.yml offset: 18,12 + ignoreTile: FloorShuttleOrange + tags: + - VGRoidInterior + +- type: dungeonRoom + id: VGRoidInterior11x5a + size: 11,5 + atlas: /Maps/Dungeon/vgroidinterior.yml + offset: 0,18 + ignoreTile: FloorShuttleOrange + tags: + - VGRoidInterior + +- type: dungeonRoom + id: VGRoidInterior11x5b + size: 11,5 + atlas: /Maps/Dungeon/vgroidinterior.yml + offset: 12,18 + ignoreTile: FloorShuttleOrange tags: - VGRoidInterior diff --git a/Resources/Prototypes/Procedural/biome_templates.yml b/Resources/Prototypes/Procedural/biome_templates.yml index 588d95f40da..45293f582f9 100644 --- a/Resources/Prototypes/Procedural/biome_templates.yml +++ b/Resources/Prototypes/Procedural/biome_templates.yml @@ -544,6 +544,7 @@ - !type:BiomeTileLayer threshold: -1.0 tile: FloorAsteroidSand + flags: 1 # Asteroid - type: biomeTemplate diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index 14e09e7527c..dc31bc0409e 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -2130,3 +2130,14 @@ time: 5 solids: FoodMeatAnomaly: 1 + +- type: microwaveMealRecipe + id: RecipeGrilledCheeseSandwich + name: grilled cheese sandwich recipe + result: FoodBakedGrilledCheeseSandwich + time: 10 + solids: + FoodBreadPlainSlice: 2 + FoodCheeseSlice: 1 + FoodButterSlice: 1 + diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/engineering.yml b/Resources/Prototypes/Recipes/Lathes/Packs/engineering.yml index fd3041bf512..9208bde0641 100644 --- a/Resources/Prototypes/Recipes/Lathes/Packs/engineering.yml +++ b/Resources/Prototypes/Recipes/Lathes/Packs/engineering.yml @@ -58,6 +58,8 @@ - PowerDrill - WelderExperimental - JawsOfLife + - Fulton + - FultonBeacon - type: latheRecipePack id: AtmosTools diff --git a/Resources/Prototypes/Research/industrial.yml b/Resources/Prototypes/Research/industrial.yml index 80e5e77b12f..b32416a19ea 100644 --- a/Resources/Prototypes/Research/industrial.yml +++ b/Resources/Prototypes/Research/industrial.yml @@ -166,6 +166,8 @@ - PowerDrill - JawsOfLife - BorgModuleAdvancedTool + - Fulton + - FultonBeacon - type: technology id: MassExcavation diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml b/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml index 7f110bf485d..5e3afea1f98 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml @@ -14,6 +14,10 @@ - Maintenance extendedAccess: - Salvage + special: + - !type:GiveItemOnHolidaySpecial + holiday: BoxingDay + prototype: BoxCardboard - type: startingGear id: CargoTechGear diff --git a/Resources/Prototypes/Roles/Jobs/CentComm/deathsquad.yml b/Resources/Prototypes/Roles/Jobs/CentComm/deathsquad.yml index 5f731fa582e..ae890f7061a 100644 --- a/Resources/Prototypes/Roles/Jobs/CentComm/deathsquad.yml +++ b/Resources/Prototypes/Roles/Jobs/CentComm/deathsquad.yml @@ -31,7 +31,7 @@ storage: back: - WeaponPulsePistol - - WeaponRevolverMateba + - WeaponRevolverMatebaAP - SpeedLoaderMagnumAP - SpeedLoaderMagnumAP - BoxFlashbang diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml b/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml index dd25a2abe2e..47c1ccca022 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml @@ -13,6 +13,10 @@ extendedAccess: - Kitchen - Bar + special: + - !type:GiveItemOnHolidaySpecial + holiday: FourTwenty + prototype: CannabisSeeds - type: startingGear id: BotanistGear diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml b/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml index 3bfca35b08f..3712e26bf56 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml @@ -16,6 +16,10 @@ - Engineering - External - Atmospherics + special: + - !type:GiveItemOnHolidaySpecial + holiday: FirefighterDay + prototype: FireAxe - type: startingGear id: AtmosphericTechnicianGear diff --git a/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml b/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml index 80a0486c788..19f07137a45 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml @@ -15,6 +15,10 @@ - Maintenance extendedAccess: - Chemistry + special: + - !type:GiveItemOnHolidaySpecial + holiday: DoctorDay + prototype: WehMedipen - type: startingGear id: DoctorGear diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml index e2f8de96093..8eb28c273e5 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml @@ -9,6 +9,10 @@ access: - Service - Maintenance + special: + - !type:GiveItemOnHolidaySpecial + holiday: BoxingDay + prototype: ClothingHandsGlovesBoxingRigged - type: startingGear id: BoxerGear diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml index 32c98ed4871..879a5a3af4f 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml @@ -9,6 +9,10 @@ access: - Service - Maintenance + special: + - !type:GiveItemOnHolidaySpecial + holiday: MonkeyDay + prototype: MonkeyCubeBox - type: startingGear id: ZookeeperGear diff --git a/Resources/Prototypes/SoundCollections/footsteps.yml b/Resources/Prototypes/SoundCollections/footsteps.yml index 2e671b1bbce..ad2a94be4d7 100644 --- a/Resources/Prototypes/SoundCollections/footsteps.yml +++ b/Resources/Prototypes/SoundCollections/footsteps.yml @@ -213,3 +213,12 @@ id: FootstepHoverBorg files: - /Audio/Effects/Footsteps/borgwalk2.ogg + +- type: soundCollection + id: FootstepHighHeels + files: + - /Audio/Effects/Footsteps/heelsclack1.ogg + - /Audio/Effects/Footsteps/heelsclack2.ogg + - /Audio/Effects/Footsteps/heelsclack3.ogg + - /Audio/Effects/Footsteps/heelsclack4.ogg + - /Audio/Effects/Footsteps/heelsclack5.ogg diff --git a/Resources/Prototypes/Voice/speech_emotes.yml b/Resources/Prototypes/Voice/speech_emotes.yml index f799cc6d4d8..741ccaa36e8 100644 --- a/Resources/Prototypes/Voice/speech_emotes.yml +++ b/Resources/Prototypes/Voice/speech_emotes.yml @@ -331,6 +331,9 @@ chatTriggers: - clap - claps their hands together + - claps her hands together + - claps his hands together + - claps its hands together - type: emote id: Snap @@ -343,7 +346,7 @@ blacklist: components: - BorgChassis - chatMessages: ["chat-emote-msg-snap"] # snaps <{THEIR($ent)}> fingers? + chatMessages: ["chat-emote-msg-snap"] chatTriggers: - snap - snaps @@ -352,6 +355,9 @@ - snap fingers - snaps fingers - snaps their fingers + - snaps her fingers + - snaps his fingers + - snaps its fingers - snapping fingers - snapped fingers # Corvax-Localization-Start diff --git a/Resources/Prototypes/ai_factions.yml b/Resources/Prototypes/ai_factions.yml index 8e12f972f44..aec14e84f44 100644 --- a/Resources/Prototypes/ai_factions.yml +++ b/Resources/Prototypes/ai_factions.yml @@ -1,15 +1,16 @@ - type: npcFaction id: Dragon hostile: - - NanoTrasen - - Syndicate - - Xeno - - PetsNT - - Zombie - - Revolutionary - - Heretic # goob edit - heretics - - Ursus # ADT tweak - - AllHostile + - NanoTrasen + - Syndicate + - Xeno + - PetsNT + - Zombie + - Revolutionary + - Heretic # goob edit - heretics + - Ursus # ADT tweak + - AllHostile + - Wizard - type: npcFaction id: NanoTrasen @@ -22,13 +23,14 @@ - DroneAntag # ADT tweak - Dragon - AllHostile + - Wizard - Heretic # goob edit - heretics - type: npcFaction id: Mouse hostile: - - PetsNT - - AllHostile + - PetsNT + - AllHostile - type: npcFaction id: Passive @@ -53,6 +55,7 @@ - Revolutionary - Ursus # ADT tweak - AllHostile + - Wizard - Heretic # goob edit - heretics - type: npcFaction @@ -71,6 +74,7 @@ - Ursus # ADT tweak - Dragon - AllHostile + - Wizard - type: npcFaction id: Xeno @@ -84,6 +88,7 @@ - Heretic # goob edit - heretics - Ursus # ADT tweak - AllHostile + - Wizard - type: npcFaction id: Zombie @@ -97,6 +102,7 @@ - Revolutionary - Ursus # ADT tweak - AllHostile + - Wizard - Heretic # goob edit - heretics - type: npcFaction @@ -108,6 +114,7 @@ - Dragon - Ursus # ADT tweak - AllHostile + - Wizard - type: npcFaction id: AllHostile @@ -125,3 +132,16 @@ - Revolutionary - Ursus # ADT tweak - DroneAntag # ADT tweak + - Wizard + +- type: npcFaction + id: Wizard + hostile: + - NanoTrasen + - Dragon + - SimpleHostile + - Syndicate + - Xeno + - Zombie + - Revolutionary + - AllHostile diff --git a/Resources/Prototypes/contraband_severities.yml b/Resources/Prototypes/contraband_severities.yml index c103af5e0a6..38349d94972 100644 --- a/Resources/Prototypes/contraband_severities.yml +++ b/Resources/Prototypes/contraband_severities.yml @@ -25,3 +25,8 @@ - type: contrabandSeverity id: Syndicate examineText: contraband-examine-text-Syndicate + +# This is magical contraband and not permitted to be used IC. +- type: contrabandSeverity + id: Magical + examineText: contraband-examine-text-Magical diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 5b71979ca72..8067cd80d61 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -15,6 +15,9 @@ - type: Tag id: AirSensor +- type: Tag + id: AllowGhostShownByEvent + - type: Tag id: Ambrosia @@ -1195,6 +1198,9 @@ - type: Tag id: Spray +- type: Tag + id: SprayNozzle + - type: Tag id: SpreaderIgnore diff --git a/Resources/ServerInfo/Guidebook/Engineering/AccessConfigurator.xml b/Resources/ServerInfo/Guidebook/Engineering/AccessConfigurator.xml index c828aa51f4b..394fcae8b50 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/AccessConfigurator.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/AccessConfigurator.xml @@ -30,4 +30,20 @@ Агенты Синдиката могут попытаться взломать устройства с ограниченным доступом с помощью [color=#a4885c]Криптографического секвенсора (ЕМАГ)[/color]. Этот вредоносный инструмент полностью отключает все считыватели идентификационных карт, подключенные к устройству. Инженеры должны будут частично демонтировать или перестроить пострадавшие устройства, а затем установить соответствующие доступы с помощью конфигуратора доступов (или конфигуратора сетей), чтобы восстановить ограничения. + + + + + + Чтобы устранить повреждение, вам обычно придется частично разобрать устройство и реконструировать его. + Это сбросит требования доступа к значениям по умолчанию, что позволит вам перенастроить устройство по мере необходимости. + + ## Ремонт шлюзов с нарушенным доступом + Шлюзы можно отремонтировать несколькими способами, если их требования доступа были изменены. + + Если у вас есть конфигуратор доступа, вы можете использовать [color=#a4885c]отвертку[/color], чтобы снять панель обслуживания шлюза, а затем использовать конфигуратор доступа, чтобы перенастроить требования доступа шлюза. + Частичная демонтаж не требуется. + + Если у вас нет конфигуратора доступа, вы все равно можете починить шлюз, частично разобрав его, пока не удалите дверную электронику, а затем реконструировав его. + Это сбросит шлюз к требованиям доступа по умолчанию, которые у него были в начале смены. diff --git a/Resources/ServerInfo/Guidebook/Engineering/AirInjector.xml b/Resources/ServerInfo/Guidebook/Engineering/AirInjector.xml index 3c4027dcb3b..54b9cccba8b 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/AirInjector.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/AirInjector.xml @@ -4,12 +4,11 @@ - It is primarily used to force gasses into high-pressure rooms like the station's [textlink="gas storage rooms" link="GasMiningAndStorage"], or a burn chamber. + It is primarily used to force gasses into high-pressure rooms like the station's [textlink="gas storage rooms" link="GasMiningAndStorage"] or a burn chamber. The air injector does not require [textlink="power" link="Power"] to function. The air injector will inject gasses into the atmosphere it's exposed to until the atmosphere reaches [color=orange][protodata="GasOutletInjector" comp="GasOutletInjector" member="MaxPressure"/] kPa[/color]. The air injector's speed is proportional to the amount of gas in the injector. - The more gas in the injector, the faster it will inject gas into the exposed atmosphere. diff --git a/Resources/ServerInfo/Guidebook/Engineering/AirVent.xml b/Resources/ServerInfo/Guidebook/Engineering/AirVent.xml index d6b81fa19b6..bbdd1a530ab 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/AirVent.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/AirVent.xml @@ -53,8 +53,8 @@ - If the Internal bound pressure is set to 50 kPa, the air vent will not draw gas from the connected pipe if its pressure is below 50 kPa. When the vent is in siphoning mode: - - If the External bound pressure is set to 101.3 kPa, the air vent will siphon gases until the atmosphere reaches 101.3 kPa. - - If the Internal bound pressure is set to 50 kPa, the air vent will not push gases into the pipenet if its pressure is above 50 kPa. + - If the External bound pressure is set to 101.3 kPa, the air vent will siphon gasses until the atmosphere reaches 101.3 kPa. + - If the Internal bound pressure is set to 50 kPa, the air vent will not push gasses into the pipenet if its pressure is above 50 kPa. If you're still confused about PressureBounds, here's a simple way to think about it: - You can think of the External bound as the upper limit for the exposed atmosphere. "I will not pressurize the exposed atmosphere past this pressure, or draw from the atmosphere below this pressure." diff --git a/Resources/ServerInfo/Guidebook/Engineering/MixingAndFiltering.xml b/Resources/ServerInfo/Guidebook/Engineering/MixingAndFiltering.xml index 5814dd4b083..d38dd1bd99a 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/MixingAndFiltering.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/MixingAndFiltering.xml @@ -1,13 +1,13 @@ # Mixing and Filtering - Gas mixers and filters are essential tools for manipulating the composition of gases within a [textlink="pipe network" link="PipeNetworks"]. + Gas mixers and filters are essential tools for manipulating the composition of gasses within a [textlink="pipe network" link="PipeNetworks"]. ## Gas Mixer - Gas mixers are used to combine gases in specific ratios within a [textlink="pipe network." link="PipeNetworks"] + Gas mixers are used to combine gasses in specific ratios within a [textlink="pipe network." link="PipeNetworks"] They are essential for creating controlled gas mixtures for various applications. Gas mixers have 3 connections: 2 inputs and 1 output, as shown below: @@ -20,7 +20,7 @@ - Gas mixers will still respect the requested gas mixture even if one of the input gases is not available. For example: + Gas mixers will still respect the requested gas mixture even if one of the input gasses is not available. For example: - If the requested mixture is 22% oxygen and 78% nitrogen, but there is no available oxygen, the mixer will not work until oxygen is available. - If oxygen is available, but at a pressure lower than required to create the proper mixture at the requested pressure, the mixer will still create the mixture, but the output will be at a lower pressure than requested. @@ -36,7 +36,7 @@ - Mixing oxygen and plasma for plasma burning to create Tritium ## Gas Filter - Gas filters are used to separate gases from a mixture within a [textlink="pipe network." link="PipeNetworks"] + Gas filters are used to separate gasses from a mixture within a [textlink="pipe network." link="PipeNetworks"] @@ -50,6 +50,6 @@ Gas filters will become blocked and will not filter gas if either output is blocked. Gas filters can be used in a variety of applications, for example: - - Filtering out unwanted gases from a [textlink="pipe network" link="PipeNetworks"] - - Separating specific gases for storage in a station's recyclernet + - Filtering out unwanted gasses from a [textlink="pipe network" link="PipeNetworks"] + - Separating specific gasses for storage in a station's recyclernet diff --git a/Resources/ServerInfo/Guidebook/Engineering/PortableScrubber.xml b/Resources/ServerInfo/Guidebook/Engineering/PortableScrubber.xml index 287e591ff32..cfc82b9d728 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/PortableScrubber.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/PortableScrubber.xml @@ -5,16 +5,16 @@ - It is invaluable for quickly scrubbing unwanted gasses from a room when regular [textlink="scrubbers" link="AirScrubber"] are working too slow, or when a [textlink="scrubber" link="AirScrubber"] is not present. + It is invaluable for quickly removing unwanted gasses from a room when regular [textlink="scrubbers" link="AirScrubber"] are working too slow, or when a [textlink="scrubber" link="AirScrubber"] is not present. The portable scrubber requires [textlink="power" link="Power"] through a nearby [textlink="LV cable" link="VoltageNetworks"] to function. - The portable scrubber automatically starts scrubbing all non-breathable gasses from the room when it is bolted (wrenched) to the floor. + The portable scrubber automatically starts removing all non-breathable gasses from the room when it is bolted (wrenched) to the floor. - It will stop scrubbing when unbolted (unwrenched) from the floor, or when its internal volume is full. The scrubber has an internal capacity of [color=orange][protodata="PortableScrubber" comp="PortableScrubber" member="Volume"/] liters[/color]. + It will stop scrubbing when unbolted (unwrenched) from the floor or when its internal volume is full. The scrubber has an internal capacity of [color=orange][protodata="PortableScrubber" comp="PortableScrubber" member="Volume"/] liters[/color]. ## Dumping Waste and Storage - The scrubber's internal volume can be emptied by bolting (wrenching it) onto a [textlink="connector" link="GasCanisters"]. + The scrubber's internal volume can be emptied by anchoring (wrenching) onto a [textlink="connector" link="GasCanisters"]. Stations commonly have a dedicated emptying point to quickly transfer the waste from the scrubber to the station's wastenet. diff --git a/Resources/ServerInfo/Guidebook/Engineering/PowerStorage.xml b/Resources/ServerInfo/Guidebook/Engineering/PowerStorage.xml index efd0167eb13..729e1720e19 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/PowerStorage.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/PowerStorage.xml @@ -29,7 +29,7 @@ - SMESes can store [color=orange][protodata="SMESBasic" comp="Battery" member="MaxCharge" format="N0"/] J[/color] of energy, and can output a maximum [color=orange][protodata="SMESBasic" comp="PowerNetworkBattery" member="MaxSupply" format="N0"/] W[/color] of power. + SMESes can store [color=orange][protodata="SMESBasic" comp="Battery" member="MaxCharge" format="N0"/] J[/color] of energy and can output a maximum [color=orange][protodata="SMESBasic" comp="PowerNetworkBattery" member="MaxSupply" format="N0"/] W[/color] of power. If the battery is full, the SMES will pass through the power it receives from the input cable to the output cable. In the event of a power deficit, the SMES will ramp up to supplement the power draw. @@ -41,10 +41,10 @@ They're primarily used in station SMES arrays to store large amounts of power for the station's power grid. - They help to buy engineers time to setup power at roundstart, or to provide power in the event of a power deficit for extended periods of time. + They help to buy engineers time to setup power at roundstart or to provide power in the event of a power deficit for extended periods of time. - Advanced SMESes can store [color=orange][protodata="SMESAdvanced" comp="Battery" member="MaxCharge" format="N0"/] J[/color] of energy, and can output a maximum [color=orange][protodata="SMESAdvanced" comp="PowerNetworkBattery" member="MaxSupply" format="N0"/] W[/color] of power. + Advanced SMESes can store [color=orange][protodata="SMESAdvanced" comp="Battery" member="MaxCharge" format="N0"/] J[/color] of energy and can output a maximum [color=orange][protodata="SMESAdvanced" comp="PowerNetworkBattery" member="MaxSupply" format="N0"/] W[/color] of power. - Keep in mind that these aren't a magic solution to power deficits, and they can't store infinite energy. + Keep in mind that these aren't a magic solution to power deficits and they can't store infinite energy. A station load will drain these battries quickly if there is no power source partially supporting them. diff --git a/Resources/ServerInfo/Guidebook/Engineering/Pumps.xml b/Resources/ServerInfo/Guidebook/Engineering/Pumps.xml index 7b399b0e5a4..3574e34a82e 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Pumps.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Pumps.xml @@ -1,7 +1,7 @@  # Pumps Pumps are the primary way of actively moving gasses through a [textlink="pipenet." link="PipeNetworks"] - They take gas from one side, and push it to the other. + They take gas from one side and push it to the other. There are two different types of pumps: @@ -16,7 +16,7 @@ - Pumps cannot move gasses into pipes with pressures or volumes exceeding their [color=#a4885c]limit[/color]. This causes them to be [color=red]blocked[/color]. Pumps will show a colorful animation when they are doing work. - If they have no gas to pump, or they are blocked, they will show a blinking [color=red]red[/color] animation. + If they have no gas to pump or they are blocked, they will show a blinking [color=red]red[/color] animation. Pumps that are off, have no power, or are unanchored will show no animation. ## Pressure Pumps diff --git a/Resources/ServerInfo/Guidebook/Engineering/Radiators.xml b/Resources/ServerInfo/Guidebook/Engineering/Radiators.xml index 0d3ec5f8f6a..54711422709 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Radiators.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Radiators.xml @@ -21,6 +21,8 @@ If you're exchanging heat with space, you can only get as cold as space. To increase the efficiency of radiation, you can build radiators on lattice, which will allow the radiator to radiate more heat, compared to being directly attached to hull tile. + Gas will flow naturally through the radiator via differences in pressure, but you can use a gas pump to increase the flow rate. + Increasing the flow rate of gas through the radiator will increase the rate of heat exchange. diff --git a/Resources/ServerInfo/Guidebook/Engineering/Ramping.xml b/Resources/ServerInfo/Guidebook/Engineering/Ramping.xml index 6799353143f..b7ef39c2a4b 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Ramping.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Ramping.xml @@ -12,9 +12,9 @@ - After some seconds have passed, the generator will have ramped up to 100 kW of power, and the brownout will end. All devices are now satisfied with the power they are receiving. During a shift, this is most commonly observed when a generator runs out of fuel and suddenly stops producing power. - Suddenly, the grid is hit with a large deficit of power (as supply has fallen below demand), and all devices will experience a brownout until SMESes or other generators can ramp up to match the new demand. + Suddenly the grid is hit with a large deficit of power (as supply has fallen below demand), and all devices will experience a brownout until SMESes or other generators can ramp up to match the new demand. - This can also happen when a large power consuming device, or department, is reconnected to the grid. + This can also happen when a large power consuming device or department is reconnected to the grid. The sudden increase in power draw will cause a brownout until the generators can ramp up to match the new demand. diff --git a/Resources/ServerInfo/Guidebook/Engineering/SignalValve.xml b/Resources/ServerInfo/Guidebook/Engineering/SignalValve.xml index dd2991e56da..2b6b11dd58d 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/SignalValve.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/SignalValve.xml @@ -5,13 +5,13 @@ - The signal valve is similar to the manual valve. Gas can flow unrestricted in both directions, and it can be operated manually. + The signal valve is similar to the manual valve. Gas can flow unrestricted in both directions and it can be operated manually. The signal valve has 3 [textlink="signal" link="Networking"] inputs, which can open, close, or toggle the valve. Signal valves can be used in a variety of applications, for example: - Remote control of valves in hazardous areas or areas inaccessible to crew - Convenient control over a valve in a hard-to-reach area - - Automation with other [textlink="signal-enabled" link="Networking"] machines and equipment such as [textlink="air alarms" link="AirAlarms"] and remote signallers + - Automation with other [textlink="signal-enabled" link="Networking"] machines and equipment such as [textlink="air alarms" link="AirAlarms"] and remote signalers diff --git a/Resources/ServerInfo/Guidebook/Engineering/SingularityEngine.xml b/Resources/ServerInfo/Guidebook/Engineering/SingularityEngine.xml index 6b4bb1780a6..cca2bd24793 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/SingularityEngine.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/SingularityEngine.xml @@ -28,7 +28,7 @@ It is suggested to use a max size containment field for the singularity. Any smaller and the singularity may outgrow its field and escape. - Containment pylons should be arranged in a square, with 7 tiles of spacing between each pylon. + Containment field generators should be arranged in a square, with 7 tiles of spacing between each field generator. @@ -62,11 +62,11 @@ From here, you can refill the tank with plasma using a plasma canister and reinsert it into the collector. The maximum power the radiation collector can produce is determined by: - - The amount of radiation it is capturing (which is effectively the Singularity's power level), - - and the amount of plasma it has in its connected tank. + - The amount of radiation it is capturing (which is effectively the Singularity's power level) + - The amount of plasma it has in its connected tank - Over time, the collector will drain the tank of plasma, which reduces it's effective power output. - Eventually, the tank will be empty, and the collector will stop producing power. Be sure to refill the tank often! + Over time the collector will drain the tank of plasma, which reduces it's effective power output. + Eventually the tank will be empty, and the collector will stop producing power. Be sure to refill the tank often! ## Radiation Protection The singularity emits a massive amount of radiation, which can kill crew members who are not wearing proper protection. diff --git a/Resources/ServerInfo/Guidebook/Engineering/SolarPanels.xml b/Resources/ServerInfo/Guidebook/Engineering/SolarPanels.xml index d97d2a78d7f..2873e0ae100 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/SolarPanels.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/SolarPanels.xml @@ -18,6 +18,8 @@ This is because the station is occluding some panels, so don't worry about it too much. Most stations have solar arrays placed at all sides of the station, so there's always some power being generated. + When directly facing the sun with no object occlusion, regular solar panels can generate [color=orange][protodata="SolarPanel" comp="SolarPanel" member="MaxSupply" format="N0"] W[/color] of power. + Solar panels generate [color=orange]HV power[/color], and as such require an [color=orange]HV wire[/color] running underneath them to connect to the station's power grid. ## Power Bridge @@ -81,17 +83,30 @@ ## Setting Up Solar Panel Arrays Solar panel arrays are commonly found on the exterior of the station, and are used to generate large amounts of free power for the station. - You can either spacewalk to them from the outside, or you can run a loop through the station's maintenance tunnels to reach them. + You can either spacewalk to them from the outside or you can run a loop through the station's maintenance tunnels to reach them. Solar array machine rooms are often marked with signs, and locked behind engineering access. - At the start of the shift, solar panels are misaligned and disconnected from the grid. + At the start of the shift solar panels are misaligned and disconnected from the grid. You will need to align them and connect them to the station's power grid to start generating power. This usually involves running a line of [color=orange]HV wire[/color] to the pannels from the solar array machine room, and then using a Solar Control Computer to align the panels. Solar array machine rooms frequently have a Solar Control Computer nearby, as well as an [textlink="SMES" link="PowerStorage"] to store the power generated by the panels for later use. + + ## Upgrading Solar Panels + Solar panels can be upgraded to increase their power output. + + + + + + + This can be done by replacing the glass sheets in the solar assembly with plasma or uranium glass sheets. + + Plasma and Uranium solar panels generate [color=orange][protodata="SolarPanelPlasma" comp="SolarPanel" member="MaxSupply" format="N0"] W[/color] and [color=orange][protodata="SolarPanelUranium" comp="SolarPanel" member="MaxSupply" format="N0"] W[/color] of power respectively. + They also are much tougher than regular solar panels. diff --git a/Resources/ServerInfo/Guidebook/Engineering/Spacing.xml b/Resources/ServerInfo/Guidebook/Engineering/Spacing.xml index 01097c10e2b..6fb9565ad3b 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Spacing.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Spacing.xml @@ -6,14 +6,14 @@ Fixing spacing generally follows two simple steps: - 1. Identify the area that has been spaced, and [textlink="seal the hole." link="ExpandingRepairingStation"] + 1. Identify the area that has been spaced and [textlink="seal the hole." link="ExpandingRepairingStation"] - If you're having trouble finding the hole, you can carefully listen for the flow of air rushing by you, if air is currently leaking to space. - Look for any holes underneath girders that may be hard to see. 2. Repressurize the area. - - [textlink="Air vents" link="AirVent"] enter pressure lockout when a room is spaced, so you'll need to override the vents to repressurize the area. You can do this by setting the connected [textlink="air alarm" link="AirAlarms"] to fill, or by using a screwdriver on a vent to manually override it temporarily. + - [textlink="Air vents" link="AirVent"] enter pressure lockout in order not to lose more air to spacing, so you'll need to override the vents to repressurize the area. You can do this by setting the connected [textlink="air alarm" link="AirAlarms"] to fill, or by using a screwdriver on a vent to manually override it temporarily. ## Things to Avoid - Keep in mind that while you have an infinite supply of [textlink="mined gas" link="GasMiningAndStorage"], it is not quick enough to fill up multiple rooms at once. Setting [textlink="air alarms" link="AirAlarms"] to fill first [italic]before[/italic] fixing the root problem will often lead to wasted time and gas. diff --git a/Resources/ServerInfo/Guidebook/Engineering/TeslaEngine.xml b/Resources/ServerInfo/Guidebook/Engineering/TeslaEngine.xml index 859ec8317eb..168f6253a8a 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/TeslaEngine.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/TeslaEngine.xml @@ -37,30 +37,13 @@ The Tesla prefers to strike some objects more than others, such as Tesla Coils and Grounding Rods. - - - - - - - - - - - Because of this, strategically placing Tesla Coils and Grounding Rods around the lightning ball can help protect sensitive equipment from being struck, and prevent a loosed tesla (tesloose). - If the tesla can't find any Tesla Coils or Grounding Rods to strike first, it will strike almost any station object capable of being powered, such as Substations, APCs, and general machinery. Certain objects aren't struck by the tesla, such as batteries, lights, PDAs, and other handheld items. It will also strike mobs and crew members, shocking them. Make sure to wear insulated gloves before approaching it. - Note that only placing Tesla Coils won't be enough to prevent the tesla from striking sensitive equipment. - Grounding Rods should also be placed to help protect nearby Emitters from being struck. - - Engineers can also use grounding rods to protect sensitive equipment from lightning strikes, such as the Emitters powering the containment field generators. - - ## Power Generation + ## Tesla Coils Lightning strikes can be harnessed using Tesla Coils, which convert the lightning strikes into power for the station. @@ -69,16 +52,34 @@ - Tesla Coils should be placed around the lightning ball to capture the lightning strikes, as well as to prevent the lightning from striking sensitive equipment further away. + Tesla Coils should be placed around the lightning ball to capture the energy from lightning strikes, as well as to prevent the lightning from striking sensitive equipment further away. Tesla Coils take damage every time they are struck by lightning, and will eventually break if not repaired. Be sure to monitor the condition of the Tesla Coils and repair them as needed. - Grounding rods, in contrast, do not take damage from lightning strikes. - When lightning strikes Tesla Coils, they fill an internal battery, which is rapidly discharged to the grid. It will discharge this power even if there is no consumer to take it, so it's a good idea to have an SMES nearby to store the power and discharge it smoothly. + ## Grounding Rods + Grounding Rods help protect sensitive equipment from being struck and prevent a loosed tesla (tesloose). + + + + + + + + + + + + + + Grounding rods do not take damage from lightning strikes. + This makes them beneficial for forming a saftey net of grounding rods to rely on in case the tesla coils are damaged or destroyed. + + Engineers should use grounding rods to protect sensitive equipment from lightning strikes, such as the Emitters powering the containment field generators. + ## Loosed Tesla (Tesloose) If the lightning ball escapes the containment field, it is referred to as a loosed tesla, or tesloose. diff --git a/Resources/ServerInfo/Guidebook/Engineering/Thermomachines.xml b/Resources/ServerInfo/Guidebook/Engineering/Thermomachines.xml index 64035cde193..7d449f33ed6 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Thermomachines.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Thermomachines.xml @@ -1,6 +1,6 @@  # Thermomachines - Thermomachines are devices that manipulate the temperature of gases within a [textlink="pipe network" link="PipeNetworks"] or exposed atmosphere. + Thermomachines are devices that manipulate the temperature of gasses within a [textlink="pipe network" link="PipeNetworks"] or exposed atmosphere. @@ -8,10 +8,10 @@ They are essential for maintaining the temperature of gasses for various applications. - All thermomachines work by using [textlink="electrical power" link="Power"] to preform work on the atmosphere to either heat or cool it. - The amount of work they do is directly related to the amount of power they consume. + All thermomachines work by using [textlink="electrical power" link="Power"] to heat or cool the atmosphere. + How much they heat/cool the atmosphere is directly related to the amount of power they consume. - Thermomachines also have an efficiency coefficient, which determines how much work they can do per unit of power consumed. + Thermomachines also have an efficiency coefficient, which determines how much they can heat or cool the atmosphere per unit of power consumed. To prevent overshooting their target value, thermomachines will scale back their heating/cooling power as they approach the target temperature. However, they will still consume the same amount of electrical power, even when idle. @@ -19,7 +19,7 @@ All thermomachines have a target temperature tolerance of [color=orange][protodata="GasThermoMachineFreezer" comp="GasThermoMachine" member="TemperatureTolerance"/] K[/color], meaning they will stop heating or cooling when the temperature is within [color=orange][protodata="GasThermoMachineFreezer" comp="GasThermoMachine" member="TemperatureTolerance"/] K[/color] of the target temperature. ## Space Heater - The space heater is a portable temperature control unit that preforms work to heat or cool gas in the atmosphere it's exposed to. + The space heater is a portable temperature control unit that heats or cools gas in the atmosphere it's exposed to. It's a simple and effective way to maintain the temperature of a room, without having to build a pipenet or other system. @@ -30,7 +30,7 @@ The space heater can cool to as low as [color=orange][protodata="SpaceHeater" comp="SpaceHeater" member="MinTemperature"/] K[/color] and heat to as high as [color=orange][protodata="SpaceHeater" comp="SpaceHeater" member="MaxTemperature"/] K[/color]. - It also has three power settings, which determine how much power it consumes and how much work it does. + It also has three power settings which determine how fast it heats or cools the atmosphere. Botany or science will often request these to maintain the temperature of their plants or department. @@ -44,7 +44,7 @@ They draw [color=orange][protodata="GasThermoMachineFreezer" comp="GasThermoMachine" member="HeatCapacity" format="N0"/] W[/color] of power and can heat or cool gas in a pipenet to as high as [color=orange][protodata="GasThermoMachineFreezer" comp="GasThermoMachine" member="MaxTemperature"/] K[/color] or as low as [color=orange][protodata="GasThermoMachineFreezer" comp="GasThermoMachine" member="MinTemperature"/] K[/color]. - You can swap the mode of the thermomachine by deconstructing it and using a screwdriver on its board. + You can swap the mode of the thermomachine by deconstructing it and using a screwdriver on its circuit board. The board can be printed at a circuit imprinter, commonly found in Science. diff --git a/Resources/ServerInfo/Guidebook/Engineering/WirePanels.xml b/Resources/ServerInfo/Guidebook/Engineering/WirePanels.xml index 6ac749120bc..aa86e6e9b38 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/WirePanels.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/WirePanels.xml @@ -10,16 +10,16 @@ - From here, you can use wirecutters and a multitool to interact with the wiring. Note that interacting with the wiring often requires insulated gloves, as if the wire is live, you can get shocked. + From here you can use wirecutters and a multitool to interact with the wiring. Note that interacting with the wiring often requires insulated gloves, as if the wire is live, you can get shocked. - You can cut and mend wires using the wirecutters, and pulse wires using the multitool. + You can cut and mend wires using the wirecutters and pulse wires using the multitool. Cutting wires often completely disables or restores functionality to a device. - It may also trigger unintended functionality, like shocking people, dropping door bolts, or exploding. + It may also trigger unintended functionality like shocking people, dropping door bolts, or exploding. Pulsing wires can have a variety of effects, but oftentimes it either temporarily disables or enables functionality. diff --git a/Resources/Textures/Clothing/Back/Backpacks/waterbackpack.rsi/icon-filled.png b/Resources/Textures/Clothing/Back/Backpacks/waterbackpack.rsi/icon-filled.png new file mode 100644 index 00000000000..913b1a289d8 Binary files /dev/null and b/Resources/Textures/Clothing/Back/Backpacks/waterbackpack.rsi/icon-filled.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/waterbackpack.rsi/icon.png b/Resources/Textures/Clothing/Back/Backpacks/waterbackpack.rsi/icon.png index 7a5eac53021..d6636224af7 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/waterbackpack.rsi/icon.png and b/Resources/Textures/Clothing/Back/Backpacks/waterbackpack.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/waterbackpack.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/waterbackpack.rsi/meta.json index 54f53865daf..09934f57b0e 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/waterbackpack.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/waterbackpack.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/f7337f1aa9efdcc1403ca4771d638e0634074537", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/f7337f1aa9efdcc1403ca4771d638e0634074537, icon-filled by PS3MOIRA", "size": { "x": 32, "y": 32 @@ -10,6 +10,9 @@ { "name": "icon" }, + { + "name": "icon-filled" + }, { "name": "equipped-BACKPACK", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-head-light-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-head-light-vox.png new file mode 100644 index 00000000000..d8779ba6696 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-head-light-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-head-light.png b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-head-light.png new file mode 100644 index 00000000000..de6d1bf962d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-head-light.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-head-vox.png similarity index 100% rename from Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/equipped-HELMET-vox.png rename to Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-head-vox.png diff --git a/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-head.png similarity index 100% rename from Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-head.png diff --git a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/icon-flash.png new file mode 100644 index 00000000000..4f7a3171aa7 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/icon.png new file mode 100644 index 00000000000..b806d491310 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/light-overlay.png b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/light-overlay.png new file mode 100644 index 00000000000..1399b770a35 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/light-overlay.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/meta.json similarity index 61% rename from Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/meta.json rename to Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/meta.json index 50433afd186..7a222c40b82 100644 --- a/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/meta.json @@ -11,19 +11,25 @@ "name": "icon" }, { - "name": "equipped-HELMET", + "name": "icon-flash" + }, + { + "name": "light-overlay" + }, + { + "name": "equipped-head", "directions": 4 }, { - "name": "equipped-HELMET-vox", + "name": "equipped-head-light", "directions": 4 }, { - "name": "inhand-left", + "name": "equipped-head-vox", "directions": 4 }, { - "name": "inhand-right", + "name": "equipped-head-light-vox", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/icon.png deleted file mode 100644 index e3898cc4d3f..00000000000 Binary files a/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/inhand-left.png deleted file mode 100644 index 08ffe2f6de0..00000000000 Binary files a/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/inhand-right.png deleted file mode 100644 index a65a7146efe..00000000000 Binary files a/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/icon-siren.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/icon-siren.png new file mode 100644 index 00000000000..bf6ec647f7a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/icon-siren.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json index a1cb259b09d..64e1405333c 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json @@ -1,34 +1,37 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from paradise station git at commit https://github.com/ParadiseSS13/Paradise/commit/e5e584804b4b0b373a6a69d23afb73fd3c094365, redrawn by Ubaser. Vox state made by Flareguy for SS14. Siren Icon made by Velen based of the helmet's colours", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - } - ] + { + "name": "icon-siren" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-resomi", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING-vox.png index 629584e995b..d9c02bc41fc 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ancient.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ancient.rsi/meta.json index 1dd4e0e0100..773c4d35c1c 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ancient.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ancient.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, monkey made by brainfood1183 (github) for ss14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/662c08272acd7be79531550919f56f846726eabb/icons/mob/uniform.dmi, monkey made by brainfood1183 (github) for ss14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Interface/VerbIcons/ATTRIBUTION.txt b/Resources/Textures/Interface/VerbIcons/ATTRIBUTION.txt index 5b1320b450a..1c71df2d5c9 100644 --- a/Resources/Textures/Interface/VerbIcons/ATTRIBUTION.txt +++ b/Resources/Textures/Interface/VerbIcons/ATTRIBUTION.txt @@ -9,4 +9,4 @@ unlock.svg by Delapouite under CC BY 3.0 https://game-icons.net/1x1/delapouite/padlock-open.html bubbles.svg by Lorc under CC BY 3.0 -https://game-icons.net/1x1/lorc/bubbles.html \ No newline at end of file +https://game-icons.net/1x1/lorc/bubbles.html diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/grilled-cheese.png b/Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/grilled-cheese.png new file mode 100644 index 00000000000..172c16cd0f3 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/grilled-cheese.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/meta.json index 7afea96765b..f9e3aef18c2 100644 --- a/Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation and modified by Swept at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa. Chevrechaud created by Github user deathride58, croissant taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7ffd61b6fa6a6183daa8900f9a490f46f7a81955. Muffin-chocolate, muffin-banana and muffin-cherry sprites modified from the original muffin sprite by RumiTiger. Chevrechaud-cotton and croissant-cotton created by JuneSzalkowska", + "copyright": "Taken from tgstation and modified by Swept at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa. Chevrechaud created by Github user deathride58, croissant taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7ffd61b6fa6a6183daa8900f9a490f46f7a81955. Muffin-chocolate, muffin-banana and muffin-cherry sprites modified from the original muffin sprite by RumiTiger. Chevrechaud-cotton and croissant-cotton created by JuneSzalkowska. Grilled-cheese created by AdipemDragon, take from tgstation at commit https://github.com/tgstation/tgstation/commit/716c6db05ab9df28fee81ceb7cf2b6c25f21176d.", "size": { "x": 32, "y": 32 @@ -170,10 +170,13 @@ "name": "croissant-cotton" }, { - "name": "muffin-chocolate" + "name": "muffin-chocolate" }, { - "name": "muffin-banana" + "name": "muffin-banana" + }, + { + "name": "grilled-cheese" } ] } diff --git a/Resources/Textures/Objects/Misc/module.rsi/cpu_centcomm.png b/Resources/Textures/Objects/Misc/module.rsi/cpu_centcomm.png new file mode 100644 index 00000000000..f89a8839303 Binary files /dev/null and b/Resources/Textures/Objects/Misc/module.rsi/cpu_centcomm.png differ diff --git a/Resources/Textures/Objects/Misc/module.rsi/meta.json b/Resources/Textures/Objects/Misc/module.rsi/meta.json index b6f6c6d819d..fed9220aae3 100644 --- a/Resources/Textures/Objects/Misc/module.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/module.rsi/meta.json @@ -139,6 +139,9 @@ { "name": "cpu_wizard" }, + { + "name": "cpu_centcomm" + }, { "name": "cpuboard" }, diff --git a/Resources/Textures/Objects/Weapons/Grenades/empgrenade.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/empgrenade.rsi/icon.png index 5f43e51ee06..4251b56a0f0 100644 Binary files a/Resources/Textures/Objects/Weapons/Grenades/empgrenade.rsi/icon.png and b/Resources/Textures/Objects/Weapons/Grenades/empgrenade.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/empgrenade.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/empgrenade.rsi/meta.json index 889ac5cb4c6..b5584b9e38c 100644 --- a/Resources/Textures/Objects/Weapons/Grenades/empgrenade.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Grenades/empgrenade.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e52683d3872347af447bb0ff74c420d4a4e91ea8", + "copyright": "Derived from /tg/station 13 at https://github.com/tgstation/tgstation/blob/8231234a64b80635369e8da43011ad20bde631ce/icons/obj/grenade.dmi, created by K-Dynamic (github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Grenades/empgrenade.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/empgrenade.rsi/primed.png index a11f70171fb..4e964288827 100644 Binary files a/Resources/Textures/Objects/Weapons/Grenades/empgrenade.rsi/primed.png and b/Resources/Textures/Objects/Weapons/Grenades/empgrenade.rsi/primed.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/flashbang.rsi/equipped-BELT.png b/Resources/Textures/Objects/Weapons/Grenades/flashbang.rsi/equipped-BELT.png index 6fc92446678..28006d22b05 100644 Binary files a/Resources/Textures/Objects/Weapons/Grenades/flashbang.rsi/equipped-BELT.png and b/Resources/Textures/Objects/Weapons/Grenades/flashbang.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/supermattergrenade.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/singularitygrenade.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Grenades/supermattergrenade.rsi/icon.png rename to Resources/Textures/Objects/Weapons/Grenades/singularitygrenade.rsi/icon.png diff --git a/Resources/Textures/Objects/Weapons/Grenades/supermattergrenade.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/singularitygrenade.rsi/meta.json similarity index 100% rename from Resources/Textures/Objects/Weapons/Grenades/supermattergrenade.rsi/meta.json rename to Resources/Textures/Objects/Weapons/Grenades/singularitygrenade.rsi/meta.json diff --git a/Resources/Textures/Objects/Weapons/Grenades/supermattergrenade.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/singularitygrenade.rsi/primed.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Grenades/supermattergrenade.rsi/primed.png rename to Resources/Textures/Objects/Weapons/Grenades/singularitygrenade.rsi/primed.png diff --git a/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/equipped-BELT.png b/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/equipped-BELT.png new file mode 100644 index 00000000000..d3eca30e751 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/icon.png index c6365e6404e..54cdd406404 100644 Binary files a/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/icon.png and b/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/meta.json index 525248ce94e..cfe6901719f 100644 --- a/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/524270a5bcc1e0ea844b98c5a204986cec9721ac/icons/obj/weapons/grenade.dmi", + "copyright": "Derived from /tg/station 13 at https://github.com/tgstation/tgstation/blob/83624574e59e68746965ef528604663b16983473/icons/obj/grenade.dmi, created by K-Dynamic (github)", "size": { "x": 32, "y": 32 @@ -12,6 +12,10 @@ }, { "name": "primed" + }, + { + "name": "equipped-BELT", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/primed.png index ef7ca55e19a..25d11b7fda5 100644 Binary files a/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/primed.png and b/Resources/Textures/Objects/Weapons/Grenades/smoke.rsi/primed.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/equipped-BELT.png b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/equipped-BELT.png index 85a06f2d4d8..cfc9b2a94fc 100644 Binary files a/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/equipped-BELT.png and b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/icon.png index 1fae8574536..ca4383378ba 100644 Binary files a/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/icon.png and b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/meta.json index 28d3e6969a9..2f3dee4f0a8 100644 --- a/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/b13d244d761a07e200a9a41730bd446e776020d5", + "copyright": "Derived from Arendian (https://github.com/space-wizards/space-station-14/commit/3e766402b9d6c17f41f9e7e814b70eef83a95568), created by K-Dynamic", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/primed.png index 32d39cb89f6..dd9542f61f6 100644 Binary files a/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/primed.png and b/Resources/Textures/Objects/Weapons/Grenades/stingergrenade.rsi/primed.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/tear_gas.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/tear_gas.rsi/icon.png index e3980eaf108..5faf46b224c 100644 Binary files a/Resources/Textures/Objects/Weapons/Grenades/tear_gas.rsi/icon.png and b/Resources/Textures/Objects/Weapons/Grenades/tear_gas.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Grenades/tear_gas.rsi/meta.json b/Resources/Textures/Objects/Weapons/Grenades/tear_gas.rsi/meta.json index 60b919588c3..69413f3b8c4 100644 --- a/Resources/Textures/Objects/Weapons/Grenades/tear_gas.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Grenades/tear_gas.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/524270a5bcc1e0ea844b98c5a204986cec9721ac/icons/obj/weapons/grenade.dmi and modified by deltanedas (github)", + "copyright": "Derived from deltanedas (https://github.com/space-wizards/space-station-14/commit/7dd472c934e61e4087a3f991ed9b51f0eb99271c), created by K-Dynamic (github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Grenades/tear_gas.rsi/primed.png b/Resources/Textures/Objects/Weapons/Grenades/tear_gas.rsi/primed.png index ca49e02fe31..61d03a6a791 100644 Binary files a/Resources/Textures/Objects/Weapons/Grenades/tear_gas.rsi/primed.png and b/Resources/Textures/Objects/Weapons/Grenades/tear_gas.rsi/primed.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/heavylaser.png b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/heavylaser.png index 4db201c77cb..8d84a0e8286 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/heavylaser.png and b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/heavylaser.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/heavylaser_flash.png b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/heavylaser_flash.png new file mode 100644 index 00000000000..89e765b9e6b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/heavylaser_flash.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/meta.json index 9f54ba02409..24cc4df0e01 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/tgstation/tgstation/tree/88d7dbfc105fbf40284d7b7c4587f8d23c0ac3ac", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/tree/88d7dbfc105fbf40284d7b7c4587f8d23c0ac3ac, modified by chromiumboy.", "size": { "x": 32, "y": 32 @@ -10,6 +10,9 @@ { "name": "omnilaser" }, + { + "name": "omnilaser_flash" + }, { "name": "omnilaser_greyscale" }, @@ -50,6 +53,9 @@ { "name": "heavylaser" }, + { + "name": "heavylaser_flash" + }, { "name": "adtomnilaser" } diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/omnilaser.png b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/omnilaser.png index 34ddcc86ba5..94f0b18ca92 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/omnilaser.png and b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/omnilaser.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/omnilaser_flash.png b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/omnilaser_flash.png new file mode 100644 index 00000000000..4c0020743a0 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi/omnilaser_flash.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/base.png new file mode 100644 index 00000000000..ebe0cac0595 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/base.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/base_shadow.png b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/base_shadow.png new file mode 100644 index 00000000000..1d432ab6d39 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/base_shadow.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_closed.png b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_closed.png new file mode 100644 index 00000000000..e3fa8b0c1d7 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_closed.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_closing.png b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_closing.png new file mode 100644 index 00000000000..60c3ee0ebe5 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_closing.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_light_on.png b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_light_on.png new file mode 100644 index 00000000000..cec748c70ac Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_light_on.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_open.png b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_open.png new file mode 100644 index 00000000000..475d55b555d Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_opening.png b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_opening.png new file mode 100644 index 00000000000..610a99e7d3e Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/cover_opening.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/destroyed.png b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/destroyed.png new file mode 100644 index 00000000000..b08a630e8d9 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/destroyed.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/lethal.png b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/lethal.png new file mode 100644 index 00000000000..3a43309e625 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/lethal.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/meta.json new file mode 100644 index 00000000000..bb15156565a --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/meta.json @@ -0,0 +1,94 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/blob/04b0e91bac8989d27a504124a0f636b41098d016/icons/obj/turrets.dmi. Modified by chromiumboy.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base", + "directions": 8 + }, + { + "name": "base_shadow", + "directions": 8 + }, + { + "name": "stun", + "directions": 8 + }, + { + "name": "lethal", + "directions": 8 + }, + { + "name": "destroyed", + "directions": 8 + }, + { + "name": "support" + }, + { + "name": "cover_closed" + }, + { + "name": "cover_open" + }, + { + "name": "cover_opening", + "delays": [ + [ + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07 + ] + ] + }, + { + "name": "cover_closing", + "delays": [ + [ + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07 + ] + ] + }, + { + "name": "cover_light_on" + }, + { + "name": "panel" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/panel.png b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/panel.png new file mode 100644 index 00000000000..e1b36a235ac Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/panel.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/stun.png b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/stun.png new file mode 100644 index 00000000000..72ebd8d2bd6 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/stun.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/support.png b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/support.png new file mode 100644 index 00000000000..60da7a889ac Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Turrets/sentry_turret.rsi/support.png differ diff --git a/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/base.png b/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/base.png new file mode 100644 index 00000000000..da7b4e49412 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/base.png differ diff --git a/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/lethal.png b/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/lethal.png new file mode 100644 index 00000000000..f204a4d392a Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/lethal.png differ diff --git a/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/meta.json new file mode 100644 index 00000000000..7684d022799 --- /dev/null +++ b/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/meta.json @@ -0,0 +1,44 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/blob/b4363f59f5feacbc48c29aea4eb7794ad358cd92/icons/obj/device.dmi. Modified by chromiumboy.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "safe", + "delays": [ + [ + 0.2, + 2.0 + ] + ] + }, + { + "name": "stun", + "delays": [ + [ + 0.2, + 1.0 + ] + ] + }, + { + "name": "lethal", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "wires" + } + ] +} diff --git a/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/safe.png b/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/safe.png new file mode 100644 index 00000000000..f47615f626b Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/safe.png differ diff --git a/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/stun.png b/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/stun.png new file mode 100644 index 00000000000..1ca04be32f1 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/stun.png differ diff --git a/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/wires.png b/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/wires.png new file mode 100644 index 00000000000..27644f00bdd Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/turret_controls.rsi/wires.png differ diff --git a/Resources/toolshedEngineCommandPerms.yml b/Resources/toolshedEngineCommandPerms.yml index b9911e9468d..ae02339c1a2 100644 --- a/Resources/toolshedEngineCommandPerms.yml +++ b/Resources/toolshedEngineCommandPerms.yml @@ -74,7 +74,7 @@ - '%' - '%/' - '&~' - - '|~' + - bitornot - '^~' - '~' - '<' @@ -88,7 +88,7 @@ - '*/' - '//' - '&' - - '|' + - bitor - '^' - neg - abs diff --git a/RobustToolbox b/RobustToolbox index 1a7e490e4b0..8f75560ec4a 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 1a7e490e4b00200bfa3ebebc6d9b12cb1ec82adf +Subproject commit 8f75560ec4a2173842f132ff43f690a6ff77f1ad